Polynomials.jl icon indicating copy to clipboard operation
Polynomials.jl copied to clipboard

Question: old type `Poly{T}` -- replacement?

Open B-LIE opened this issue 4 months ago • 7 comments

I just dug up some old code from 2020, or so, where I used the Polynomials.jl package.

One of my constructs doesn't work any more,

#
# Routine to find the vector of column degrees
#
function col_deg(M::Matrix{Poly{T}}) where T<:Number
    return maximum(length.(coeffs.(M)),dims=1)[:].-1
end

Seems like Poly{T} doesn't exist any more.

  • Has Poly{T} been replaced by another type?

B-LIE avatar Oct 02 '24 09:10 B-LIE