Add percentage symbol (%) on contour lines (2019a)

Help! I want to add the percentage symbol (%) after the elevation label (ex: 1%, 3%, 5%) in a contour plot (photo attached). Is there any way to do this? I have read about clabel, but I am not sure it can do this. Thank you in advance!

 Akzeptierte Antwort

Yazan
Yazan am 4 Jul. 2021

0 Stimmen

Use '%%' to write the '%' symbol:
fprintf('%%\n');

6 Kommentare

Can you specify where I should add this to my program? It looks like this so far:
e=[10 5 3 1,10 5 3 1];
[C,h]=contour(X,Y,E,e,'ShowText','on','LineWidth',2.5);
xlabel('k_2/k_1')
ylabel('m_1/m_2')
grid on
grid minor
Thank you in advance!
Yazan
Yazan am 4 Jul. 2021
Bearbeitet: Yazan am 4 Jul. 2021
Now I understand better what you are after. The following might help you
e=[10 5 3 1,10 5 3 1];
% do not show the text
[C,h] = contour(X,Y,E,e,'LineWidth',2.5);
xlabel('k_2/k_1')
ylabel('m_1/m_2')
grid on
grid minor
Then
ax = gca;
clabel(C);
allTxt = findobj(ax, 'Type', 'Text');
set(allTxt, {'String'}, append(get(allTxt, 'String'), '%'))
This worked! Is it possible to put the label in the lines? Currently, the text is upright. I tried using clabel(C,h,e) where e=[10,5,3,1], but it produced an error. Thank you in advance!
Yazan
Yazan am 5 Jul. 2021
I am not sure how to make the labels follow the curvatures of the lines. I couldn't figure out how to have access to this feature. You still can rotate the labels easily by a given degree.
Thank you anyway!
Yazan
Yazan am 6 Jul. 2021
Overall, I believe the best practice in your case is to just divide the levels by 100, as they are percentages, and keep the default level visualization by Matlab.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Contour Plots finden Sie in Hilfe-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