I'm working on some MATLAB code but I have encountered a problem that has hindered my progress.
Kindly would you assist me on how I may locate a global maxima value in a case where I have more than one maximas in a 3D plot.
I'm using this
Idx = find((Pmusic(:) == max(max(Pmusic(:)))));
[PmusicmaxRow,PmusicmaxCol] = ind2sub(size(Pmusic), Idx);
but it brings all the maximas but I am only interested with the indices of the global maxima.

 採用された回答

Star Strider
Star Strider 2021 年 1 月 22 日

0 投票

Try this:
[maxval,Idx] = max(Pmusic(:));
[PmusicmaxRow,PmusicmaxCol] = ind2sub(size(Pmusic), Idx);
I obviously cannot test this with your matrix, however it worked correctrly when I tested it with my test matrix.

4 件のコメント

John Paul
John Paul 2021 年 1 月 22 日
Thank you so much sir for your expert advice. I am trying it but unfortunately, some local maximas are still being considered. I am attaching my code for your kind reference, the code is for determining 2 dimensional direction of arrival (DOA) using MUSIC algorithm. Generally, the estimator part is working well. I am supposed to use the estimated values that are the indices of the maximum spectrum value to calculate RMSE. Kindly, if you may spare sometime to advice me on what the problem maybe.
Star Strider
Star Strider 2021 年 1 月 23 日
The max function will only return the first maximum (and the index), in the event that there are more than one. However here, there apopears to be only one maximum.
When I run:
[maxval,Idx] = max(Pmusic(:));
[PmusicmaxRow,PmusicmaxCol] = ind2sub(size(Pmusic), Idx);
maxidxv = find(Pmusic == maxval);
the only maximum value is 18.7194, and the index is 8752. The find call (that I added here temporarily) also only detects the same one maximum, with the same index. The ‘aaa’ and ‘ccc’ vectors are simply repeats of the row and column indices, not new or different indices. So ‘aaa’ is a (1x10) vector of 63, and ‘ccc’ is a (1x10) vector of 48.
There are no local maxima, only one global maximum.
I did not examine all your code, only the part you have questions about, those lines 126 and 127 of the file you attached.
John Paul
John Paul 2021 年 1 月 23 日
Respected Sir, You are absolutely correct. This section of the code is supposed to genereate indices for the global maximas for 10 iterations and that is the reason ‘aaa’ and ‘ccc’ are (1x10) vectors. Thank you so much for your invalauble advice. You have made me move a step further with my work.
Star Strider
Star Strider 2021 年 1 月 23 日
As always, my pleasure!
I am always happy to help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeBeamforming and Direction of Arrival Estimation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by