Why doesn’t contour plot run when I add ‘ShowText’? Is my data set too big?

6 次查看(过去 30 天)

Hi y’all. I am trying to create an oceanographic t-s contour plot (salinity as x-axis, temperature as y-axis, and contour defined by density). When I run the code without ‘ShowText’, it takes a few seconds, but it runs. But MATLAB can’t produce a plot when I want to add labels on the contour lines. Is it because my data set it too long (6522 rows)? Is the function slowing everything down? My code is shown in comments below.

  2 个评论
Kristine
Kristine 2025-2-24
function [rho] = density(S,T)
RHO0 = R0+T.*(R1+T.*(R2+T.*(R3+T.*(R4+T.*R5))));
A = A0+T.*(A1+T.*(A2+T.*(A3+T.*A4)));
B = B0+T.*(B1+T.*B2);
RHO = RHO0+S.*(A+B.*sqrt(S)+C.*S);
rho = RHO ./ 1000;
end
figure(1)
T = stations.Temperature;
S = stations.Salinity;
[X,Y] = meshgrid(S,T);
Z = density(X,Y);
contour(X, Y, Z, 'color', 'k', 'ShowText','on', "LabelFormat","%0.1f");
Kristine
Kristine 2025-2-24
I actually ended up leaving the code to run and it took maybe a half hour and produced this graph. I'm not sure how to prevent the repetition on the contour text. I'm not sure why it shows so many.

请先登录,再进行评论。

采纳的回答

dpb
dpb 2025-2-24
编辑:dpb 2025-2-24
We don't have the ranges for T,S but they appear to be pretty closely spaced from the plot. Either only plot every Nth point or use the 'LabelSpacing' named parameter to reduce the number of labels shown.
The idea with data reduction---
T = stations.Temperature;
S = stations.Salinity;
nSpacing=10;
[X,Y] = meshgrid(S(1:nSpacing:end),T(1:nSpacing:end));
Z = density(X,Y);
contour(X, Y, Z, 'color', 'k', 'ShowText','on', "LabelFormat","%0.1f");
Or, with all data plotted but reducing the number of labels shown...
T = stations.Temperature;
S = stations.Salinity;
nSpacing=10;
[X,Y] = meshgrid(S,T);
Z = density(X,Y);
contour(X, Y, Z, 'color', 'k', 'ShowText','on', "LabelFormat","%0.1f",'LabelSpacing',144*nSpacing);
The default for 'LabelSpacing' is 144 points, the above sets a multiplier on that value. This is a single vaue for the whole plot, given the appearance that the point density is higher at larger X, you may need to use a variable selection of point spacing instead to get a more uniform spread of written labels.
  5 个评论
dpb
dpb 2025-2-25
编辑:dpb 2025-2-25
Or, alternatively, limit the number of points overall...
NT=50; % cut it down to 2500 points overall, work from there
NS=50;
T=stationALL.PotentialTemperatureITS90DegC; % get the original
S=stationALL.SalinityPracticalPSU;
T1=linspace(min(T),max(T),NT); % vectors within grid ranges
S1=linspace(min(S),max(S),NS);
[X,Y]= meshgrid(S1,T1); % subsequent grid
Z= density(X,Y);
contour(X,Y,Z,'color','k','ShowText','on');

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Contour Plots 的更多信息

产品


版本

R2024b

Community Treasure Hunt

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

Start Hunting!

Translated by