How to show tf function to text box?
Show older comments
num = [str2num(num1) str2num(num2) str2num(num3)];
den = [str2num(den1) str2num(den2) str2num(den3)];
sys = tf(num,den)
set(handles.text1,num2str(sys)
Answers (1)
Walter Roberson
on 18 Sep 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 Comments
Hyun Ho Lee
on 19 Sep 2019
Walter Roberson
on 19 Sep 2019
sys_char = evalc('sys');
Renato Andrango
on 15 Sep 2020
<3 Thx!
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!