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?

10 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Stephen23
Stephen23 am 20 Jan. 2016
Bearbeitet: Stephen23 am 20 Jan. 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)

Weitere Antworten (0)

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by