I want to display name of variable in msgbox instead of its value. for example;
Afficher commentaires plus anciens
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 "
Réponses (2)
Stalin Samuel
le 3 Nov 2014
0 votes
msgbox('The minimum value is of d3 ')
Catégories
En savoir plus sur Dates and Time dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!