Function uses another function in a script
1 次查看(过去 30 天)
显示 更早的评论
Hi guys,
Could someone highlight me? I am trying to write a script it uses more than one function. The second function uses the first one.
if c=c=dc
statement 1 %%this one I store as a function file in the same directory.
statement 2 %%this statement uses statement 1. Both statements are in for loop. If I use another function file for this, how can I unify them into this script?
if c=k
statement 1
statement 2
The question is how can I call and unify these two functions since the second function uses the first one..
Any help Appreciated
2 个评论
Azzi Abdelmalek
2014-1-15
This is not clear for me: function 2 calls function 1. What is the problem?
采纳的回答
Walter Roberson
2014-1-15
In file function1.m
...
...
whatever has to be done
In file function2.m
...
...
function1 %calls upon function1
...
...
Then just make sure both files are in directories on your MATLAB path.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!