Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

I am new to Matlab. Can anyone explain how I get this simple prog to run on my mac?

1 Ansicht (letzte 30 Tage)
Robert Booth
Robert Booth am 30 Nov. 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
%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

Antworten (2)

Thorsten
Thorsten am 30 Nov. 2015
Bearbeitet: Thorsten am 30 Nov. 2015
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

Robert Booth
Robert Booth am 30 Nov. 2015
Thank you Thorsten. V helpful answer-I learned a lot Robert Booth

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by