How do i create a variable as index for vector m for my code below.

조회 수: 5 (최근 30일)
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
Guillaume
Guillaume 2020년 3월 16일
편집: Guillaume 2020년 3월 16일
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.

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

채택된 답변

Jakob B. Nielsen
Jakob B. Nielsen 2020년 3월 16일
Your issue is that if you make a for loop for 0.1 to 1000, and then use that same counter as an index, when you then type M(omega) = G; you try to place into the 0.1'th index of M, the result G. Clearly, this is impossible.
Separate your loop counter from your X, like this. This also means you can make any change you want just to your omega input, and the remainder of the script will still fly.
clear
K = 1;
omega = 0.1:0.1:1000; %omega goes from 0.1, in steps of 0.1, to 1000.
M = zeros(1,size(omega,2)); %adjust your preallocation size to be equal to your omega length
for count= 1:size(omega,2) %and the loop counter as well
s = omega(count)*i; %finally, take the loop counter index of omega
G = K/(s*(s+1.71)*(s+100));
M(count) = G;
end
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
  댓글 수: 1
cyril adesina
cyril adesina 2020년 3월 16일
for i = 0.1:0.1:1000
if phase(i) < 0
phase(i) = phase(i) + 360;
end
end
semilogx(omega,phase)
title('Semilogarithmic Phase Plot for K = 1')
xlabel('Frequency Range (rad/s)')
ylabel('Phase Angle (deg)')
grid on
When i input the i value in relation to the above code in my first question,my code does not work can somebody help please. when i change 'for i = 1:1000, the graph works. i need it for the range 0.1 to 1000.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Time and Frequency Domain Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by