How to do parametric plots using Maple

Опубликовано: 18 Август 2023
на канале: tondekush
424
4

import the plots library.
plot different functions.

Maple code:
plot([sin(t), cos(t), t = 0 .. 2*Pi])
plot([[2*cos(t), sin(t), t = 0 .. 2*Pi], [cos(t), sin(t), t = 0 .. 2*Pi]])
plot([[2*cos(t), 2*sin(t), t = 0 .. 2*Pi], [2*cos(t), sin(t), t = 0 .. 2*Pi], [cos(t), 2*sin(t), t = 0 .. 2*Pi], [cos(t), sin(t), t = 0 .. 2*Pi]])
plot([exp(sin(t)), exp(cos(t)), t = 0 .. 2*Pi])
plot([[exp(sin(t)), exp(cos(t)), t = 0 .. 2*Pi], [2*exp(sin(t)), 2*exp(cos(t)), t = 0 .. 2*Pi]])
plot([[exp(sin(t)), exp(cos(t)), t = 0 .. 2*Pi], [2*exp(sin(t)), 2*exp(cos(t)), t = 0 .. 2*Pi], [3*exp(sin(t)), 3*exp(cos(t)), t = 0 .. 2*Pi]])

#mathematics #maple #maths #plotting