Bachelor's degree final project  v1.0
Faculty of Mathematics, University of Barcelona
src/include/QR_matrix.h
Go to the documentation of this file.
00001 
00012 #ifndef QR_MATRIX_H
00013 #define QR_MATRIX_H
00014 
00015 #include "householder.h"
00016 
00017 /* Function prototypes */
00018 void * qr(size_t m, size_t n, double ** const A, double ** const QR);
00019 void premult_Q_vector(size_t m, size_t n, double ** const QR, double * const b);
00020   
00021 #endif