Lines Matching defs:N
48 static void free_matrix(gene_matrix & A, int N) {} in free_matrix()
77 int N=A_stl.size(); in matrix_to_stl() local
87 …e void matrix_matrix_product(const gene_matrix & A, const gene_matrix & B, gene_matrix & X, int N){ in matrix_matrix_product()
91 …sposed_matrix_matrix_product(const gene_matrix & A, const gene_matrix & B, gene_matrix & X, int N){ in transposed_matrix_matrix_product()
99 static inline void aat_product(const gene_matrix & A, gene_matrix & X, int N){ in aat_product()
104 …e void matrix_vector_product(const gene_matrix & A, const gene_vector & B, gene_vector & X, int N){ in matrix_vector_product()
108 static inline void symv(const gene_matrix & A, const gene_vector & B, gene_vector & X, int N){ in symv()
158 static EIGEN_DONT_INLINE void syr2(gene_matrix & A, gene_vector & X, gene_vector & Y, int N){ in syr2()
164 static EIGEN_DONT_INLINE void ger(gene_matrix & A, gene_vector & X, gene_vector & Y, int N){ in ger()
169 static EIGEN_DONT_INLINE void rot(gene_vector & A, gene_vector & B, real c, real s, int N){ in rot()
173 static inline void atv_product(gene_matrix & A, gene_vector & B, gene_vector & X, int N){ in atv_product()
177 static inline void axpy(real coef, const gene_vector & X, gene_vector & Y, int N){ in axpy()
181 static inline void axpby(real a, const gene_vector & X, real b, gene_vector & Y, int N){ in axpby()
185 static EIGEN_DONT_INLINE void copy_matrix(const gene_matrix & source, gene_matrix & cible, int N){ in copy_matrix()
189 static EIGEN_DONT_INLINE void copy_vector(const gene_vector & source, gene_vector & cible, int N){ in copy_vector()
193 …tic inline void trisolve_lower(const gene_matrix & L, const gene_vector& B, gene_vector& X, int N){ in trisolve_lower()
197 …ine void trisolve_lower_matrix(const gene_matrix & L, const gene_matrix& B, gene_matrix& X, int N){ in trisolve_lower_matrix()
201 static inline void trmm(const gene_matrix & L, const gene_matrix& B, gene_matrix& X, int N){ in trmm()
205 static inline void cholesky(const gene_matrix & X, gene_matrix & C, int N){ in cholesky()
214 static inline void lu_decomp(const gene_matrix & X, gene_matrix & C, int N){ in lu_decomp()
218 static inline void partial_lu_decomp(const gene_matrix & X, gene_matrix & C, int N){ in partial_lu_decomp()
226 static inline void tridiagonalization(const gene_matrix & X, gene_matrix & C, int N){ in tridiagonalization()
232 static inline void hessenberg(const gene_matrix & X, gene_matrix & C, int N){ in hessenberg()