Saving a variable from a function with a different name
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How can I save a variable from a function into the workspace? example:
function new_name = A(a,b)
new_name = a+b;
end
I want that in the end, the variable 'new_name' will appear in the workspace.
0 Commenti
Risposta accettata
Stephen23
il 4 Nov 2015
Modificato: Stephen23
il 4 Nov 2015
Simple: call that function with that variable name as its output argument:
var_name = A(X,Y);
will define var_name in the workspace where the function is being called. Passing arguments is the fastest, simplest and neatest way of passing variables between workspaces, and this is what MATLAB themselves recommend (see link below). Whatever you do, do not learn sloppy buggy programing by passing arguments using assignin or globals. Although beginners love using them, actually both of these methods make code slower and buggier.
The entire concept of functions is very similar to encapsulation, which is broken when you start passing variables willy-nilly in and out of their workspaces. It is a bad idea.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Whos in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!