I have signal name which is stored in one variable and I want to make that signal as simulink object, could you please help me to create the object

2 Ansichten (letzte 30 Tage)
B{1,1} = 'InportSignal' now I want to make the InportSIgnal as mpt.signal.
So I try like B{1,1} = mpt.signal, but it is not assigning this to InportSignal instead of that it is creating obejct to B{1,1}
that means it is replacing InportSignal.
Please help

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 9 Okt. 2019
Bearbeitet: Fangjun Jiang am 9 Okt. 2019
eval([B{1,1},'=mpt.Signal;']);
or
mptsignal=mpt.Signal;
assignin('base',B{1,1},mptsignal)

Weitere Antworten (0)

Kategorien

Mehr zu Physical Units finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by