How can I convert num and den to strings?

1 visualizzazione (ultimi 30 giorni)
How can I convert num and den to strings?
sys=tf([1],[1 1],'InputDelay',2)
sysd=c2d(sys,0.5)
[num,den]=tfdata(sysd)

Risposta accettata

Paulo Silva
Paulo Silva il 9 Giu 2011
nums=num2str(num{:});
dens=num2str(den{:});
  2 Commenti
sadel
sadel il 9 Giu 2011
Why do I receive this error?
??? Undefined function or method 'fix' for input arguments of type
'cell'.
Error in ==> num2str at 68
if ~isempty(x) && isequalwithequalnans(x, fix(x))
Paulo Silva
Paulo Silva il 9 Giu 2011
just a small error on my part, it's fixed now

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by