how to see a variable of a function in the Workspace?
Mostrar comentarios más antiguos
How to see a variable of a function in the Workspace?
4 comentarios
Azzi Abdelmalek
el 14 de Ag. de 2016
What varibles? what functions? post an example
Rightia Rollmann
el 14 de Ag. de 2016
Azzi Abdelmalek
el 14 de Ag. de 2016
function out_1 = test( in_1 )
global internal
out_1 = in_1 + 1;
internal = [ 1 2 ];
Save this function as test.m then in Matlab Windows command type
global internal
in_1=10 % set a value to in_1
out_1 = test( in_1 )
internal
@Rightia Rollmann: rather than learning bad programming practices (using globals), you should simply learn to use the debugging tools, or passing variables properly.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Variables en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!