2015年6月13日 星期六

使用MuPAD繪製Trigonometric Function

>> mupad

plot::easy(sin(x), [PI/2,1])

plot(sin(x), [PI/2,1], #x=PI/2, #y=0.5)




f1 := plot::Function2d(sin(x), x = 0..2*PI, Color = RGB::Blue);
f2 := plot::Function2d(cos(x), x = 0..2*PI, Color = RGB::Green)

plot(f1, f2)


f1 := plot::Function2d(tan(x), x = -PI..PI, Color = RGB::Blue);


plot(f1)


f1 := plot::Function2d(cot(x), x = -PI..PI, Color = RGB::Blue);

plot(f1)


f1 := plot::Function2d(sec(x), x = -PI..PI, Color = RGB::Black);

plot(f1)

f1 := plot::Function2d(csc(x), x = -PI..PI, Color = RGB::Yellow);

plot(f1)




沒有留言:

張貼留言