フィルターのクリア

How to generate COMTRADE file from simulink simulations?

24 ビュー (過去 30 日間)
Tejas Rivonkar
Tejas Rivonkar 2020 年 1 月 23 日
コメント済み: Tejas Rivonkar 2020 年 7 月 1 日
% Create the .dat file
clc
format short
NS1 = size(tout); % to find the number of samples
NS2 = NS1(1,1);
FileName = input('Please enter a file name:', 's');
FN_cfg = [FileName,'.cfg'];
FN_dat = [FileName,'.dat'];
Data =[transpose((1:1:NS2)) tout M];
csvwrite(FN_dat,Data)
unique(tout, 'rows', 'stable');
I am using the above code to generate COMTRADE files for different scenarios in the simulink.
but whenever I add a display into the simulation model i get an error saying the following
Caused by:
Dimensions of arrays being concatenated are not consistent.
How to resolve the issue so that i can use the display but at the same time, i want to create the COMTRADE file?
  2 件のコメント
Abdallah
Abdallah 2020 年 6 月 29 日
Hi Tejas,
Did you solve your problem, I am interesting in converting a figure from MATLAB to comtrade file.
Please if you could help with that.
Thanks
Tejas Rivonkar
Tejas Rivonkar 2020 年 7 月 1 日
Yes. The problem was due to the extra values that were being generated.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeProgrammatic Model Editing についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by