-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprop_list.m
60 lines (58 loc) · 1.06 KB
/
prop_list.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
function P = prop_list
%PROP_LIST List of properties recognized by anymatrix.
% PROP_LIST is an n-by-1 cell array with a single supported property on
% each row.
P = {
'banded'
'bidiagonal'
'binary'
'block Toeplitz'
'built-in'
'circulant'
'complex'
'correlation'
'defective'
'diagonally dominant'
'eigenvalues'
'fixed size'
'hankel'
'hermitian'
'hessenberg'
'idempotent'
'indefinite'
'ill conditioned'
'infinitely divisible'
'integer'
'inverse'
'involutory'
'M-matrix'
'nilpotent'
'nonnegative'
'normal'
'orthogonal'
'parameter-dependent'
'permutation'
'positive'
'positive definite'
'pseudo-orthogonal'
'random'
'rank deficient'
'real'
'rectangular'
'scalable'
'singular values'
'skew-hermitian'
'skew-symmetric'
'sparse'
'square'
'stochastic'
'symmetric'
'toeplitz'
'totally nonnegative'
'totally positive'
'triangular'
'tridiagonal'
'unimodular'
'unitary'
};
end