Subscript indices must either be real positive integers or logicals.

1 回表示 (過去 30 日間)
irfan
irfan 2016 年 7 月 1 日
コメント済み: Walter Roberson 2016 年 7 月 2 日
k_est=k_p(bb,:);
XF_est=xf(bb).XF;
num_2=num_2+1;
kkk2(num_2,:)=k_est;
for iii=1:length(k_est)
X_re(k_est(iii))=XF_est(iii);
end
what is the problem in my four loop

回答 (1 件)

Star Strider
Star Strider 2016 年 7 月 1 日
What is k_est and what is its size (what are its dimensions)?
  2 件のコメント
irfan
irfan 2016 年 7 月 2 日
1*2 complex double and xf_est dimensions is 2*1 complex double
Walter Roberson
Walter Roberson 2016 年 7 月 2 日
If k_est is a complex double, then how can you use it to index X_re in your statement
X_re(k_est(iii))=XF_est(iii);
??
Are you trying to define a "formula", sort of like a definition that for function f,
f(sqrt(2)) = 4.1293;
f(3.5) = 7.893;
?? If you are, then that is not possible in MATLAB, except in the case of a symbolic function being defined.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by