How to read the desired coordinates from this image and find the coordinates with the highest value

2 visualizaciones (últimos 30 días)
I want to know how to read the desired coordinates from this image and find the coordinates with the highest value.
There is an attachment.

Respuesta aceptada

KSSV
KSSV el 20 de Oct. de 2021
You have plotted this image with the coordinates in hand. USe max function to get the maximum value. Read about function max.
% Example
[X,Y,Z] = peaks(100) ;
[val,idx] = max(Z(:)) ;
surf(X,Y,Z);
hold on
plot3(X(idx),Y(idx),Z(idx),'*r')

Más respuestas (0)

Categorías

Más información sobre Visual Exploration en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by