Clear Filters
Clear Filters

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 views (last 30 days)
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

Accepted Answer

Stephen23
Stephen23 on 20 Jan 2016
Edited: Stephen23 on 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)

More Answers (0)

Categories

Find more on File Operations in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!