Saving outputs in workspace

23 visualizaciones (últimos 30 días)
Ana Luisa
Ana Luisa el 21 de Nov. de 2012
When defining a menu, when you want to get outputs out of one case, in order to use them as inputs in another case, how can you save them in the workspace with a specific name?
Thankyou very much
  1 comentario
Jan
Jan el 21 de Nov. de 2012
What do you mean by "menu"? An entry in the menubar of the figure, or a list of buttons, or a menu in the command window, or a context menu? What is "one case" and how can another "case" have inputs? What is a "specific name" here? And do you mean the local workspace of a function, or the base workspace, which is e.g. active in the command line?

Iniciar sesión para comentar.

Respuesta aceptada

Richard
Richard el 21 de Nov. de 2012
  1 comentario
Ana Luisa
Ana Luisa el 21 de Nov. de 2012
Thank you very much for your answer!

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 21 de Nov. de 2012
It's best not to do that. It's best to define a function and then have that function return output arguments which are then accepted and used by your main script or calling function
In function1.m or myscript1.m:
function function1() % Only used if it's a function, not if it's a script.
% Then (regardless if it's a function of a script), call it like this:
[out1 out2] = MyFunction(in1, in2, in3);
Then, in MyFunction, define it like this:
function [out1 out2] = MyFunction(in1, in2, in3)
% Code to create out1 and out2 from in1, in2, and in3
MyFunction can be inside function1.m if you're using a function. If the main routine is a script (no function keyword to start off the m-file), then you can't define MyFunction inside the "myscript.m" script m-file.
I suggest you read the documentation on how to use functions.
  1 comentario
Ana Luisa
Ana Luisa el 21 de Nov. de 2012
Thank you very much for your answer!

Iniciar sesión para comentar.

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by