Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否比XTick3D 绘图的等效属性?另外,有没有办法确定轴刻度线的数字输出格式?
XTick
XTick是轴的属性,而不是 plot。每当您使用plot3时,您都会在轴上绘制。因此,它是相关的。
plot3
XTick您可以使用 ,而不是使用XTickLabel。它是一个字符串元胞数组,因此您可以使用sprintf.
XTickLabel
sprintf
x = 1:0.1:10; y = x.^2; z = sin(x); figure;plot3(x,y,z); set(gca,'XTickLabel',{'1' sprintf('%2.2f',pi) '3','4','5','John Doe'});