How to call a own function in other mfile?

조회 수: 2 (최근 30일)
Antonio
Antonio 2024년 7월 3일
댓글: Mathieu NOE 2024년 7월 3일
Good morning,
I create my own function
function z = myfunc (x,y)
z = x+y;
end
I have to use it into a mfile how can do it ?
Regards

채택된 답변

Mathieu NOE
Mathieu NOE 2024년 7월 3일
hello
you simply need to have your function(s) located at the end of your script (mfile)
% example code
%% main code
x = 1;
y = 2;
z = myfunc (x,y)
z = 3
%% function(s) below this line %%%%%%%%%
function z = myfunc (x,y)
z = x+y;
end
  댓글 수: 2
Antonio
Antonio 2024년 7월 3일
Thanks
Mathieu NOE
Mathieu NOE 2024년 7월 3일
as always, my pleasure !

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

John D'Errico
John D'Errico 2024년 7월 3일
편집: John D'Errico 2024년 7월 3일
Did you save it on your search path? (Do you know what your search path is?) Spend some time reading the help for tools like addpath, savepath, pathtool, etc.
help pathtool
PATHTOOL Open Set Path dialog box to view and change search path PATHTOOL opens the MATLAB Set Path tool, which allows you to view, manipulate, and save the MATLAB search path. See also PATH, ADDPATH, RMPATH, SAVEPATH. Documentation for pathtool doc pathtool Folders named pathtool matlab/pathtool
Do NOT try to save that file into the directories supplied with MATLAB. DO NOT DO THAT. Use your own directory.
Once that is done, now just call it like you would any other function,
x = 12;
y = 1:3;
z = myfunc(x,y)
And you can use that function in any other function you write now too.
  댓글 수: 1
Antonio
Antonio 2024년 7월 3일
I saved the function in the same path of the mfile.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by