MATLAB: How can i change the axis on a plot to be fix numbers with 3 decimal places? Right now the x axis or y axis are 6.21321e6 but i want it to be fix like 42141321.323

appdesigneraxisdecimalfix numberMATLABplot

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';

Best Answer

app.UIAxes.XAxis.TickLabelFormat = '%.3f';
app.UIAxes.YAxis.TickLabelFormat = '%.3f';