Filter löschen
Filter löschen

Using Imagesc() then solving for the locations of the max values

6 Ansichten (letzte 30 Tage)
Articat
Articat am 9 Jan. 2019
Kommentiert: Articat am 9 Jan. 2019
Hi,
So I am trying to go from an imagesc() plot to finding the coordinates of the maximum values of the coordinates in the plot. I attached my code and the imagesc() plot I am trying to find the maximum values from. If this doesn't make sense feel free to ask me questions!
Thanks!
imagesc() plot.jpg
Matlab Code:
x = [1; 2; 3; 4; 5; 6; 7; 8; 9; 10];
y = [1; 2; 3; 4; 5; 6; 7; 8; 9; 10];
z = [40 2 3 4;
40 40 6 8;
3 40 40 12;
4 40 40 16;
5 40 40 20;
6 40 40 24;
7 14 40 28;
8 16 40 40;
9 18 40 40;
10 20 30 40];
N = imagesc(x, y, z);
colormap jet
colorbar
L = max(z,[],2);
[I,J] = find(z==max(z(:)))
  1 Kommentar
Articat
Articat am 9 Jan. 2019
For example, for exery location there is a red box (a maximum of 40), a x and y point would correspond to it.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by