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.

1 回表示 (過去 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 件のコメント
Areg Arzoomanian
Areg Arzoomanian 2019 年 11 月 25 日
now i get 'Index in position 2 exceeds array bounds (must not exceed 1).'
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 Center および File ExchangeMatrix Indexing についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by