change the hyphen (-) into minus sign (−, “U+2212”)

172 visualizaciones (últimos 30 días)
SALEH ALHUMAID
SALEH ALHUMAID el 17 de Jun. de 2022
Comentada: Zoltán el 27 de Jun. de 2025
Hi,
How can I change the hyphen (-) into minus sign (−, “U+2212”) in Matlab plot!
the figure above generated from matlab which has the defalt minus sign. how can I change -20 -40 and -60 to −20 −40 and −60
  4 comentarios
Omri Davidson
Omri Davidson el 12 de En. de 2023
You can also write the minus sign by using char(8722) with the regular tex interperter.
Walter Roberson
Walter Roberson el 12 de En. de 2023
True. However, the original poster needs to use Latex, and Latex does not support unicode characters,

Iniciar sesión para comentar.

Respuesta aceptada

Chunru
Chunru el 17 de Jun. de 2022
set(groot,'defaultAxesTickLabelInterpreter','latex');
plot(randi([-60 60], [20, 1]))
xticks(-60:20:60)
yticklabels(strrep(yticklabels,'-','$-$'));
  3 comentarios
Haiyao Yu
Haiyao Yu el 20 de En. de 2023
If you use tex as the format control, you can run the following command alone, note that the first is a hyphen, and the second is a minus sign.
xticklabels(strrep(xticklabels,'-','–'));
yticklabels(strrep(yticklabels,'-','–'));
Chien-Han Su
Chien-Han Su el 8 de Feb. de 2023
Thanks too!

Iniciar sesión para comentar.

Más respuestas (3)

Walter Roberson
Walter Roberson el 17 de Jun. de 2022
Editada: Walter Roberson el 12 de En. de 2023
plot(randi([-60 60], [20, 1]))
xticks(-60:20:60)
set(gca, 'TickLabelInterpreter', 'latex')
ytickformat('$%g$')
  4 comentarios
Walter Roberson
Walter Roberson el 23 de Ag. de 2022
[cmat, h] = contour(....);
clabel(cmat, h);
set(h.TextPrims, 'Interpreter', 'latex');
Have a look at that and see if it does what you need. If not, then it might be necessary to modify the h.TextPrims 'String' properties.
Zoltán
Zoltán el 27 de Jun. de 2025
This answer is better than the accepted one, because manually calling yticklabels() freezes the labels and they won't update when zooming.

Iniciar sesión para comentar.


Changliang Xiong
Changliang Xiong el 23 de Ag. de 2022
I recommend to save the .fig as *.pdf.Then,adobe illustrator could be used to directly modify the sign.

Jan Kelner
Jan Kelner el 30 de En. de 2024
Is it possible to change the 'hyphen' to 'minus' sign in the heatmap values and colorbar scale values?

Categorías

Más información sobre Data Distribution Plots 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