我不知道爲什麼在這個例子中保持不起作用。堅持不與ezplot3合作
syms t1 t2 t3
line1 = [0,0,0] + t1*[0,0,1];
line2 = [1,0,0] + t2*[0,0,1];
line3 = [0,1,0] + t3*[0,0,1];
hold on
ezplot3(line1(1),line1(2),line1(3))
ezplot3(line2(1),line2(2),line2(3))
ezplot3(line3(1),line3(2),line3(3))
hold off
任何線索?
那奇怪,因爲'ezplot3('罪( (t)','cos(t)','t',[0,6 * pi]),h = ezplot3('cos(t)','sin(t)','t' 0,6 *π); set(h,'Color','r')'運行良好。 –
@Clement J.當上邊界相同時,保持ezplot3的作用,就像在你的例子中一樣。 – Ghaul
@Ghaul:事實並非如此:'syms t; ezplot3(sin(t),cos(t),t,[0,6 * pi])保持不變,h = ezplot3(cos(t),sin(t),t,[0,6 * pi]) ;設置(h,'顏色','r')',看我的答案爲什麼.. – Amro