Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 1-by-3.

178 次查看(过去 30 天)
Hi part of mi code is shown below:
for I = 1:10+1
w2(i,1)= w2(i,1)+n.*delta2.*Y1(i)
end
i am getting the error as mentioned in the title, can someone please help me
  4 个评论
Stephen23
Stephen23 2018-10-25
编辑:Stephen23 2018-10-25
It comes down to this:
w2(i,1)+n.*delta2.*Y1(i)
w2(i,1) refers to a sclar, as does Y1(i). So one (or both) of n and delta2 must be non-scalar. Check the sizes of your variables.

请先登录,再进行评论。

回答(1 个)

madhan ravi
madhan ravi 2018-10-25
编辑:madhan ravi 2018-10-25
for i = 1:10+1
w2(i,:)= w2(i,1)+n.*delta2.*Y1(i)
end
  7 个评论
madhan ravi
madhan ravi 2018-10-26
编辑:madhan ravi 2018-10-26
Anytime , make sure to accept the answer if it worked so that other people know the question is solved else let know whats additionally required

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by