Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solve fails for TriangularToeplitz and SymmetricToeplitz #131

Open
jishnub opened this issue Jan 25, 2024 · 1 comment
Open

Solve fails for TriangularToeplitz and SymmetricToeplitz #131

jishnub opened this issue Jan 25, 2024 · 1 comment

Comments

@jishnub
Copy link
Member

jishnub commented Jan 25, 2024

julia> U = UpperTriangularToeplitz(Float64[1,2,3,4])
4×4 UpperTriangularToeplitz{Float64, Vector{Float64}}:
 1.0  2.0  3.0  4.0
     1.0  2.0  3.0
         1.0  2.0
             1.0

julia> U \ Float64[1,2,3,4]
4-element Vector{Float64}:
 NaN
 NaN
 NaN
 NaN

julia> Matrix(U) \ Float64[1,2,3,4]
4-element Vector{Float64}:
  0.0
  0.0
 -5.0
  4.0
@jishnub
Copy link
Member Author

jishnub commented Jan 25, 2024

Similarly,

julia> SymmetricToeplitz(Float64[1,2,3,4]) \ Float64[1,2,3,4]
4-element Vector{Float64}:
 NaN
 NaN
 NaN
 NaN

julia> Matrix(SymmetricToeplitz(Float64[1,2,3,4])) \ Float64[1,2,3,4]
4-element Vector{Float64}:
 1.0
 0.0
 0.0
 0.0

@jishnub jishnub changed the title Solve fails for TriangularToeplitz Solve fails for TriangularToeplitz and SymmetricToeplitz Jan 25, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant