用matlab画图,就是不会添加横纵坐标,这咋办,就是想在图上标示出坐标代表啥意思

2024-12-12 13:46:59
推荐回答(3个)
回答1:

可用xlabel和ylabel,例如在X轴标示“t”就用以下命令
xlabel('t')
更多帮助可按以下命令查看
>> help xlabel
XLABEL X-axis label.
XLABEL('text') adds text beside the X-axis on the current axis.

XLABEL('text','Property1',PropertyValue1,'Property2',PropertyValue2,...)
sets the values of the specified properties of the xlabel.

XLABEL(AX,...) adds the xlabel to the specified axes.

H = XLABEL(...) returns the handle to the text object used as the label.

See also ylabel, zlabel, title, text.

Reference page in Help browser
doc xlabel

要加标题就用title命令

回答2:

%这个表达式我没积错的话好象是一个混沌吸因子的
%-- 12-3-31 下午6:41 --%
clear all
clc
x0=21;
y0=21;
z0=21;
x=[];
y=[];
z=[];
for i=0:0.01:0.01
x=[x,-6*x0+6*y0]
y=[y,6*x0-y0-x0*z0]
z=[z,x0*y0-6*z0]
plot3(x,y,z);
hold on
x0=-6*x0+6*y0;
y0=6*x0-y0-x0*z0;
z0=x0*y0-6*z0;
end

回答3:

xlabel('你要表明的文字')