Assigning values from an earlier function
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
Hi everyone,
Sorry if my title is a bit vague. I have a function which I created, and takes two inputs N & Q. Later on in my project I am working on a different script which implements the said function.
So, in my script I am typing function1(4,5) where N=4 and Q=5. What I would like to do is get Matlab to actually assign N to 4 and Q to so I can use these letters later on in the script.
Any ideas on how to proceed?
Thanks
0 件のコメント
回答 (1 件)
Fangjun Jiang
2011 年 12 月 16 日
Not sure if it is this:
N=4;
Q=5;
function1(N,Q)
1 件のコメント
C Meek
2011 年 12 月 16 日
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!