Calling other function from another m file
古いコメントを表示
Hi
I am trying to call a function from another .m file.
The primary function which is the same name as the file can be called very easily.
But is it possilbe to call one of the sub function from that same .m file?
Or do i need to place it in its seperate file?
Thanks
採用された回答
その他の回答 (1 件)
Steven Lord
2022 年 12 月 27 日
1 投票
Only the main function in a function file is directly callable from outside the file. Local functions can be called indirectly if you have a function handle to the local function. In order to do this the function handle would need to be created inside the main function and returned from it.
2 件のコメント
Dharmesh Joshi
2022 年 12 月 27 日
@Dharmesh Joshi: See the attached m-file for a simple example of this.
f = main_function
f(4)
カテゴリ
ヘルプ センター および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!