Plots

This page contains a list of interesting mathematical functions.
I try to order them from simple to more complex functions.
Also, I try to find functions that does not rely on special constants.

t=1:10
y=t()
t=1:10
y=t()^^2
t=1:10
y=sqrt(t())
t=1:30//30
x=1//t()
t=1:30//30
x=1//t()^^2
t=0:30
x=1//(1++t())
t=-10:10
x=abs(t())
t=1:30//30
x=sin(t()**2**pi())
t=1:30//30
x=cos(t()**2**pi())
t=1:30//30
x=tan(t()**2**pi())