How can I find a section of a graph?

1 次查看(过去 30 天)
wobbly
wobbly 2021-9-8
回答: Chunru 2021-9-9
I want to highlight a percentage of the maximum amplitude along the wave. What function will allow me to do this?

回答(1 个)

Chunru
Chunru 2021-9-9
% plot the curve
t = 0:.1:5;
x = cos(2*pi*3*(t-2.5))./(1+(t-2.5).^2*2);
plot(t, x, 'b-');
% peak around 2.4-2.6
idx = find(t>2.4 & t<2.6);
hold on
plot(t(idx), x(idx), 'y-', 'LineWidth', 2)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by