Array indices must be positive integers or logical values

1 回表示 (過去 30 日間)
Andrey Alexandrov
Andrey Alexandrov 2021 年 8 月 30 日
コメント済み: Andrey Alexandrov 2021 年 8 月 30 日
Help me please. An error occurs when starting the program. How do I fix it?

回答 (2 件)

Jan
Jan 2021 年 8 月 30 日
I looks like this is a script. Then is shares the workspace variables with its caller. I guess, that you have created an array called "real" anywhere. Then real(Io) does not call the function real(), but uses the values of Io as indices.
Check this by:
which real
Using function avoids such confusions, because you can check the local code, if a variable with such a name is created.
Avoid using names of builtin functions for variables.
  1 件のコメント
Andrey Alexandrov
Andrey Alexandrov 2021 年 8 月 30 日
Jan, thank you very much for your comment. The program started

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


Wan Ji
Wan Ji 2021 年 8 月 30 日
You can do this by
Iout = double(Io)
  1 件のコメント
Andrey Alexandrov
Andrey Alexandrov 2021 年 8 月 30 日
Wan Ji, thank you so much for your comment

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

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by