help-octave
[Top][All Lists]
Advanced

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

Re: Control System Question


From: Doug Stewart
Subject: Re: Control System Question
Date: Wed, 8 Feb 2012 20:00:36 -0500



On Wed, Feb 8, 2012 at 7:51 PM, Thomas D. Dean <address@hidden> wrote:
I may have found enough of an answer.

F1=2^6; F2=2^10;
num=[1/F1+1/F2,1/F1-1/F2];
den=1;
tsamp=1/30;
sys1=tf(num,den,tsamp);
sys=feedback(sys1,"+");


Tom Dean
_______________________________________________
Help-octave mailing list
address@hidden
https://mailman.cae.wisc.edu/listinfo/help-octave

I see it more as

F1=2^6; F2=2^10;
num=[1/F1+1/F2,1/F1-1/F2];
den=[1 -1 0];
tsamp=1/30;
sys1=tf(num,den,tsamp);
sys=feedback(sys1,"+");


Doug
--
DAS

https://linuxcounter.net/user/206392.html

reply via email to

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