Formula
Create this kind of graph to plot any explicit function in the form:
Parametric Y( u ) = f2(u, v), X( u ) = f1(u, v).
Polar R( u ) = f2(u, v), fi( u ) = f1(u, v), X=R*cos( fi ), Y=R*sin( fi ).
Cartesian Y( u ) = f2(u, v), X( u ) = u.
Click the button or select menu item <Data><Formula> to create this kind of graphs. This causes the Formula dialog box show, where you can modify properties of graph (formula, range of parameters u and v, color, width and so on). It is possible to draw families of lines with a given step of parameter v.
Notes:
- Only variable u and parameter v are possible in formula expression.
- Default value of parameter v is v=0.
- The set of operations and functions.
- When prompted to enter a formula the set of operations and functions you may use is the following.
Arithmetic operators:
|
+
|
a + b |
|
-
|
a - b |
|
*
|
a * b |
|
/
|
a / b |
|
^
|
a ^ b (a to the power of b) |
Important: In formula expression take a^b result in brackets.
For example, write exp(-((x-c)^2)) instead of exp(-(x-c)^2).
Built-in functions:
|
sin(u)
|
Sine, the angle 'u' must be in units of radians. |
|
sind(u)
|
Sine, the angle 'u' must be in units of degrees. |
|
sinn(u,n)
|
Sine of 2pi*n*u |
|
cos(u)
|
Cosine |
|
cosd(u)
|
Cosine, the angle 'u' must be in units of degrees. |
|
cosn(u,n)
|
Cosine of 2pi*n*u |
|
hav(u)
|
Haversine of u, hav(u) = (1-cos(u))/2 |
|
havd(u)
|
Haversine, the angle 'u' must be in units of degrees. |
|
tan(u)
|
Tangent |
|
tand(u)
|
Tangent, the angle 'u' must be in units of degrees. |
|
sinc(u)
|
Sine(u)/u |
|
asin(u)
|
Inverse sine |
|
acos(u)
|
Inverse cosine |
|
atan(u)
|
Inverse tangent |
|
rad(u)
|
Converts an angle measured in degrees to the equivalent number of radians. |
|
|
|
exp(u)
|
Exponent (i.e e to the power of u) |
|
ln(u)
|
Natural logarithm (base e) |
|
log(u)
|
Logarithm base 10 |
|
pow(u, v)
|
u to the power of v |
|
sqrt(u)
|
Square root |
|
factorial(u)
|
u!, if u value is not an integer, it is truncated. |
|
sinh(u)
|
Hyperbolic sine |
|
cosh(u)
|
Hyperbolic cosine |
|
tanh(u)
|
Hyperbolic tangent |
|
asinh(u)
|
Hyperbolic arc sine |
|
acosh(u)
|
Hyperbolic arc cosine |
|
atanh(u)
|
Hyperbolic arc tangent |
|
besselj0(u)
|
Bessel functions of the first kind: orders 0, 1, and n, respectively |
|
besselj1(u)
|
|
|
besseljn(u, n)
|
|
|
bessely0(u)
|
Bessel functions of the second kind: orders 0, 1, and n, respectively |
|
bessely1(u)
|
|
|
besselyn(u, n)
|
|
|
|
The polynomials: orders 0, 1, and n, respectively |
|
chebyshev(u,n)
|
The Chebyshev polynomials of the first kind: 1, u, 2u^2-1, 4u^3-3u,... |
|
legendre(u,n)
|
The Legendre polynomials: 1, u, (3u^2-1)/2, (5u^3-3u)/2,... |
|
laguerre(u,n)
|
The Laguerre polynomials: 1, 1-u, (4u^2-4u+2)/2, (-u^3+9u^2-18u+6)/6,... |
|
hermite(u,n)
|
The Hermite polynomials: 1, 2u, 4u^2-2, 8u^3-12u,... |
|
neumann(u,n)
|
The Neumann polynomials: 1, 1/u, 1/u^2, (u^2+4)/u^3,... |
|
gamma(u)
|
Integral( x^(u-1)*exp(-x) ), with x limits from 0 to infinite |
|
lngamma(u)
|
The natural logarithm of gamma function |
|
beta(u, v)
|
Integral( x^(u-1)*(1-x)^(v-1) ) with x limits from 0 to 1 |
|