필터 지우기
필터 지우기

How can I insert a detail in the peak of the curve ?

조회 수: 10 (최근 30일)
Mallouli Marwa
Mallouli Marwa 2020년 8월 28일
댓글: Star Strider 2020년 8월 30일
Hi
How can I insert a detail in the peak of the curve like the attached curve ?
omega = 125.6:0.1:502.4;
freq = 2*pi*omega;
figure (1)
plot (freq,V_86,'g', freq,V_89,'k', freq,V_91,'m',freq,V_92,'c',freq,V_95,'b','LineWidth',2);
legend('FVF = 0.86','FVF = 0.89','FVF = 0.91','FVF = 0.92','FVF = 0.95');
xlabel ('Frequency [Hz]');
ylabel('|Voltage FRF| [V/g]');

답변 (2개)

Serhii Tetora
Serhii Tetora 2020년 8월 28일
use function axes for zommed peak. you can define those Position and Limits.
and annotation('arrow') for arrow.

Star Strider
Star Strider 2020년 8월 28일
Experiment with this:
f = @(w,c) 1./(w.^2 + 10*w - c+50);
w = linspace(20,80,250);
c = (0.1:0.2:0.9).';
figure
ax1 = axes('Position',[0.2 0.1 0.7 0.8]);
ax2 = axes('Position',[0.25 0.65 0.15 0.2]);
plot(ax1, w, f(w-50,c))
Lv = (w>=43) & (w<=47);
plot(ax2, w(Lv), f(w(Lv)-50,c))
ax2.XTickLabel = [];
ax2.YTickLabel = [];
annotation('arrow',[0.37 0.48], [0.8 0.8])
producing:
This should get you started. You can use this code with your own data and adjust it to present the plot you want. (You will have to experiment with it.)
See the documentation on axes and annotation for details.
  댓글 수: 2
Mallouli Marwa
Mallouli Marwa 2020년 8월 28일
I have obtained this error below.
Please help me.
Error using -
Matrix dimensions must agree.
Error in Plot_detail>@(w,c)1./(w.^2+10*w-c+50)
Error in Plot_detail (line 9)
plot(ax1, w, f(w-50,c))
Star Strider
Star Strider 2020년 8월 28일
My code runs for me without error (in R2020a). I cannot reproduce the error you reported.
You need to adapt my code to your data and curves. I am simply making it easier for you, so all you need to do is to adapt your vectors to use my code.

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

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by