How can I use input values to create an array?
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How would I get the xii input values to form an array called xi in the following code?
for ii = 1:5 xii = input('Enter value or enter 100 to stop: '); if xii == 100 break; end end
xi=[xii];
0 commentaires
Réponses (3)
Ganesh Gaonkar
le 31 Mar 2015
You should be able to use 'input' function as shown here: http://in.mathworks.com/help/matlab/ref/input.html
0 commentaires
Konstantinos Sofos
le 31 Mar 2015
xi = []; % Initialize array/vector
for i=1:5
xii = input('Enter value or enter 100 to stop: ');
if xii==100
break
else
xi(end+1)=xii;
end
end
0 commentaires
Shagun Sharma
le 21 Jan 2020
%For making an array from input values follow the below sequence (customise as per your requirenments):
%Firstly initialize an array
xi = [];
for i=1:5
xii = input('Enter value or enter 100 to stop: ');
if (xii==100)
break;
else
xi(i)=xii;
end
end
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!