testmatrix
generate special matrices, such as Hilbert, Franck
Syntax
[y] = testmatrix(name, n)
Arguments
- name
- a character string 
- n
- integers, matrix size 
- y
- nx- nmatrix
Description
Creates some particular matrices.
- testmatrix('magi',n)
- returns a magic square of size - nx- n.
- testmatrix('frk',n)
- returns the Franck matrix. 
- testmatrix('hilb',n)
- is the inverse of the - nx- nHilbert matrix- (Hij= 1/(i+j-1)).
Examples
testmatrix('magi',3) testmatrix('frk',10) testmatrix('hilb',4)
| Report an issue | ||
| << squarewave | Matrix generation | toeplitz >> |