関数 Simulink.sdi.getRunCount を使用して、シミュレーション データ インスペクターに含まれている実行の数を取得します。この数値を、各実行で動作する for ループのインデックスとして使用できます。
count = Simulink.sdi.getRunCount;
次に、for ループを使用して 0.1 の絶対許容誤差を各実行の最初の信号に割り当てます。
for a = 1:count
runID = Simulink.sdi.getRunIDByIndex(a);
aircraftRun = Simulink.sdi.getRun(runID);
sig = getSignalByIndex(aircraftRun,1);
sig.AbsTol = 0.1;
end
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.