How can I use input values to create an array?

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];

Respuestas (3)

Konstantinos Sofos
Konstantinos Sofos el 31 de Mzo. de 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
Shagun Sharma
Shagun Sharma el 21 de En. de 2020

0 votos

%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

Categorías

Más información sobre Beamforming and Direction of Arrival Estimation en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 31 de Mzo. de 2015

Respondida:

el 21 de En. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by