linking m-files togeher

6 views (last 30 days)
Steven Chong
Steven Chong on 10 Jun 2015
Commented: Walter Roberson on 10 Jun 2015
Is it possible to link 2 seperate m-files where both m-files has their own function with different saved name?
  1 Comment
per isakson
per isakson on 10 Jun 2015
What exactly do you mean by "link 2 seperate m-files" ?

Sign in to comment.

Answers (1)

dpb
dpb on 10 Jun 2015
You don't actually "link" m-files together, you create a script (or another function) that calls the two successively. Or, if they're always used together but it's handy for factorization to have them as two functions, the one which is called by the other can become a subfunction within the same file. In this case that second function is not visible outside the file, however, only accessible to the primary function in the file. This may (or may not) be the behavior desired; all depends on your needs.
  4 Comments
Steven Chong
Steven Chong on 10 Jun 2015
If I conditions were using 1 or 2 should be the same?
Walter Roberson
Walter Roberson on 10 Jun 2015
if value_to_test == 1
name_of_first_file;
else
name_of_second_file;
end

Sign in to comment.

Categories

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

Tags

Community Treasure Hunt

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

Start Hunting!