mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Release calc version 2.10.2t30
This commit is contained in:
40
help/matfill
Normal file
40
help/matfill
Normal file
@@ -0,0 +1,40 @@
|
||||
NAME
|
||||
matfill - fill a matrix with specified value or values
|
||||
|
||||
SYNOPSIS
|
||||
mat(m, x [, y])
|
||||
|
||||
TYPES
|
||||
m matrix
|
||||
x any
|
||||
y any
|
||||
|
||||
return null
|
||||
|
||||
DESCRIPTION
|
||||
For any matrix m, matfill(m, x) assigns to every element of m the
|
||||
value x. For a square matrix m, matfill(m, x, y) assigns the value
|
||||
x to the off-diagonal elements, y to the diagonal elements.
|
||||
|
||||
EXAMPLE
|
||||
> mat A[3]; matfill(A, 2); print A
|
||||
mat [3] (3 elements, 3 nonzero):
|
||||
[0] = 2
|
||||
[1] = 2
|
||||
[2] = 2
|
||||
|
||||
> mat B[2, 1:2]; matfill(B,3,4); print B
|
||||
mat [2,1:2] (4 elements, 4 nonzero):
|
||||
[0,1] = 4
|
||||
[0,2] = 3
|
||||
[1,1] = 3
|
||||
[1,2] = 4
|
||||
|
||||
LIMITS
|
||||
none
|
||||
|
||||
LIBRARY
|
||||
none
|
||||
|
||||
SEE ALSO
|
||||
XXX - fill in
|
Reference in New Issue
Block a user