0% found this document useful (0 votes)
27 views10 pages

2 Pi..2 Pi, Color (Blue, Red, Green), Scaling Constrained) : Restart: Plot ( (Sin (X), Arcsin (X), X), X - 2 Pi..2 Pi, y

The document contains code to plot various trigonometric, inverse trigonometric, logarithmic and exponential functions over the range -2π to 2π with different colors. Multiple functions are plotted on the same graph for comparison.

Uploaded by

Ing Vargas
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views10 pages

2 Pi..2 Pi, Color (Blue, Red, Green), Scaling Constrained) : Restart: Plot ( (Sin (X), Arcsin (X), X), X - 2 Pi..2 Pi, y

The document contains code to plot various trigonometric, inverse trigonometric, logarithmic and exponential functions over the range -2π to 2π with different colors. Multiple functions are plotted on the same graph for comparison.

Uploaded by

Ing Vargas
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 10

>

restart:
plot([sin(x),arcsin(x),x],x=-2*Pi..2*Pi,y=2*Pi..2*Pi,color=[blue,red,green],scaling=constrained);

>

plot([cos(x),arccos(x),x],x=-2*Pi..2*Pi,y=2*Pi..2*Pi,color=[blue,red,green],scaling=constrained);

>

>

plot([tan(x),arctan(x),x],x=-2*Pi..2*Pi,y=2*Pi..2*Pi,color=[blue,red,green],scaling=constrained);

>

plot([cot(x),arccot(x),x],x=-2*Pi..2*Pi,y=2*Pi..2*Pi,color=[blue,red,green],scaling=constrained);

>

plot([sec(x),arcsec(x),x],x=-2*Pi..2*Pi,y=-2*Pi..2*Pi,color=[blue,red,green]);

>

plot([csc(x),arccsc(x),x],x=-2*Pi..2*Pi,y=2*Pi..2*Pi,color=[blue,red,green],scaling=constrained);

>

>

plot([log(x),10^x,x],x=-10..10,y=10..10,color=[blue,red,green],scaling=constrained);

plot([ln(x),(e)^x,x],x=-10..10,y=10..10,color=[blue,red,green],scaling=constrained);

>

You might also like