Calling other function from another m file

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

Accepted Answer

the cyclist
the cyclist on 27 Dec 2022
Edited: the cyclist on 27 Dec 2022
External functions are actually known to MATLAB by their filename, so you do need to put it in a separate file.
  3 Comments

Sign in to comment.

More Answers (1)

Steven Lord
Steven Lord on 27 Dec 2022
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 Comments
Voss
Voss on 28 Dec 2022
@Dharmesh Joshi: See the attached m-file for a simple example of this.
f = main_function
f = function_handle with value:
@local_function
f(4)
ans = 4

Sign in to comment.

Categories

Find more on Files and Folders in Help Center and File Exchange

Tags

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by