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 2a6d0bf commit 97f292dCopy full SHA for 97f292d
README.md
@@ -18,6 +18,10 @@ julia> using Polynomials
18
19
## Usage
20
21
+#### Available Polynomials
22
+
23
+* `Polynomial` - Standard polynomials
24
+* `ChebyshevT` - Chebyshev polynomials of the first kind
25
26
#### Construction and Evaluation
27
src/common.jl
@@ -281,6 +281,7 @@ Linear Algebra
281
Calculates the p-norm of the polynomial's coefficients
282
"""
283
LinearAlgebra.norm(q::AbstractPolynomial, p::Real = 2) = norm(coeffs(q), p)
284
285
286
conj(::AbstractPolynomial)
287
0 commit comments