adding elements in a loop into an array

9 vues (au cours des 30 derniers jours)
Dan
Dan le 28 Nov 2011
I need to ask the user for the number of windows in a house give the sizes of all the windows. To do this, I am trying to use loops to determine how many times to ask for a window's size and add the size into an array. My problem is that when the code is ran, x = [], and doesn't contain the elements I inputed.
Here's me code:
num_windows = input('How many windows?: ');
x = [];
for k = 1:num_windows
window_size = input('Window size?: ');
x = x + window_size;
end

Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 28 Nov 2011
Use x=[x;window_size];
or a better way,
if num_windwows>0
x=zeros(num_windwows,1);
else
error('Invalid number of windows');
end
Then inside the for-loop
x(k)=window_size;

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by