We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96e1632 commit 7afc9a2Copy full SHA for 7afc9a2
docs/src/index.md
@@ -1,4 +1,13 @@
1
# ClassicalOrthogonalPolynomials.jl
2
+A Julia package for classical orthogonal polynomials and expansions
3
-*Classical orthogonal polynomials in Julia*
4
+## Evaluation
5
6
+The simplest usage of this package is to evaluate classical
7
+orthogonal polynomials:
8
+```jldoctest
9
+julia> using ClassicalOrthogonalPolynomials
10
+
11
+julia> chebyshevt(5, 0.1) # T_5(0.1) == cos(5acos(0.1))
12
+0.48016
13
+```
0 commit comments