Illegal use of reserved keyword "for". what does it mean?

73 ビュー (過去 30 日間)
Muhammad Ali Haider
Muhammad Ali Haider 2016 年 3 月 29 日
This is part of my code
for i= 1:19
u= 7824*(i-1)+1;
g= u +7823;
for j= 0:26
for k= 96:107
h= 163*j + k;
z= zeros(7824:1);
z(h)= 1;
Result_matrix = mlinverse(:,u:g) * linverse * z;
end
end
end
it shows the error on line with for i=1:19 and quoting the error Illegal use of reserved keyword "for''

採用された回答

Walter Roberson
Walter Roberson 2016 年 3 月 29 日
The error is earlier in your code. You are probably missing a "]" in a previous line.
  1 件のコメント
Muhammad Ali Haider
Muhammad Ali Haider 2016 年 3 月 30 日
Thank you so much Walter. It worked!

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

その他の回答 (0 件)

カテゴリ

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