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

3 次查看(过去 30 天)
for i=1:n
for j=1:n
c(i,j)=(Yv(i)./(((Yv(i).^2)-(Yc(j).^2))))*(1/(2*pi))
end
end
for i=1:n
for j=i:n
if i>=j
k(i,j)=1
else i<j
k(i,j)=0
end
end
end
for j=1:n
B(i)=(0.5*0.25*5.7296*0.1222)
end
for i=1:1:n
for j=1:1:n
A(i,j)=(0.5)*(c)*(Cla).*(C(i,j))+k(i,j)
gamma(i)=B(j)./A(i,j)
wj=(C(i,j).*gamma(i))
end
Why is this coming up and how do i fix it, Im not sure where it's going wrong
Screen Shot 2019-11-25 at 12.41.02 PM.png
  1 个评论
the cyclist
the cyclist 2019-11-25
Not related to the error you are getting, but this section
for j=1:n
B(i)=(0.5*0.25*5.7296*0.1222)
end
is strange to me, since it is a loop over j, but you are indexing into B with the variable i.

请先登录,再进行评论。

回答(1 个)

the cyclist
the cyclist 2019-11-25
In the line of code giving the error:
A(i,j)=(0.5)*(c)*(Cla).*(C(i,j))+k(i,j)
you are using the full matrix c. Maybe you wanted c(i,j) there?
You don't show what Cla is, but possibly the same problem there?
  3 个评论
the cyclist
the cyclist 2019-11-25
编辑:the cyclist 2019-11-25
c is not a constant, because of the following code you show:
for i=1:n
for j=1:n
c(i,j)=(Yv(i)./(((Yv(i).^2)-(Yc(j).^2))))*(1/(2*pi))
end
end
It looks like maybe you mixed up some lower- and upper-case variables? MATLAB is case-sensitive.

请先登录,再进行评论。

类别

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

产品


版本

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by