Skip to content

Commit

Permalink
adjust vander for Measurements (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverzani authored May 26, 2023
1 parent fd31502 commit db498d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "Polynomials"
uuid = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
license = "MIT"
author = "JuliaMath"
version = "3.2.12"
version = "3.2.13"

[deps]
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
Expand Down
2 changes: 1 addition & 1 deletion src/polynomials/standard-basis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ end
# skip some degrees
function vander(P::Type{<:StandardBasisPolynomial}, x::AbstractVector{T}, degs) where {T <: Number}
A = Matrix{T}(undef, length(x), length(degs))
Aᵢ = one.(x)
Aᵢ = ones(T, length(x))

i′ = 1
for i 0:maximum(degs)
Expand Down

2 comments on commit db498d9

@jverzani
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/84263

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v3.2.13 -m "<description of version>" db498d9e316abb43f27e63cb61e447847c3abc06
git push origin v3.2.13

Please sign in to comment.