답변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);