I want to display name of variable in msgbox instead of its value. for example;
Mostrar comentarios más antiguos
I want to display name of variable in msgbox instead of its value. for example;
d1=3 ; d2=5 ; d3=2 y = [d1 d2 d3]; x=min(y); % 2
% The minimum value coressponds to d3
msgbox('????????')
msgbox should display " The minimum value is of d3 "
Respuestas (2)
Stalin Samuel
el 3 de Nov. de 2014
0 votos
msgbox('The minimum value is of d3 ')
Categorías
Más información sobre Dates and Time en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!