You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* move symbol into type
* change what iteration means for a polynomial
* adjust integrate to return polynomial of same type, even if NaN
* clean up offset vector tests
* drop OffsetArrays dependency; clean up scalar operations for ImmutablePolynomial
* change some errors into ArgumentError
* replace isnothing; standardize check for same variable
* registerN remove, previously deprecated
* update documentation, add example to `extending.md`
* clean up integration, base on `integrate(p)`, not `integrate(p,c)`
* work on promotion for + and * operations; move computations into `common` for different storage types
* laurent polynomial depwarns removed
* fix basis symbol handling
* adjust evaluation so that implemented evalpoly instead of call syntax is expected.
* add example to extending; specialize evalpoly rather than call syntax
* refactor truncate! chop! move computations based on storage type into `common.jl`
* move things into common (zero, one,variable, basis)
* fix LaurentPolynomial evaluation to use faster `evalpoly`
* regularize treatment of indeterminate in zero,one,variable,basis
Copy file name to clipboardexpand all lines: README.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -208,7 +208,9 @@ Polynomial objects also have other methods:
208
208
209
209
*[PolynomialRings](https://github.com/tkluck/PolynomialRings.jl) A library for arithmetic and algebra with multi-variable polynomials.
210
210
211
-
*[AbstractAlgebra.jl](https://github.com/wbhart/AbstractAlgebra.jl) and [Nemo.jl](https://github.com/wbhart/Nemo.jl) for generic polynomial rings, matrix spaces, fraction fields, residue rings, power series
211
+
*[AbstractAlgebra.jl](https://github.com/wbhart/AbstractAlgebra.jl), [Nemo.jl](https://github.com/wbhart/Nemo.jl) for generic polynomial rings, matrix spaces, fraction fields, residue rings, power series, [Hecke.jl](https://github.com/thofma/Hecke.jl) for algebraic number theory.
212
+
213
+
*[CommutativeAlgebra](https://github.com/KlausC/CommutativeRings.jl) the start of a computer algebra system specialized to discrete calculations with support for polynomials.
212
214
213
215
*[PolynomialRoots.jl](https://github.com/giordano/PolynomialRoots.jl) for a fast complex polynomial root finder. For larger degree problems, also [FastPolynomialRoots](https://github.com/andreasnoack/FastPolynomialRoots.jl) and [AMRVW](https://github.com/jverzani/AMRVW.jl).
Copy file name to clipboardexpand all lines: docs/src/extending.md
+119-4
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,129 @@ As always, if the default implementation does not work or there are more efficie
21
21
| Constructor | x ||
22
22
| Type function (`(::P)(x)`) | x ||
23
23
|`convert(::Polynomial, ...)`|| Not required, but the library is built off the [`Polynomial`](@ref) type, so all operations are guaranteed to work with it. Also consider writing the inverse conversion method. |
24
+
|`Polynomials.evalpoly(x, p::P)`| to evaluate the polynomial at `x` (`Base.evalpoly` okay post `v"1.4.0"`) |
24
25
|`domain`| x | Should return an [`AbstractInterval`](https://invenia.github.io/Intervals.jl/stable/#Intervals-1)|
25
26
|`vander`|| Required for [`fit`](@ref)|
26
27
|`companion`|| Required for [`roots`](@ref)|
27
-
|`fromroots`|| By default, will form polynomials using `prod(variable(::P) - r)` for reach root `r`|
28
-
|`+(::P, ::P)`|| Addition of polynomials |
29
-
|`-(::P, ::P)`|| Subtraction of polynomials |
30
28
|`*(::P, ::P)`|| Multiplication of polynomials |
31
29
|`divrem`|| Required for [`gcd`](@ref)|
30
+
|`one`|| Convenience to find constant in new basis |
32
31
|`variable`|| Convenience to find monomial `x` in new basis|
33
32
34
-
Check out both the [`Polynomial`](@ref) and [`ChebyshevT`](@ref) for examples of this interface being extended.
33
+
Check out both the [`Polynomial`](@ref) and [`ChebyshevT`](@ref) for examples of this interface being extended.
34
+
35
+
## Example
36
+
37
+
The following shows a minimal example where the polynomial aliases the vector defining the coefficients.
38
+
The constructor ensures that there are no trailing zeros. The `@register` call ensures a common interface. This example subtypes `StandardBasisPolynomial`, not `AbstractPolynomial`, and consequently inherits the methods above that otherwise would have been required. For other bases, more methods may be necessary to define (again, refer to [`ChebyshevT`](@ref) for an example).
For the `Polynomial` type, the default on operations is to copy the array. For this type, it might seem reasonable -- to avoid allocations -- to update the coefficients in place for scalar addition and scalar multiplication.
79
+
80
+
Scalar addition, `p+c`, defaults to `p + c*one(p)`, or polynomial addition, which is not inplace without addition work. As such, we create a new method and an infix operator
81
+
82
+
```jldoctest AliasPolynomial
83
+
julia> function scalar_add!(p::AliasPolynomial{T}, c::T) where {T}
The viewpoint that a polynomial represents a vector of coefficients leads to an expectation that vector operations should match when possible. Scalar multiplication is a vector operation, so it seems reasonable to override the broadcast machinery to implement an in place operation (e.g. `p .*= 2`). By default, the polynomial types are not broadcastable over their coefficients. We would need to make a change there and modify the `copyto!` function:
The last `chop!` call would ensure that there are no trailing zeros in the coefficient vector after multiplication, as multiplication by `0` is possible.
120
+
121
+
Then we might have:
122
+
123
+
```jldoctest AliasPolynomial
124
+
julia> p
125
+
AliasPolynomial(3 + 2*x + 3*x^2 + 4*x^3)
126
+
127
+
julia> p .*= 2
128
+
AliasPolynomial(6 + 4*x + 6*x^2 + 8*x^3)
129
+
130
+
julia> p
131
+
AliasPolynomial(6 + 4*x + 6*x^2 + 8*x^3)
132
+
133
+
julia> p ./= 2
134
+
AliasPolynomial(3 + 2*x + 3*x^2 + 4*x^3)
135
+
```
136
+
137
+
Trying to divide again would throw an error, as the result would not fit with the integer type of `p`.
138
+
139
+
Now `p` is treated as the vector `p.coeffs`, as regards broadcasting, so some things may be surprising, for example this expression returns a vector, not a polynomial:
If its basis is implicit, then a polynomial may be seen as just a vector of coefficients. Vectors or 1-based, but, for convenience, polynomial types are 0-based, for purposes of indexing (e.g. `getindex`, `setindex!`, `eachindex`). Iteration over a polynomial steps through the basis vectors, e.g. `a_0`, `a_1*x`, ...
216
+
If its basis is implicit, then a polynomial may be seen as just a vector of coefficients. Vectors or 1-based, but, for convenience, polynomial types are 0-based, for purposes of indexing (e.g. `getindex`, `setindex!`, `eachindex`). Iteration over a polynomial steps through the underlying coefficients.
217
217
218
218
```jldoctest
219
219
julia> as = [1,2,3,4,5]; p = Polynomial(as);
220
220
221
221
julia> as[3], p[2], collect(p)[3]
222
-
(3, 3, Polynomial(3*x^2))
222
+
(3, 3, 3)
223
223
```
224
224
225
+
226
+
The `pairs` iterator, iterates over the indices and coefficients, attempting to match how `pairs` applies to the underlying storage model:
*[PolynomialRings](https://github.com/tkluck/PolynomialRings.jl) A library for arithmetic and algebra with multi-variable polynomials.
236
289
237
-
*[AbstractAlgebra.jl](https://github.com/wbhart/AbstractAlgebra.jl) and [Nemo.jl](https://github.com/wbhart/Nemo.jl) for generic polynomial rings, matrix spaces, fraction fields, residue rings, power series
290
+
*[AbstractAlgebra.jl](https://github.com/wbhart/AbstractAlgebra.jl), [Nemo.jl](https://github.com/wbhart/Nemo.jl) for generic polynomial rings, matrix spaces, fraction fields, residue rings, power series, [Hecke.jl](https://github.com/thofma/Hecke.jl) for algebraic number theory.
291
+
292
+
*[CommutativeAlgebra](https://github.com/KlausC/CommutativeRings.jl) the start of a computer algebra system specialized to discrete calculations with support for polynomials.
238
293
239
294
*[PolynomialRoots.jl](https://github.com/giordano/PolynomialRoots.jl) for a fast complex polynomial root finder. For larger degree problems, also [FastPolynomialRoots](https://github.com/andreasnoack/FastPolynomialRoots.jl) and [AMRVW](https://github.com/jverzani/AMRVW.jl).
240
295
241
296
242
297
298
+
243
299
## Contributing
244
300
245
301
If you are interested in this project, feel free to open an issue or pull request! In general, any changes must be thoroughly tested, allow deprecation, and not deviate too far from the common interface. All PR's must have an updated project version, as well, to keep the continuous delivery cycle up-to-date.
0 commit comments