MatrixPolynomialAlgebra
Degree
compute the degree of a matrix of polynomials.
Ldegree
compute the low degree of a matrix of polynomials.
Calling Sequence
Parameters
Description
Examples
Degree(A, x)
Degree[row](A, x)
Degree[column](A, x)
Ldegree(A, x)
Ldegree[row](A, x)
Ldegree[column](A, x)
A
-
Matrix
x
name; specify the variable in which the entries of A are rational polynomials over Q
The Degree(A,x) and Ldegree(A,x) commands compute the highest degree and the lowest degree of a matrix of polynomials.
The Degree[row](A,x) and Ldegree[row](A,x) commands compute the highest degree and lowest degree of each row of a matrix of polynomials. The row degree is returned as a list of integers.
The Degree[column](A,x) and Ldegree[column](A,x) commands compute the highest degree and lowest degree of each column of a matrix of polynomials. The column degree is returned as a list of integers.
with⁡MatrixPolynomialAlgebra:
A≔3+x,4⁢x2,x2−1|1,x,4|−4⁢x3,2⁢x,−x3
A≔3+x1−4⁢x34⁢x2x2⁢xx2−14−x3
Degree⁡A,x
3
Degreerow⁡A,x
3,2,3
Degreecolumn⁡A,x
2,1,3
Ldegree⁡A,x
0
Ldegreerow⁡A,x
0,1,0
Ldegreecolumn⁡A,x
0,0,1
See Also
indets
Download Help Document