You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> P, x =PolynomialRing(QQ, 2)
(Multivariate polynomial ring in2 variables over QQ, QQMPolyRingElem[x1, x2])
julia> F =FractionField(P)
Fraction field
of multivariate polynomial ring in2 variables over QQ
julia> M =MatrixSpace(F, 2, 2)
Matrix space of 2 rows and 2 columns
over fraction field of multivariate polynomial ring
julia> m =M()
[00]
[00]
julia> m[1, 1] = x[1]^2+ x[2]
x1^2+ x2
julia> m
[x1^2+ x2 0]
[ 00]
julia>evaluate(m, [1; 2])
However, no method evaluate exists for this.
The text was updated successfully, but these errors were encountered:
I agree with Tommy - as this is yet another example of induced actions...what about a univariate polynomial ring over your bivariate one: should evaluate then work as well and apply to the coeffs?
I think I should be able to do this:
However, no method
evaluate
exists for this.The text was updated successfully, but these errors were encountered: