We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
At this moment
julia> S = ApproxFunBase.SubSpace(Fourier(), 1:10); julia> Derivative(S) DerivativeWrapper : Fourier(【0.0,6.283185307179586❫)|1:10 → SinSpace(【0.0,6.283185307179586❫)⊕CosSpace(【0.0,6.283185307179586❫) 0.0 0.0 -1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -2.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -3.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 -4.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0 0.0 0.0
while the first dimension could be finite.
Where would be the best place to interrupt the ApproxFunBase flow to create an Operator that is finite in both dimensions?
ApproxFunBase
Operator
The text was updated successfully, but these errors were encountered:
You would want to override Derivative(::SubSpace). You can infer the finite-ness from the bandwidths of the full operator.
Derivative(::SubSpace)
Sorry, something went wrong.
No branches or pull requests
At this moment
while the first dimension could be finite.
Where would be the best place to interrupt the
ApproxFunBase
flow to create anOperator
that is finite in both dimensions?The text was updated successfully, but these errors were encountered: