Customizing xticks yields error: " Undefined function 'xticks' for input arguments of type 'double'."

33 次查看(过去 30 天)
I am trying to customize the x- and yticks on my plot axes. But even running the basic example provided by Matlab
x = linspace(-10,10,200);
y = cos(x);
plot(x,y)
xticks([-3*pi -2*pi -pi 0 pi 2*pi 3*pi])
xticklabels({'-3\pi','-2\pi','-\pi','0','\pi','2\pi','3\pi'})
yticks([-1 -0.8 -0.2 0 0.2 0.8 1])
(see link https://de.mathworks.com/help/matlab/creating_plots/change-tick-marks-and-tick-labels-of-graph-1.html) will yield the error message cited in the title. Restart did not help. Running R2014b, 64-bit, on an OS X Yosemite Mac.
What is that error due to and how can I solve it?
Thanks a lot for the help!

采纳的回答

Rik
Rik 2017-12-8
The xticks function was introduced in R2016b. In earlier releases you must use the code below (this code also works on newer releases).
x = linspace(-10,10,200);
y = cos(x);
plot(x,y)
set(gca,'XTick',[-3*pi -2*pi -pi 0 pi 2*pi 3*pi])
set(gca,'xticklabel',({'-3\pi','-2\pi','-\pi','0','\pi','2\pi','3\pi'}))
set(gca,'YTick',[-1 -0.8 -0.2 0 0.2 0.8 1])
  2 个评论
Rik
Rik 2017-12-14
If you found this answer useful, please mark it as accepted answer. It will make it easier for other people with the same question to find an answer, as well as give me reputation points. If this didn't solve your question, please comment with what problems you are still having.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by