How to find maximum amplitude of a vibration plot?

15 Ansichten (letzte 30 Tage)
Gyandeep Borgohain
Gyandeep Borgohain am 8 Jan. 2022
Bearbeitet: DGM am 8 Jan. 2022
How do i find the maximum amplitude (Y value) and corresponding x-value for such plots?

Akzeptierte Antwort

DGM
DGM am 8 Jan. 2022
Bearbeitet: DGM am 8 Jan. 2022
Something like
% example data
x = linspace(0,2*pi,100);
y = sin(x);
[maxy idx] = max(y); % find maximal y-value
maxx = x(idx); % find corresponding x-value
[maxx maxy] % location of maximal point in the set
ans = 1×2
1.5867 0.9999
plot(x,y); hold on
plot(maxx,maxy,'o')

Weitere Antworten (0)

Kategorien

Mehr zu Acoustics, Noise and Vibration finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by