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