suivant: Random matrix : ranm
monter: Usual matrix
précédent: Identity matrix : idn
Table des matières
Index
Zero matrix : newMat matrix
newMat(n,p) or matrix(n,p)
takes as argument two integers.
newMat(n,p) returns the zero matrix with n rows and
p columns.
Input :
newMat(4,3)
Output :
[[0,0,0],[0,0,0],[0,0,0],[0,0,0]]
giac documentation written by Renée De Graeve and Bernard Parisse