Utils
condest(A, splu_opt={}, onenormest_opt={})
¶
Compute an estimate of the 1-norm condition number of a sparse matrix.
Parameters¶
A : (M, M) sparse matrix
square matrix to be inverted
splu_opt : dict, optional
Additional named arguments to splu.
onenormest_opt : dict, optional
Additional named arguments to onenormest.
Returns¶
c : {float, inf} The condition number of the matrix. May be infinite.
References¶
.. [1] Nicholas J. Higham and Francoise Tisseur (2000), "A Block Algorithm for Matrix 1-Norm Estimation, with an Application to 1-Norm Pseudospectra." SIAM J. Matrix Anal. Appl. Vol. 21, No. 4, pp. 1185-1201.
.. [2] William W. Hager (1984), "Condition Estimates." SIAM J. Sci. Stat. Comput. Vol. 5, No. 2, pp. 311-316.
Examples¶
from numpy.linalg import cond from scipy.sparse import csc_matrix A = csc_matrix([[1., 0., 0.], [5., 8., 2.], [0., -1., 0.]], dtype=float) A.toarray() array([[ 1., 0., 0.], [ 5., 8., 2.], [ 0., -1., 0.]]) condest(A) 45.0 cond(A.toarray(), p=1) 45.0
Source code in qalgo/utils.py
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | |
get_complement(data, data_sz)
¶
Extends the sign of the lower data_sz bits of data.
Source code in qalgo/utils.py
26 27 28 29 30 31 32 | |
is_hermitian(A, **kargs)
¶
Check if matrix A is Hermitian (self-adjoint)
Source code in qalgo/utils.py
6 7 8 | |
make_complement(data, data_sz)
¶
Compute the unsigned complement representation of an integer within a data_sz-bit space.
Source code in qalgo/utils.py
16 17 18 19 20 21 22 23 | |
next_power_of_2(n)
¶
Find the next power of 2 greater than or equal to n
Source code in qalgo/utils.py
11 12 13 | |