f10dac computes a fast random projection of a real matrix using a Discrete Cosine Transform (DCT). The function can be used as a building block in Randomised Numerical Linear Algebra (RNLA) algorithms, such as decompositions, Singular Value Decompositions (SVDs), and (approximate) least squares solvers.
The function may be called by the names: f10dac or nag_rnla_randproj_dct_real.
3Description
A random projection is written as either
or
where is a real matrix, is an matrix in the first case, and a matrix in the second case. These cases are referred to as random projection by post-multiplication and random projection by pre-multiplication, respectively.
When a random projection by post-multiplication uses the DCT, it is written as
where is a diagonal matrix whose values are uniformly distributed on the set , is a DCT, and is a matrix that selects a subset of columns, uniformly at random.
When a random projection by pre-multiplication uses the DCT, it is written as
The operators and are as above and is a matrix that selects a subset of rows, again uniformly at random.
None of these matrix operators require a full matrix-matrix product to be computed. The computational complexity of applying this type of random projection is . More details of the DCT-based random projection can be found in Avron et al. (2010).
The DCT-based random projection is closely related to the Subsampled Random Fourier Transform (SRFT) presented in Section 4.6 of Halko et al. (2011).
4References
Avron H, Maymounkov P and Toledo S (2010) Blendenpik: Supercharging LAPACK's least-squares solver SIAM J. Sci. Comput.32(3) 1217–1236
Halko N (2012) Randomized methods for computing low-rank approximations of matrices PhD thesis
Halko N, Martinsson P G and Tropp J A (2011) Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions SIAM Rev.53(2) 217–288 https://epubs.siam.org/doi/abs/10.1137/090771806
5Arguments
1: – Nag_TransTypeInput
On entry: specifies whether the operation pre-multiplies or post-multiplies .
Random projection is done by post-multiplication, .
Random projection is done by pre-multiplication, .
Constraint:
or .
2: – IntegerInput
On entry: , the number of rows of the matrix .
Constraint:
.
3: – IntegerInput
On entry: , the number of columns of the matrix .
Constraint:
.
4: – doubleInput/Output
Note: the dimension, dim, of the array a
must be at least
.
The th element of the matrix is stored in .
On entry: the matrix .
On exit: if , the first columns of are overwritten with the random projection of .
If , the first rows of are overwritten with the random projection of .
5: – IntegerInput
On entry: the stride separating matrix row elements in the array a.
Constraint:
.
6: – IntegerInput
On entry: , number of columns in the random projection, .
On entry: contains information on the selected base generator and its current state.
On exit: contains updated information on the state of the generator.
8: – NagError *Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).
6Error Indicators and Warnings
NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_BAD_PARAM
On entry, argument had an illegal value.
NE_INT
On entry, and . Constraint: if , , if , .
On entry, . Constraint: .
On entry, . Constraint: .
On entry, . Constraint: .
On entry, state vector has been corrupted or not initialized.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
7Accuracy
The accuracy of algorithms that use f10dac depend on the extent to which the random projection, , captures the range (i.e., column space) of the matrix . More formally, the following probabilistic error bound holds,
with failure probability at most , and where is the th singular value and the norm on the left-hand side of the equation is the spectral norm.
The matrix is sometimes referred to as the orthogonal projector onto the complementary subspace, .
Background information to multithreading can be found in the Multithreading documentation.
f10dac is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this function. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
f10dac uses the same DCT as c06rfc. The time taken by c06rfc is fastest if the only prime factors of the projected dimension are , or . In order to make the performance of f10dac less sensitive to the size of the projected dimension, the input, a, is padded with zeros up to the nearest power of or the nearest , whichever is smaller.
10Example
This example applies a random projection using the DCT to the matrix
It then computes a orthornormal matrix and a probabilistic error bound, that quantifies how well the range of approximates the range of . The matrix is calculated through a factorization of the projection . The error bound is based on the following result from Section 4.3 of Halko et al. (2011). Given a sequence of standard Gaussian vectors, where is some positive integer, then the measure, , of the error in how well the projection captures the range of is given by
where is the spectral norm when applied to a matrix and the Euclidean norm when applied to a vector.
The exact approximation error is also computed for comparison.
This example is constructed so that the true rank of is : the last rows are identical so the matrix only has linearly independent rows. This means that when the accuracy of will be close to machine precision.