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
I am working with vector valued functions, R -> R^n, and would like to use the Evaluation operator.
If we have f = Fun(x -> [1, 2]) we get the following problems:
f = Fun(x -> [1, 2])
Evaluation(0.5)*f
zero(Vector{Float64})
Evaluation(-1)*f
Evaluation(1)*f
rangespace(Evaluation(space(f), 0.)
ConstantSpace(Point(0.))
ArraySpace(ConstantSpace(Point(0.)), 2)
FiniteOperator([1. 2.; 3., 4.]) * Evaluation(space(f), 0.)
The text was updated successfully, but these errors were encountered:
Thanks for the fix, however some things seem to still be broken, see the issue description.
Sorry, something went wrong.
Evaluate
ArraySpace
Successfully merging a pull request may close this issue.
I am working with vector valued functions, R -> R^n, and would like to use the Evaluation operator.
If we have
f = Fun(x -> [1, 2])
we get the following problems:Evaluation(0.5)*f
gives an error as the implementation tries to callzero(Vector{Float64})
, which is undefined;Evaluation in endpoints,Evaluation(-1)*f
andEvaluation(1)*f
still give the same error as before;rangespace(Evaluation(space(f), 0.)
returnsConstantSpace(Point(0.))
instead ofArraySpace(ConstantSpace(Point(0.)), 2)
; andFiniteOperator([1. 2.; 3., 4.]) * Evaluation(space(f), 0.)
errors.The text was updated successfully, but these errors were encountered: