-
Notifications
You must be signed in to change notification settings - Fork 24
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
Support TriangularToeplitz(Float64[],:U)
#22
Comments
I think the main challenge is the dft since we could just condition https://github.com/JuliaMatrices/ToeplitzMatrices.jl/blob/master/src/ToeplitzMatrices.jl#L366-L373 on |
Yes I think that's a good idea. (I forgot about Nullable...) |
For my usage, I think I can work around this by using Nullable{TriangularToeplitz}. |
The following works, so I believe the issue has been solved some time ago. julia> U = TriangularToeplitz(Float64[],:U)
0×0 TriangularToeplitz{Float64}
julia> x = Float64[]
Float64[]
julia> U*x
Float64[] |
TriangularToeplitz(Float64[],:U)
currently gives an unreadable error. I think it should be supported (to represent a 0 x 0 matrix), or otherwise given a better error.Supporting it will take some thought about how to construct
tmp
.The text was updated successfully, but these errors were encountered: