arb/doc/source/fmpcb_mat.rst
Fredrik Johansson 8ff94cff7d improve wording
2013-11-11 19:24:42 +01:00

263 lines
10 KiB
ReStructuredText

.. _fmpcb-mat:
**fmpcb_mat.h** -- matrices over the complex numbers
===============================================================================
An :type:`fmpcb_mat_t` represents a dense matrix over the complex numbers,
implemented as an array of entries of type :type:`fmpcb_struct`.
The dimension (number of rows and columns) of a matrix is fixed at
initialization, and the user must ensure that inputs and outputs to
an operation have compatible dimensions. The number of rows or columns
in a matrix can be zero.
Types, macros and constants
-------------------------------------------------------------------------------
.. type:: fmpcb_mat_struct
.. type:: fmpcb_mat_t
Contains a pointer to a flat array of the entries (entries), an array of
pointers to the start of each row (rows), and the number of rows (r)
and columns (c).
An *fmpcb_mat_t* is defined as an array of length one of type
*fmpcb_mat_struct*, permitting an *fmpcb_mat_t* to
be passed by reference.
.. macro:: fmpcb_mat_entry(mat, i, j)
Macro giving a pointer to the entry at row *i* and column *j*.
.. macro:: fmpcb_mat_nrows(mat)
Returns the number of rows of the matrix.
.. macro:: fmpcb_mat_ncols(mat)
Returns the number of columns of the matrix.
Memory management
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_init(fmpcb_mat_t mat, long r, long c)
Initializes the matrix, setting it to the zero matrix with *r* rows
and *c* columns.
.. function:: void fmpcb_mat_clear(fmpcb_mat_t mat)
Clears the matrix, deallocating all entries.
Conversions
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_set(fmpcb_mat_t dest, const fmpcb_mat_t src)
.. function:: void fmpcb_mat_set_fmpz_mat(fmpcb_mat_t dest, const fmpz_mat_t src)
.. function:: void fmpcb_mat_set_fmpq_mat(fmpcb_mat_t dest, const fmpq_mat_t src, long prec)
Sets *dest* to *src*. The operands must have identical dimensions.
Input and output
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_printd(const fmpcb_mat_t mat, long digits)
Prints each entry in the matrix with the specified number of decimal digits.
Comparisons
-------------------------------------------------------------------------------
.. function:: int fmpcb_mat_equal(const fmpcb_mat_t mat1, const fmpcb_mat_t mat2)
Returns nonzero iff the matrices have the same dimensions
and identical entries.
.. function:: int fmpcb_mat_overlaps(const fmpcb_mat_t mat1, const fmpcb_mat_t mat2)
Returns nonzero iff the matrices have the same dimensions
and each entry in *mat1* overlaps with the corresponding entry in *mat2*.
.. function:: int fmpcb_mat_contains(const fmpcb_mat_t mat1, const fmpcb_mat_t mat2)
.. function:: int fmpcb_mat_contains_fmpz_mat(const fmpcb_mat_t mat1, const fmpz_mat_t mat2)
.. function:: int fmpcb_mat_contains_fmpq_mat(const fmpcb_mat_t mat1, const fmpq_mat_t mat2)
Returns nonzero iff the matrices have the same dimensions and each entry
in *mat2* is contained in the corresponding entry in *mat1*.
Special matrices
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_zero(fmpcb_mat_t mat)
Sets all entries in mat to zero.
.. function:: void fmpcb_mat_one(fmpcb_mat_t mat)
Sets the entries on the main diagonal to ones,
and all other entries to zero.
Norms
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_bound_inf_norm(fmpr_t b, const fmpcb_mat_t A, long prec)
Sets *b* to an upper bound for the infinity norm (i.e. the largest
absolute value row sum) of *A*, computed using floating-point arithmetic
at *prec* bits with all operations rounded up.
Arithmetic
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_neg(fmpcb_mat_t dest, const fmpcb_mat_t src)
Sets *dest* to the exact negation of *src*. The operands must have
the same dimensions.
.. function:: void fmpcb_mat_add(fmpcb_mat_t res, const fmpcb_mat_t mat1, const fmpcb_mat_t mat2, long prec)
Sets res to the sum of *mat1* and *mat2*. The operands must have the same dimensions.
.. function:: void fmpcb_mat_sub(fmpcb_mat_t res, const fmpcb_mat_t mat1, const fmpcb_mat_t mat2, long prec)
Sets *res* to the difference of *mat1* and *mat2*. The operands must have
the same dimensions.
.. function:: void fmpcb_mat_mul(fmpcb_mat_t res, const fmpcb_mat_t mat1, const fmpcb_mat_t mat2, long prec)
Sets *res* to the matrix product of *mat1* and *mat2*. The operands must have
compatible dimensions for matrix multiplication.
.. function:: void fmpcb_mat_pow_ui(fmpcb_mat_t res, const fmpcb_mat_t mat, ulong exp, long prec)
Sets *res* to *mat* raised to the power *exp*. Requires that *mat*
is a square matrix.
Scalar arithmetic
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_scalar_mul_2exp_si(fmpcb_mat_t B, const fmpcb_mat_t A, long c)
Sets *B* to *A* multiplied by `2^c`.
.. function:: void fmpcb_mat_scalar_addmul_si(fmpcb_mat_t B, const fmpcb_mat_t A, long c, long prec)
.. function:: void fmpcb_mat_scalar_addmul_fmpz(fmpcb_mat_t B, const fmpcb_mat_t A, const fmpz_t c, long prec)
.. function:: void fmpcb_mat_scalar_addmul_fmprb(fmpcb_mat_t B, const fmpcb_mat_t A, const fmprb_t c, long prec)
.. function:: void fmpcb_mat_scalar_addmul_fmpcb(fmpcb_mat_t B, const fmpcb_mat_t A, const fmpcb_t c, long prec)
Sets *B* to `B + A \times c`.
.. function:: void fmpcb_mat_scalar_mul_si(fmpcb_mat_t B, const fmpcb_mat_t A, long c, long prec)
.. function:: void fmpcb_mat_scalar_mul_fmpz(fmpcb_mat_t B, const fmpcb_mat_t A, const fmpz_t c, long prec)
.. function:: void fmpcb_mat_scalar_mul_fmprb(fmpcb_mat_t B, const fmpcb_mat_t A, const fmprb_t c, long prec)
.. function:: void fmpcb_mat_scalar_mul_fmpcb(fmpcb_mat_t B, const fmpcb_mat_t A, const fmpcb_t c, long prec)
Sets *B* to `A \times c`.
.. function:: void fmpcb_mat_scalar_div_si(fmpcb_mat_t B, const fmpcb_mat_t A, long c, long prec)
.. function:: void fmpcb_mat_scalar_div_fmpz(fmpcb_mat_t B, const fmpcb_mat_t A, const fmpz_t c, long prec)
.. function:: void fmpcb_mat_scalar_div_fmprb(fmpcb_mat_t B, const fmpcb_mat_t A, const fmprb_t c, long prec)
.. function:: void fmpcb_mat_scalar_div_fmpcb(fmpcb_mat_t B, const fmpcb_mat_t A, const fmpcb_t c, long prec)
Sets *B* to `A / c`.
Gaussian elimination and solving
-------------------------------------------------------------------------------
.. function:: int fmpcb_mat_lu(long * perm, fmpcb_mat_t LU, const fmpcb_mat_t A, long prec)
Given an `n \times n` matrix `A`, computes an LU decomposition `PLU = A`
using Gaussian elimination with partial pivoting.
The input and output matrices can be the same, performing the
decomposition in-place.
Entry `i` in the permutation vector perm is set to the row index in
the input matrix corresponding to row `i` in the output matrix.
The algorithm succeeds and returns nonzero if it can find `n` invertible
(i.e. not containing zero) pivot entries. This guarantees that the matrix
is invertible.
The algorithm fails and returns zero, leaving the entries in `P` and `LU`
undefined, if it cannot find `n` invertible pivot elements.
In this case, either the matrix is singular, the input matrix was
computed to insufficient precision, or the LU decomposition was
attempted at insufficient precision.
.. function:: void fmpcb_mat_solve_lu_precomp(fmpcb_mat_t X, const long * perm, const fmpcb_mat_t LU, const fmpcb_mat_t B, long prec)
Solves `AX = B` given the precomputed nonsingular LU decomposition `A = PLU`.
The matrices `X` and `B` are allowed to be aliased with each other,
but `X` is not allowed to be aliased with `LU`.
.. function:: int fmpcb_mat_solve(fmpcb_mat_t X, const fmpcb_mat_t A, const fmpcb_mat_t B, long prec)
Solves `AX = B` where `A` is a nonsingular `n \times n` matrix
and `X` and `B` are `n \times m` matrices, using LU decomposition.
If `m > 0` and `A` cannot be inverted numerically (indicating either that
`A` is singular or that the precision is insufficient), the values in the
output matrix are left undefined and zero is returned. A nonzero return
value guarantees that `A` is invertible and that the exact solution
matrix is contained in the output.
.. function:: int fmpcb_mat_inv(fmpcb_mat_t X, const fmpcb_mat_t A, long prec)
Sets `X = A^{-1}` where `A` is a square matrix, computed by solving
the system `AX = I`.
If `A` cannot be inverted numerically (indicating either that
`A` is singular or that the precision is insufficient), the values in the
output matrix are left undefined and zero is returned.
A nonzero return value guarantees that the matrix is invertible
and that the exact inverse is contained in the output.
.. function:: void fmpcb_mat_det(fmpcb_t det, const fmpcb_mat_t A, long prec)
Computes the determinant of the matrix, using Gaussian elimination
with partial pivoting. If at some point an invertible pivot element
cannot be found, the elimination is stopped and the magnitude of the
determinant of the remaining submatrix is bounded using
Hadamard's inequality.
Special functions
-------------------------------------------------------------------------------
.. function:: void fmpcb_mat_exp(fmpcb_mat_t B, const fmpcb_mat_t A, long prec)
Sets *B* to the exponential of the matrix *A*, defined by the Taylor series
.. math ::
\exp(A) = \sum_{k=0}^{\infty} \frac{A^k}{k!}.
The function is evaluated as `\exp(A/2^r)^{2^r}`, where `r` is chosen
to give rapid convergence of the Taylor series. The series is
evaluated using rectangular splitting.
If `\|A/2^r\| \le c` and `N \ge 2c`, we bound the entrywise error
when truncating the Taylor series before term `N` by `2 c^N / N!`.