Review of Matrix Decomposition Techniques for Signal Processing Applications

Review of Matrix Decomposition Techniques for Signal Processing Applications

Monika Agarwal et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 1( Version 4), January 2014, pp.90-93 RESEARCH ARTICLE OPEN ACCESS Review of Matrix Decomposition Techniques for Signal Processing Applications Monika Agarwal*, Rajesh Mehra** *(Department of Electronics and communication, NITTTR, Chandigarh) ** (Department of Electronics and communication, NITTTR, Chandigarh) ABSTRACT Decomposition of matrix is a vital part of many scientific and engineering applications. It is a technique that breaks down a square numeric matrix into two different square matrices and is a basis for efficiently solving a system of equations, which in turn is the basis for inverting a matrix. An inverting matrix is a part of many important algorithms. Matrix factorizations have wide applications in numerical linear algebra, in solving linear systems, computing inertia, and rank estimation is an important consideration. This paper presents review of all the matrix decomposition techniques used in signal processing applications on the basis of their computational complexity, advantages and disadvantages. Various Decomposition techniques such as LU Decomposition, QR decomposition , Cholesky decomposition are discussed here. Keywords – Cholesky Decomposition, LU decomposition, Matrix factorization, QR decomposition. I. INTRODUCTION characteristics. Since matrix computation algorithms Signal processing is an area of system are expensive computational tasks, hardware engineering, electrical engineering and applied implementation of these algorithms require mathematics that deals with the operations on or substantial time and effort. There is an increasing analysis of analog as well as digitized signal, demand for domain specific tool for matrix representing time varying or spatially physical computation algorithms which provide fast and quantities. There are various mathematical model highly efficient hardware production. In this paper applied in signal processing such as linear time there is review of matrix decomposition techniques invariant system, system identification, optimization, that are used in signal processing. estimation theory, numerical methods [1].In the The paper is organized as follows: Section II computational application matrix decomposition is a discusses the Matrix decomposition Models. Section basic operation. “Matrix decomposition refers to the III concludes the paper transformation of the given matrix into a given canonical form”. Matrix factorization is the process II. MATRIX DECOMPOSITION of producing the decomposition where the given MODELS matrix is transformed to right hand side product of This paper discusses basically four matrix canonical matrices [2]. Matrix decomposition is a decomposition models. fundamental theme in linear algebra and applied QR decomposition statistics which has both scientific and engineering SVD decomposition significance. Computational convenience and LU decomposition analytic simplicity are the two main aspects in the Cholesky Decomposition purpose of matrix decomposition. In the real world it is not feasible for most of the matrix computation to 2.1 QR decomposition be calculated in an optimal explicit way such as A matrix A=QR in linear algebra is a matrix inversion, matrix determinant, solving linear decomposition of a matrix A into an orthogonal and systems and least square fitting , thus to convert a right triangular matrix. The Q-R decompositions are difficult matrix computation problem into several generally used to solve the linear least squares easier task such as solving triangular or diagonal problems. If the matrix A is non-singular then the Q- systems will greatly facilitate the calculations. Data R factorization of A is a unique one if we want that matrices such as proximity matrix or correlation the diagonal elements of R are positive. More matrix represent numerical observations and it is generally we can factor a m x n rectangular matrix often huge and hard to analyze them. Therefore to into an m x m unitary matrix and an m x n upper decompose the data matrices into some lower rank triangular matrix. There are two standard methods to canonical forms will reveal the inherent evaluate Q-R factorization of A such as Graham- www.ijera.com 90 | P a g e Monika Agarwal et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 1( Version 4), January 2014, pp.90-93 Schmidt triangulizations and Householder row and column than in the previous iteration. This triangulizations but Householder triangulizations are algorithms shows the parallelism of each steps while much more efficient than Graham-Schmidt in each iteration, a new sub matrix is constructed and triangulizations because of the following statistics hence efficient use of local storage capacity. It would involved. The number of operations at the kth step be preferable to use an algorithm to load a block of are multiplications=2(n-k+1)2 , additions=(n-k+1)2 + data into local storage performs the computation and (n-k+1) (n-k) + 2 , division=1and square root=1. then transfer new block. The block LU Summing all these operations over (n-1) steps we get decomposition algorithm partitioned the entire matrix the complexity as O (n3) but this involves much less into smaller blocks so that work can be done computation time than the other triangulation concurrently to improve the performance. methods [3]. QR factorization is an important tool for solving linear systems of equations because of good Input:A- n x n matrix with elemnts a i,p error propagation properties and the inevitability of Output: L, U triangular matrices with elements l i p, unitary matrices [4]. The main application of QR u i p decomposition is solving the linear least squares 1: for p=1 : n problem. There exist systems of linear equations that 2. for q=1 to p-1 have no exact solutions. Linear least square is a 3. for i=q+1 to p-1 mathematical optimization technique used to find an 4. A[i,p]=A[i,p]- A[i, q]× A[q,p] approximate solution for these systems. QR 5. for q=1to p-1 decomposition has several advantages that it finds 6. for i=p to n least squares solution as well when no exact solution 7. A(i,p) = A[i,p]- A[i, q]× A[q,p] exists, and if there is exact solution, it finds all. 8. for q= p+1:n 9. A(q,p)=A(q,p)/A(p,p) 2.2 SVD DECOMPOSITION This is also one of the matrix decomposition Algorithm 1.Basic LU decomposition schemes. This is also applicable for complex The algorithm is analyzed as it writes lower rectangular matrices of the dimensions m x n. The and upper triangular matrices onto A matrices then it singular value decomposition block factors the M-by- updates the value of A matrix column by column ((4) N input matrix A such that [4] and (7)). The final values are computed by the A=U×diag(s)× V* (1) division of each column entry by the diagonal entry Where U is an M-by-P matrix, V is an N-by-P of that column. The LU decomposition has various matrix, S is a length-P , vector P is defined as advantages. it is applicable for any matrix. It can be min(M,N) When M = N, U and V are both M-by-M solved by forward substitution as well as backward unitary matrices M > N, V is an N-by-N unitary substitution. The solution of triangular set of equation matrix, and U is an M-by-N matrix whose columns is trivial to solve. it is direct method and finds all are the first N columns of a unitary matrix N > M, U solution. LU decomposition is easy to program. is an M-by-M unitary matrix, and V is an N-by-M There are several drawbacks that it doesn’t find matrix whose columns are the first M columns of a approximate solution (least square). It could easily be unitary matrix In all cases, S is a 1-D vector of unstable. Hence to find the approximate solution positive singular values having length P. Length-N Cholesky decomposition is studied. row inputs are treated as length-N columns. Note that the first (maximum) element of output S is equal to 2.4 CHOLESKY DECOMPOSITION the 2-norm of the matrix A. The output is always The Cholesky decomposition factors a sampling based [4]. positive symmetric matrix to the product of a lower triangular matrix and its transpose, of which two 2.3 LU DECOMPOSITION general ways are given by: LU decomposition is widely used matrix A = UTU (2) factorization algorithm. it transforms square matrix A = LDLT (3) into lower triangular matrix L and upper matrix U Where A is a positive definite symmetric matrix. U is with A=LU. LU decomposition used the Dolittle the upper triangular matrix & UT is Transpose of algorithm for the elimination column by column from upper triangular matrix, L is the unit lower triangular left to right. It results in unit lower triangular matrix matrix & LT is lower triangular matrix and D is the that can use the storage of the original matrix A [5]. diagonal matrix in which all elements are zeros This algorithm requires 2n3/3 floating point except the diagonal elements. Cholesky operations. Algorithm 1 shows the steps followed for decomposition has 1/3N3 FLOPS complexity with LU decomposition of a matrix. In each iteration , the heavy inner data dependency. Introducing a diagonal same steps are applied to a matrix that has one less matrix as shown in Eq. (3) in Cholesky www.ijera.com 91 | P a g e Monika Agarwal et al Int. Journal of Engineering Research and Applications www.ijera.com ISSN : 2248-9622, Vol. 4, Issue 1( Version 4), January 2014, pp.90-93 decomposition has many advantages, such as memory elements.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    4 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us