How to call functions from another m file
2.753 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sergey Zaitsev
el 9 de Mzo. de 2017
Comentada: Tomas
el 5 de Ag. de 2024
I have two scripts. In first script I have some functions.
script1.m:
function res = func1(a)
res = a * 5;
end
function res = func2(x)
res = x .^ 2;
end
In second script I call these functions. How to include script1.m in second script and call functions from script1.m?
0 comentarios
Respuesta aceptada
Adam
el 9 de Mzo. de 2017
You can't if the functions are defined as local functions in the script1 file.
Just put the functions in their own separate file (of the same name as the function and on your path) if they are being used by both script1 and script2.
6 comentarios
Mathlabuser 29952
el 12 de Jul. de 2024
Thanks! I'll try. The script can be saved as script.m as well and call the numtimes2.m?
DGM
el 12 de Jul. de 2024
Yes. A script can call its own local functions, or it can call a function file like numtimes2().
Más respuestas (1)
Mahmoud Khaled
el 28 de Mzo. de 2018
Editada: Mahmoud Khaled
el 27 de Jul. de 2020
You can add them to a MATLAB class. Then instantiate an object of this class and call any of the functions.
It should be something like this:
In a separate file (ex, functionsContainer.m)
classdef functionsContainer
methods
function res = func1(obj,a)
res = a * 5;
end
function res = func2(obj,x)
res = x .^ 2;
end
end
end
Then, in your script create an object:
myObj = functionsContainer;
Finally, call whatever function you like:
res1 = myObj.func1(a);
res2 = myObj.func2(x);
6 comentarios
Tomas
el 5 de Ag. de 2024
if you define the methods as static, you dont even have to instantiate the class
E.g:
classdef Functions
methods(Static)
function y = func1(x)
% body
end
function y = func2(x)
% body
end
end
end
And then you can run from another script or cmd:
output = Functions.func1(input)
Ver también
Categorías
Más información sobre Functions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!