Comando MatriceRigheRidotte
- MatriceRigheRidotte(Matrice)
-
Restituisce la forma ridotta per righe della matrice.
Esempi:
-
MatriceRigheRidotte({{1, 6, 4}, {2, 8, 9}, {4, 5, 6}})
restituisce la matrice \( \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}\). -
MatriceRigheRidotte({{2, 10, 11, 4}, {2, (-5), (-6), 12}, {2, 5, 3, 2}})
restituisce la matrice \( \begin{pmatrix} 1 & 0 & 0 & 5\\ 0 & 1 & 0 & -2.8\\ 0 & 0 & 1 & 2\end{pmatrix}\).
Sintassi CAS
- MatriceRigheRidotte(Matrice)
-
Restituisce la forma ridotta per righe della matrice.
Esempi:
-
MatriceRigheRidotte({{1, 6, 4},{2, 8, 9},{4, 5, 6}})
restituisce la matrice \( \begin{pmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & 0 & 1 \end{pmatrix}\). -
MatriceRigheRidotte({{2, 10, 11, 4}, {2, (-5), (-6), 12}, {2, 5, 3, 2}})
restituisce la matrice \( \begin{pmatrix} 1 & 0 & 0 & 5\\ 0 & 1 & 0 & \frac{-14}{5} \\ 0 & 0 & 1 & 2\end{pmatrix}\).