答案1
这是的基本功能plot3
:
t = 0:0.1:100;
s1 = sin(t1);
f1 = ones(1, 1001);
plot3(t1, s1, f1);
hold on % put the same plot on the same figure
s2 = sin(t/2);
f2 = ones(1, 1001)*2;
plot3(t2, s2, f2);
这是的基本功能plot3
:
t = 0:0.1:100;
s1 = sin(t1);
f1 = ones(1, 1001);
plot3(t1, s1, f1);
hold on % put the same plot on the same figure
s2 = sin(t/2);
f2 = ones(1, 1001)*2;
plot3(t2, s2, f2);