用Matlab语言中的plot函数给一个矩阵画图,如何更改横坐标范围

2024-12-12 17:35:52
推荐回答(4个)
回答1:

你的命令plot(u(:,101),画出来的是该矩阵的第101列的12个数的图像,其中横坐标只是这12个数的编号
所以你的命令有问题!

回答2:

这样的格式啊:
如果横轴是t的话
t=0:20/100:20;
这就是表示由0到20,每个小单位就,20/100

回答3:

用axis函数不就行了嘛

回答4:

AXIS Control axis scaling and appearance.
AXIS([XMIN XMAX YMIN YMAX]) sets scaling for the x- and y-axes
on the current plot.
AXIS([XMIN XMAX YMIN YMAX ZMIN ZMAX]) sets the scaling for the
x-, y- and z-axes on the current 3-D plot.
AXIS([XMIN XMAX YMIN YMAX ZMIN ZMAX CMIN CMAX]) sets the
scaling for the x-, y-, z-axes and color scaling limits on
the current axis (see CAXIS).