2015年6月13日 星期六

使用MuPAD繪製Inverse Trigonometric Function


f1 := plot::Function2d(sin(x), x = -PI/2..PI/2, Color = RGB::Blue);
f2 := plot::Function2d(arcsin(x), x = -1..1, Color = RGB::Green)

plot(f1, f2)




f1 := plot::Function2d(cos(x), x = 0..PI, Color = RGB::Blue);
f2 := plot::Function2d(arccos(x), x = -1..1, Color = RGB::Green)

plot(f1, f2)


f1 := plot::Function2d(tan(x), x = -PI/2..PI/2, Color = RGB::Blue);
f2 := plot::Function2d(arctan(x), x = -10..10, Color = RGB::Green)

plot(f1, f2)


f1 := plot::Function2d(cot(x), x = -PI/2..PI/2, Color = RGB::Blue);
f2 := plot::Function2d(arccot(x), x = -5..5, Color = RGB::Green)

plot(f1, f2)


f1 := plot::Function2d(sec(x), x = 0..PI, Color = RGB::Blue);
f2 := plot::Function2d(arcsec(x), x = -5..5, Color = RGB::Green)

plot(f1, f2)


f1 := plot::Function2d(csc(x), x = -PI/2..PI/2, Color = RGB::Blue);
f2 := plot::Function2d(arccsc(x), x = -5..5, Color = RGB::Green)

plot(f1, f2)

沒有留言:

張貼留言