Effacer les filtres
Effacer les filtres

Is it possible to use a comma as decimal seperator in figures?

75 vues (au cours des 30 derniers jours)
Robert Berghaus
Robert Berghaus le 3 Nov 2017
A few years ago it was not possible to change the decimal seperator from dot to comma. Has this changed? I only need the comma in figures (as axis description in plots). Do you have any idea?
  2 commentaires
Rik
Rik le 3 Nov 2017
If you don't need them to be dynamic, you can change the dots to commas with get, strrep and set. Otherwise, this might be possible in HG2 (R2014b and later), but I don't know about it.
(maybe it is even possible to set your string replacer as the ResizeFcn, so it is run every time you resize the figure window.)
Robert Berghaus
Robert Berghaus le 3 Nov 2017
Modifié(e) : Robert Berghaus le 3 Nov 2017
Yes it doesn't need to be dynamic and I have Matlab R2017a. But how can I change the axis with strrep?
x = -1:0.1:1;
y = x.^3;
figure;
plot(x, y);
ylabel('y=x^3');
xlabel('x');
newStr = strrep(gca,'.','.')

Connectez-vous pour commenter.

Réponse acceptée

KL
KL le 3 Nov 2017
Modifié(e) : KL le 3 Nov 2017
try this,
xl = get(gca,'XTickLabel');
new_xl = strrep(xl(:),'.',',');
set(gca,'XTickLabel',new_xl)

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Identification dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by