How to use variable of function in the main program

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.

Answers (1)

dpb
dpb on 2 Aug 2014
Edited: dpb on 2 Aug 2014
... 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 Comments

I added this line in mf func:
printf('Asuitableformatstring',a)
but the problem remains unsolved.
cheers
OK, this made me laugh - it did give me cheers. Not sure if you're making a joke or is you're serious but of course you know, or should know, that you were supposed to replace Asuitableformatstring with %d, %s, or %f depending on if "a" is an integer, a string, or a floating point number (single or double). For example if you return a string, double, and integer you'd do this:
[strV1, dblV2, intV3] = func(data);
printf('%s\n%.8f\n%d\n', strV1, dblV2, intV3);
The \n mean that it puts in a line feed/carriage return so that the next number will be on a new line. Note that the names in the calling routine don't need to match the names you gave them in the function definition, as of course you already know if you've ever done any programming before. If you really didn't yet know any of what I told you, then you need to read this: http://www.mathworks.com/matlabcentral/answers/8026-best-way-s-to-master-matlab
... speaking of which, using sprintf or fprintf might also eliminate some frustration.
good catch...and also a chuckle... :)

Sign in to comment.

Asked:

on 2 Aug 2014

Commented:

dpb
on 2 Aug 2014

Community Treasure Hunt

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

Start Hunting!