Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
testmatrix
generate special matrices, such as Hilbert, Franck
Calling Sequence
[y] = testmatrix(name, n)
Arguments
- name
a character string
- n
integers, matrix size
- y
n
xn
matrix
Description
Creates some particular matrices.
- testmatrix('magi',n)
returns a magic square of size
n
xn
.- testmatrix('frk',n)
returns the Franck matrix.
- testmatrix('hilb',n)
is the inverse of the
n
xn
Hilbert matrix(Hij= 1/(i+j-1))
.
Examples
testmatrix('magi',3) testmatrix('frk',10) testmatrix('hilb',4)
Report an issue | ||
<< sub2ind | Elementary matrices | toeplitz >> |