Nichols chart plot to gain polt Bode diagram

3 visualizaciones (últimos 30 días)
Shahar ben ezra
Shahar ben ezra el 15 de Oct. de 2020
Respondida: Shahar ben ezra el 15 de Oct. de 2020
Hello everyone
How can I get a BODE graph from a NICHOLS graph
Code:
clc, clear
counter = ([1 1]);
denominator = conv([ 1 4 16],[1 2]);
First_fun =tf(counter,denominator)
bode(First_fun), grid on
counter_new = conv([1 1],[1]);
denominator_new =conv( conv([ 1 4 16],[1 2]),[1 0]);
new_fun =tf(counter_new,denominator_new)
figure(2)
bode(First_fun), grid on
hold on
bode(new_fun), grid on
legend('First_fun.','new_fun')
figure(3)
nichols(new_fun), grid on

Respuestas (1)

Shahar ben ezra
Shahar ben ezra el 15 de Oct. de 2020
like this graph
from:

Categorías

Más información sobre Get Started with Control System Toolbox en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by