tf object manipulation
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Is there a way to print tf object in a gui?
0 Commenti
Risposta accettata
Paulo Silva
il 6 Dic 2011
Small example
syms s
Numerator=[1];
Denominator=[1 0 1];
sys=tf(Numerator,Denominator)
ex=evalc('sys')
[a b] = strread(ex, '%s %s', 'delimiter',char(10));
num=char(a(2));
den=char(a(3));
Now you have the numerator and denominator that can be used in the String of some GUI object like the edit or text
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Dynamic System Models 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!