Azzera filtri
Azzera filtri

I have made different functions as separate .m files and i want to include or call all these functions or .m files in my main .m file please any help?

15 visualizzazioni (ultimi 30 giorni)
I have made different functions as separate .m files and i want to include or call all these functions or .m files in my main .m file please any help? Walter the link you referred contains good code with many functions so how all these functions i include in my code or call in order to use its functtionality

Risposta accettata

Stephen23
Stephen23 il 20 Gen 2016
Modificato: Stephen23 il 20 Gen 2016
Make sure that:
Then you can simply call the function from any script or function, just like you would any other function. It really is that simple.
Here is an example:
function out = myfun(x,y)
out = x^2 - y^3;
end
and I save this using the filename myfun.m, then I can call it like this, from any other function or script:
a = 1;
b = 2;
val = myfun(a,b)

Più risposte (0)

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by