How can I make "eval" work with an if condition?
古いコメントを表示
I have a text file containing initialization data for my simulations and there I have an if condition like this:
if (Data.m > 10 & Data.m < 100)
Data.limits = 2;
else
Data.limits = 1.0;
end
The data of the text file is saved in "temp" and when I execute "eval(temp)" it gives me the error as below.
"Dot indexing is not supported for variables of this type."
There are multiple variables in the text file like "User.a, User.b" or "Force.a. Force.b" and it works fine. Adding an "if condition" in the text file like above throws this error.
4 件のコメント
Walter Roberson
2019 年 9 月 6 日
Why are you using eval() for this instead of run() ?
Usman Ahmad
2019 年 9 月 6 日
編集済み: Usman Ahmad
2019 年 9 月 6 日
Dyuman Joshi
2023 年 9 月 26 日
@Michael Doroginizky, any particular reason why you are suggesting to use eval() when there are better alternatively available (specially the approach given by @Steven Lord in the link you have posted) ?
回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Variables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!