I want to display name of variable in msgbox instead of its value. for example;
이전 댓글 표시
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 "
답변 (2개)
Stalin Samuel
2014년 11월 3일
0 개 추천
msgbox('The minimum value is of d3 ')
카테고리
도움말 센터 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!