I have an analog sys such that I have both the A&D forms (used c2d). Fine. I just wish to add a (manual) discrete variant (I have num,den of transfer function), to compare the (3) Bodes. When I enter the variant, it interprets it as analog, is there a way to tell it is is digital ?
In addition to num
and den
you also have to provide the sampling time to tf ()
, i.e.
tf (num,den,tsam)
1 Like
Thank you !