Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

[SOLVED] Questions about Matlab coding/graph

Status
Not open for further replies.

v1p3r32

Newbie level 6
Joined
Aug 19, 2012
Messages
11
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,348
Hi. I have a question regarding matlab nyquist plot.



the above graph was plot using the following code.

w = {0.01, 1.2}


w =

[0.0100] [1.2000]

>> g = tf([-0.024 -0.22 1],[0.00002 0.00138 0.03529 0.4056 2.04913 4.4275 3.75 1]);
>> nyquist(g,w);
>> hold on;
>> FOPTD=tf([1],[2.52 1],'OutputDelay', 1.64);
>> nyquist(FOPTD,w)
>> title('Two point Method')
>> h = legend('Original','Two point',4);

May I ask how do I get rid of the curve above the real axis?
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top