- 经验
- 30
- 分贝
- 0
- 家园分
- 113
- 在线时间:
- 39 小时
- 最后登录:
- 2020-2-2
- 帖子:
- 27
- 精华:
- 0
- 注册时间:
- 2017-11-25
- UID:
- 1363376
注册:2017-11-25
|
买了一本陈老师@chenaijun的《深入浅出通信原理》书,结合论坛的 原帖看,用Matlab仿陈老师写的程序时,有点小问题
程序
t=0:0.001:10;
x=cos(2*pi*t);
subplot(2,1,1);plot3(x,t,0*t);
set(gca,'YDir','reverse');
grid on;
x=cos(2*pi*t);
y=sin(2*pi*t);
subplot(2,1,2);plot3(x,t,y);
set(gca,'YDir','reverse');
grid on;
图
与
程序
t=0:0.001:10;
x=cos(2*pi*t);
subplot(2,1,1);plot3(x,t,0*t);
set(gca,'YDir','normal');
grid on;
x=cos(2*pi*t);
y=sin(2*pi*t);
subplot(2,1,2);plot3(x,t,y);
set(gca,'YDir','normal');
图
一样啊
set(gca,'YDir','normal'); 和 set(gca,'YDir','reverse');
究竟是什么意思呢
|
-
set(gca,'YDir','normal');
-
set(gca,'YDir','reverse');
|