티스토리 뷰

SMath

Operations with matrices2

skyground21 2023. 4. 24. 16:52

Introduction to the use of SMath Studio
Prepared by Gilberto E. Urroz, May 2010 

p44.

 

Operations with matrices

 
Extracting rows, columns, elements: col, el, row, submatrix, vminor, minor
col("1:matrix", "2:number") - Returns the specified column "2:number" of the matrix/vector "1:matrix".
 
el"1:vector", "2:number") - Returns the specified column "2:number" of the vector "1:vector".
 
row("1:matrix", "2:number") - Returns the specified row "2:number" of the matrix/vector "1:matrix".
 
submatrix("1:matrix", "2:argument", "3:argument", "4:argument", "5:argument") - Returns the submatrix consisting of elements in rows "2:argument" through "3:argument" and columns "4:argument" through  "5:argument"
 
vminor("1:matrix", "2:number", "3:number") - Returns submatrix with the specified row ("2:number") and column ("3:number") removed from the given matrix ("1:matrix").
 
minor("1:matrix", "2:number", "3:number") - Minor of matrix.
 
Characterizing matrices: cols, det, length, max, min, norm1, norme, normi, rank, rows, tr
cols
det
length
max
min
norm1
norme
normi
rank
rows
tr
 

https://youtu.be/aLgViHqGdvQ

 

반응형
LIST

'SMath' 카테고리의 다른 글

for loops and parametric plots  (0) 2023.05.12
Range function  (0) 2023.05.04
Operations with matrices1  (0) 2023.04.24
Matrices  (0) 2023.04.19
Solving single equations with solve  (0) 2023.04.10