Model Compilation Through M-Script
5 ビュー (過去 30 日間)
古いコメントを表示
My question is I got 36 models(all in slx format) present in structure array under the field 'name'.My Objective is to compile each model one after another through M-script
The script I written is as below
sort_slx_files = dir('*.slx'); The models are present in the directory
for i = 1:length(sort_slx_files)
load_system(sort_slx_files(i).name)
(sort_slx_files(i).name([],[],[],'compile'));
end
But I get the error 'Index exceeds matrix dimension'
How to resolve this error and get the objective of compiling the models one after another
0 件のコメント
採用された回答
Fangjun Jiang
2019 年 10 月 4 日
編集済み: Fangjun Jiang
2019 年 10 月 4 日
sort_slx_files(i).name is a string, that is the cause of the error.
use eval([sort_slx_files(i).name,'([],[],[],''compile'');']);
3 件のコメント
Fangjun Jiang
2019 年 10 月 4 日
編集済み: Fangjun Jiang
2019 年 10 月 4 日
also, don't forget to run eval([sort_slx_files(i).name,'([],[],[],''term'');']); and close_system().
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Programmatic Model Editing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!