Simulink Matlab Function DAQ Pulse Generation Instance Class

2 ビュー (過去 30 日間)
Laura
Laura 2022 年 10 月 10 日
コメント済み: Laura 2022 年 10 月 11 日
  5 件のコメント
Mario Malic
Mario Malic 2022 年 10 月 11 日
The InitialDelay property does not exist for your output channel ch. Here is a function that can show you what properties are available for your channel in the table.
DisplayProperties(ch);
function objectTable = DisplayProperties(object)
% Get fields, their values and put them in UITable
fields = fieldnames(object);
propVals = cell(length(fields), 1);
for ii = 1:length(fields)
propVals{ii,1} = object.(fields{ii,1});
end
objectTable = table(fields, propVals);
uiFig = uifigure();
uitable(uiFig, "Data", objectTable);
end
Laura
Laura 2022 年 10 月 11 日
Great! Thank you Mario, I was looking for that type of function to check the available properties.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangePeriodic Waveform Generation についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by