How to use variable of function in the main program
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi all,
I have a main program Main.m. In the main I call a function [a,b,c]=func(data), I would like now to use the output a in the Main.m. how can I do it ?
Thanks for the help.
댓글 수: 0
답변 (1개)
dpb
2014년 8월 2일
편집: dpb
2014년 8월 2일
... I call a function [a,b,c]=func(data),...
So, then you have a in the calling workspace (as well as b and c); so you just reference them as any other variable. Presuming, of course, that func doesn't error when called with data.
% script continues from above...
[a,b,c]=func(data);
fprintf('Asuitableformatstring',a) % display the result variable a or any other use
...
댓글 수: 4
Star Strider
2014년 8월 2일
... speaking of which, using sprintf or fprintf might also eliminate some frustration.
참고 항목
카테고리
Help Center 및 File Exchange에서 Whos에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!