In an assignment A(I) = B, the number of elements in B and I must be the same. this is the error i am getting

hi i am trying to assign few values like this "for k=1:1:12 rh(k)=[200 300 400 400 900 1300 1350 1300 1000 700 650 350]; end"
the error i am getting is In an assignment A(I) = B, the number of elements in B and I must be the same. i have to assign rh(1)=200, rh(2)= 300 and so on till rh(12)=350. can anyone please help me?

 Accepted Answer

You don't need a for loop for that
rh=[200 300 400 400 900 1300 1350 1300 1000 700 650 350];

7 Comments

thanks for the answer. but still i have to assign because, rh( required heat) has 12 values one for each month. i have to compare this each rh to another value and have to place an if statement based on the comparison. hope you understood the problem
the values which i have given above are the heat requirement for each month. but the heat generated will be varying. if the heat generated is more it's not a problem but if it is less i have to set up a boiler. what i was thinking was if i assign these values to k(1 to 12) i can write the condition like ' if rh(k)>hg'.
forget what i have told before. can you please tell me how can i code to select maximum value of the matrix rh=[200 300 400 400 900 1300 1350 1300 1000 700 650 350];
thank you for helping and sorry for confusing you

Sign in to comment.

More Answers (1)

Hi Trilochan,
MATLAB is a powerful resource for matrix indexing operations. Rather than loop through and assign each element of the array to each element of variable 'rh' why don't you try the following:
rh(1:12) = [200 300 400 400 900 1300 1350 1300 1000 700 650 350];
or alternatively if variable 'rh' only has 12 elements, you can get rid of the (1:12) indexing and instead simply use:
rh = [200 300 400 400 900 1300 1350 1300 1000 700 650 350];
~Zack

1 Comment

thanks for the answer. but still i have to assign because, rh( required heat) has 12 values one for each month. i have to compare this each rh to another value and have to place an if statement based on the comparison. hope you understood the problem

Sign in to comment.

Products

Tags

Community Treasure Hunt

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

Start Hunting!