Bachelor's degree final project  v1.0
Faculty of Mathematics, University of Barcelona
Functions
src/include/QR_matrix.h File Reference

QR method header file. More...

#include "householder.h"
+ Include dependency graph for QR_matrix.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void * qr (size_t m, size_t n, double **const A, double **const QR)
 Compute the QR factorization of a matrix m-by-n.
void premult_Q_vector (size_t m, size_t n, double **const QR, double *const b)
 Compute $P_1\cdots P_nb$ where $b$ and $P_i$ are respectively m-by-1 and m-by-m matrixs.

Detailed Description

QR method header file.

Author:
Joan Gimeno
Date:
22/11/2013 (start)
Version:
1.0

This file contains the header for ::QR_method