How can I use input values to create an array?

조회 수: 13 (최근 30일)
Nureen Hoosein
Nureen Hoosein 2015년 3월 31일
답변: Shagun Sharma 2020년 1월 21일
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];

답변 (3개)

Ganesh Gaonkar
Ganesh Gaonkar 2015년 3월 31일
You should be able to use 'input' function as shown here: http://in.mathworks.com/help/matlab/ref/input.html

Konstantinos Sofos
Konstantinos Sofos 2015년 3월 31일
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 2020년 1월 21일
%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

카테고리

Help CenterFile Exchange에서 Desktop에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by