how to find corresponding values
Show older comments
I have values for Fx and T. I have found out the peaks in Fx using 'Findpeaks', stored in [pks_Fx, locs_Fx]. Now I have to find values of T corresponding to pks_Fx. I tried but couldn't succeeds. Pls help.
script is as follow: [pks_Fx, locs_Fx]= findpeaks(Fx,'minpeakheight',350); figure plot(T,Fx,T(locs_Fx),pks_Fx,'rv','MarkerFaceColor','r'); grid on xlabel('T'); ylabel('Fx') title('Find All Peaks'); legend('FX','Peaks')
Accepted Answer
More Answers (1)
Sagar Dhage
on 3 Jul 2014
0 votes
Categories
Find more on Descriptive Statistics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!