How to show tf function to text box?

17 visualizzazioni (ultimi 30 giorni)
Hyun Ho Lee
Hyun Ho Lee il 18 Set 2019
Commentato: Renato Andrango il 15 Set 2020
num = [str2num(num1) str2num(num2) str2num(num3)];
den = [str2num(den1) str2num(den2) str2num(den3)];
sys = tf(num,den)
set(handles.text1,num2str(sys)

Risposte (1)

Walter Roberson
Walter Roberson il 18 Set 2019
sys_char = evalc(sys);
sys_cell = splitlines(sys_char);
sys_cell = sys_cell(2:end-2); %some useless empty lines
set(handles.text1, 'Max', 2, 'FontName', 'mono', 'String', sys_cell);
  3 Commenti
Walter Roberson
Walter Roberson il 19 Set 2019
sys_char = evalc('sys');

Accedi per commentare.

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by