Extracting data from two matrices
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Faisal Memon
le 29 Déc 2014
Commenté : Image Analyst
le 15 Jan 2015
I have two matrices: X is 100 by 1e5, complex double and Y is 1 by 1e5. For each row, X matrix contains either one peak value or two peak values.
Based on the index(indices) of the (these) peak value(s), I have to know the corresponding value of Y matrix. But it is all random i.e. the peak values are different from each other. Also the X matrix contains complex values.
Please help.
Faisal
3 commentaires
Réponse acceptée
Image Analyst
le 29 Déc 2014
if you "need that value of x-axis where the second peak is located." then try this, where you start looking for the max starting from the half way point (just the right half of the signal).
middleElement = floor(length(X)/2);
[maxValue, index] = max(X(middleElement:end));
yIndexOfMax = index + middleElement;
yAtMax = Y(yIndexOfMax);
Note that X is your signal (normally what people call Y), and your Y is what people normally call x - not sure why you did it that way, but I followed your unconvential notation.
You might need to look at the magnitude, real part, or imaginary part of X instead of complex values because the max is not defined for a fully complex number.
9 commentaires
Image Analyst
le 15 Jan 2015
I don't read the email associated with this account. Post a new question and someone will answer.
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!