Name Contour levels outside plot

6 ビュー (過去 30 日間)
Marvin Gerhardt
Marvin Gerhardt 2021 年 11 月 16 日
コメント済み: Star Strider 2021 年 11 月 22 日
Dear Community,
i hope that this is not a duplicate, i did research for some weeks now and havent found a solution:
Is there a way to place the text of a contour line outside on the right y-axis? See Picture below:
Backround is that ive got an efficiency map with speed(x), torque(y) and efficiency(z) and wanted to place power as isolines over the contourf plot and put the values of the isolines outside on the right y-axis.
Thanks a lot in advance,
Marvin
  1 件のコメント
dpb
dpb 2021 年 11 月 16 日
As usually the case, if you would like somebody to try to explore modifications to your plot, attach the data and code to let them generate the starting point...it's unlikely somebody will take the time to try to recreate something from scratch...

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

採用された回答

Star Strider
Star Strider 2021 年 11 月 16 日
It took longer than expected for me to get this to work.
NOTE — It only works for contours that intersect the y-axis on the right. Plotting peaks completely confuses it, so it gives the wrong result, however it does not throw any errors.
x = 0:0.01:1;
y = tanh(x)+0.05;
z = x(:)*y;
figure
[c,h] = contourf(x, y, z, 'ShowText','off');
hold on
Lvls = h.LevelList;
idx = ones(size(Lvls));
xlv = xlim;
for k1 = 1:numel(Lvls)
Lvls(k1);
lc = find( (c(1,:)==Lvls(k1)) & (mod(c(2,:),1)==0) );
seglen = c(2,lc);
seglenix = seglen>1;
if any(seglenix)
for k2 = 1:numel(seglen(seglenix))
lciv = lc(k2)+(1:seglen(k2)); % Level Contour Index Vector
lcvm = [c(1,lciv); c(2,lciv)]; % Level Contour Matrix
% lcvc{k1,k2} = [c(1,lciv); c(2,lciv)]; % Level Contour Cell Array
[maxx,idxx] = max(lcvm(1,:));
% plot(lcvm(1,idxx), lcvm(2,idxx), 'p')
ylbl(:,k1) = [Lvls(k1); lcvm(1,idxx); lcvm(2,idxx)]; % Y-Label Matrix
end
end
% fprintf('\n------------------------------------------------------------\n')
end
% display_ylabel_matrix = ylbl
hold off
text(ones(size(ylbl(1,:)))*max(xlim), ylbl(3,:), compose(' %0.2f',ylbl(3,:)), 'Horiz','left', 'Vert','middle')
I tested it with a number of functions that meet the criteria it requires, and it appears to be reasonably robust.
.
  3 件のコメント
Marvin Gerhardt
Marvin Gerhardt 2021 年 11 月 22 日
Thanks so much, this works perfectly !
Star Strider
Star Strider 2021 年 11 月 22 日
As always, my pleasure!
.

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

その他の回答 (2 件)

Kelly Kearney
Kelly Kearney 2021 年 11 月 16 日
Using builtin contour-related functions... no, not really. Contour labels are one of the least customizable parts of Matlab graphics. In order to do this, I'd recommend manually calculating where each contour is expected to intersect the right side of your plot, and then adding text objects.
  3 件のコメント
Kelly Kearney
Kelly Kearney 2021 年 11 月 17 日
Definitely not trivial. My contourfcmap code does something similar under the hood (in the extend2wall subfunction) because it needs to know where every contour line intersects the axis box in order to redraw new patches... but I use a number of external FEX functions to do the heavy lifting there.
Marvin Gerhardt
Marvin Gerhardt 2021 年 11 月 22 日
Thanks !

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


Adam Danz
Adam Danz 2021 年 11 月 16 日
編集済み: Adam Danz 2021 年 11 月 16 日
The following demo
  1. produces a contourf plot
  2. extracts the coordinates of the contour lines
  3. determines which lines intersect with the right axis edge
  4. plots text labels at the intersections (if any)
Step 2 is achieved by using getContourLineCoordinates from the file exchange.
Note that this works for all contours I tested, even those that do not intersect the right axis (their lables will not be included).
% Plot contourf
x = 0:.1:1;
y = x;
z = x(:).*y(:)';
ax = gca();
cm = contourf(ax, x, y, z);
% Get contour line coordinates
contourTable = getContourLineCoordinates(cm);
% Get index of lines that intersect with the right edge of the axes
% axis(ax, 'tight') % if needed
intersectsWithY = contourTable.X == ax.XLim(2);
% Remove duplicate values
edgeCoordinates = [contourTable.X(intersectsWithY), contourTable.Y(intersectsWithY), contourTable.Level(intersectsWithY)];
edgeCoordUnq = unique(edgeCoordinates,'rows');
% Add text indicating level values on the outside edge of the right axis
hold(ax, 'on')
xlim(ax, xlim(ax))
ylim(ax, ylim(ax))
text(edgeCoordUnq(:,1), edgeCoordUnq(:,2), compose('%.2g', edgeCoordUnq(:,3)), ...
'HorizontalAlignment', 'Left', 'VerticalAlignment','middle', ...
'FontSize', 8)
colorbar(ax)
Compare to a labeled contour version,
  1 件のコメント
Marvin Gerhardt
Marvin Gerhardt 2021 年 11 月 22 日
Thanks Adam !

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

カテゴリ

Help Center および File ExchangeContour Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by