How do i create a variable as index for vector m for my code below.
이전 댓글 표시
clear
K = 1;
M = zeros(1,1000);
for omega = 1:1000
s = omega*i;
G = K/(s*(s+1.71)*(s+100));
M(omega) = G;
end
omega = 1:1000;
phase = rad2deg(angle(M));
dB = 20*log10(abs(M));
semilogx(omega,dB)
title('Semilogarithmic Decibel Plot for K = 1')
xlabel('Frequency Range (rad/s)')
ylabel('Decibels (dB)')
grid on
I am trying to create two plots using loop programming (for…end), one plot is the magnitude
20 log M (this is called decibel dB) for from 0.1 to 1000 , and the other plot is the phase (in degree) for from 0. 1 to 1000.
I have attached the code for 1-1000 but when i chnage the 1 value i get an error saying only integers can be used. Can anyone help me fix to this shows a graph for the boundary 0.1-1000.
댓글 수: 1
In response to the flag "Can I have my question deleted. I do not want my code to be copied":
Sorry, we do not delete questions. According to the Terms of Use, "You agree that all Content that you contribute to the MATLAB Answers portion of MATLAB Central will be licensed under the Creative Commons Attribution Share Alike 3.0 license".
It's completely contrary to the spirit of Answers to get your question deleted once you've received help. We give you help on the understanding that it may benefit more than you. If you want personal support, Answers is not for you.
In any case, the code you've posted is trivial, there's nothing here that could be confidential.
And in case, the OP vandalise the question, this is the original
clear
K = 1;
M = zeros(1,1000);
for omega = 1:1000
s = omega*i;
G = K/(s*(s+1.71)*(s+100));
M(omega) = G;
end
omega = 1:1000;
phase = rad2deg(angle(M));
dB = 20*log10(abs(M));
semilogx(omega,dB)
title('Semilogarithmic Decibel Plot for K = 1')
xlabel('Frequency Range (rad/s)')
ylabel('Decibels (dB)')
grid on
I am trying to create two plots using loop programming (for…end), one plot is the magnitude
20 log M (this is called decibel dB) for from 0.1 to 1000 , and the other plot is the phase (in degree) for from 0. 1 to 1000.
I have attached the code for 1-1000 but when i chnage the 1 value i get an error saying only integers can be used. Can anyone help me fix to this shows a graph for the boundary 0.1-1000.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!