How can i change my axis on a plot to be fix numbers with 3 decimal places? Right now my x axis or y axis are 6.21321e6 but i want it to be fix like 42141321.323
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Kamil Tomiak
il 5 Dic 2017
Commentato: Robert Hamill
il 21 Giu 2019
X = [ XW1, XPKP1, XKKP1, XSLK, XKKP2, XPKP2,XW3];
Y = [YW1,YPKP1, YKKP1, YSLK, YKKP2, YPKP2,YW3];
app.UIAxes.Visible ='on';
plot(app.UIAxes,Y,X,'*-');
app.SzkicButton.Enable= 'off';
0 Commenti
Risposta accettata
Walter Roberson
il 5 Dic 2017
Modificato: Walter Roberson
il 5 Dic 2017
app.UIAxes.XAxis.TickLabelFormat = '%.3f';
app.UIAxes.YAxis.TickLabelFormat = '%.3f';
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Annotations in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!