I am new to Matlab. Can anyone explain how I get this simple prog to run on my mac?
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
%Initialise array
a=[1 -3 2 5];
try
%Try to display an element
index = input('Enter subscript of element to display: ');
disp[('a(int2str.(index))=(num2str.(a(index)')];
catch
%If we get here an error occurred
disp('Illegal subscript:int2str(index)');
end
0 个评论
回答(2 个)
a=[1 -3 2 5];
try %Try to display an element
index = input('Enter subscript of element to display: ');
disp(['a(index)= ' int2str(a(index))]);
catch %If we get here an error occurred
disp(['Illegal subscript: ' int2str(index)]);
end
0 个评论
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!