help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Split a tfdata cell


From: Doug Stewart
Subject: Re: Split a tfdata cell
Date: Thu, 29 Jun 2017 15:13:32 -0400



On Thu, Jun 29, 2017 at 1:48 PM, rwensley <address@hidden> wrote:
Greetings,

tfdata returns the num and den of the sys.

in this case num ={ [1,1] = -0.0036918   0.0173537}

How do I access the individual elements of the cell?
num(1), num{1} return ={ [1,1] = -0.0036918   0.0173537}
num(2) num{2} return and error.

Thank you for the help.

Ron




do you want this?
[n,d]=tfdata(sys,'v')
n =

   1   2

d =

   6   2   7


reply via email to

[Prev in Thread] Current Thread [Next in Thread]