Adding scatter points to a contour plot
30 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I have the following plot code:
% Plot the RMS velocity contour
contourf(X, Y, rms_velocity_U);
colorbar;
xlabel('X');
ylabel('Y');
title(sprintf('RMS Velocity Contour at t=%f', time(i)));
This plot plots the rms velocity values in a plane x,y.
X, Y, and rms_velocity_U are 67*67 matrices.
At each x position, I want to find the highest "rms_velocity_U" value, in total would be 67 values and I want to add them to the plot below as a scatter points.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1283006/image.png)
Any way to calculate the value and position of these point and add them to the plot?
Thanks
0 Kommentare
Antworten (1)
Star Strider
am 3 Feb. 2023
‘Highest’ usually implies one value, not 67, and without your data (the (67x67) matrix) and understanding what the ‘highest 67 values’ means, plotting them is not possible.
That aside, marking the highest 5 values in a contourf plot is straightforward —
[X,Y,Z] = peaks(50);
[Zmax,idx] = maxk(Z(:),5)
figure
contourf(X, Y, Z, 20)
colormap(turbo)
hold on
plot(X(idx), Y(idx), 'pg', 'MarkerSize',10, 'MarkerFaceColor','g')
hold off
xlabel('X')
ylabel('Y')
Use a similar approach with your data.
.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Scatter Plots 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!