Plotting equation for certain values

조회 수: 1 (최근 30일)
Tom Daly
Tom Daly 2019년 10월 24일
편집: Dimitris Kalogiros 2019년 10월 24일
Given the equation -k/(s+a)
For k values (0.1, 1, 10, 100, 1000) Plot impulse and bode responses and pole-zero maps (can be either individual figures or combined figures)
For a values (0.1, 1, 10, 100, 1000) Plot impulse, step and Bode Responses and pole-zero maps (can be either individual figures or combined figures)
  댓글 수: 2
Adam
Adam 2019년 10월 24일
And what is your question? You seem to have just pasted a homework question in verbatim, adding nothing to it at all!
Tom Daly
Tom Daly 2019년 10월 24일
Even where to start would be great, no backgeound or introduction to MATLAB was given and i am struggling to even get started with this.
Thanks

댓글을 달려면 로그인하십시오.

답변 (1개)

Dimitris Kalogiros
Dimitris Kalogiros 2019년 10월 24일
편집: Dimitris Kalogiros 2019년 10월 24일
Have a look on matlab help files about the following functions:
For example, you maybe have to write some code like this:
clear all; close all; clc;
k=1;
a=5;
Hs=tf( k,[1 a])
figure;
bode(Hs);
grid on;

카테고리

Help CenterFile Exchange에서 Get Started with Control System Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by