Why do I get the error «unrecognized function or variable»
17 ビュー (過去 30 日間)
古いコメントを表示
Simulink: ramp->trs fnc->scope. Scope: Data history -> ✅Save data to workspace -> Variable name: phi -> Format: Array. Command window: figure(1); subplot(2, 1, 1); plot(phi(:,1),phi(:,2)); unrecognized function or variable 'phi'
0 件のコメント
回答 (1 件)
madhan ravi
2023 年 12 月 17 日
編集済み: madhan ravi
2023 年 12 月 17 日
Usually you need to use dot indexing to get the variable data.
plot(out.phi(:, 1), out.phi(:, 2))
Use To Workspace block Save format to Array
3 件のコメント
madhan ravi
2023 年 12 月 17 日
See my answer and use To Workspace block https://in.mathworks.com/matlabcentral/answers/2061362-why-do-i-get-the-error-unrecognized-function-or-variable#answer_1372892
参考
カテゴリ
Help Center および File Exchange で Simulink Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!