~ubuntu-branches/ubuntu/quantal/psicode/quantal

« back to all changes in this revision

Viewing changes to src/bin/dboc/linalg.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2006-09-10 14:01:33 UTC
  • Revision ID: james.westby@ubuntu.com-20060910140133-ib2j86trekykfsfv
Tags: upstream-3.2.3
ImportĀ upstreamĀ versionĀ 3.2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef _psi3_dboc_linalg_h_
 
3
#define _psi3_dboc_linalg_h_
 
4
 
 
5
#include "float.h"
 
6
#include <stdio.h>
 
7
 
 
8
FLOAT** create_matrix(int a, int b);
 
9
void delete_matrix(FLOAT** M);
 
10
FLOAT** convert_matrix(double **M, int a, int b, int transpose);
 
11
void print_mat(FLOAT** a, int m, int n, FILE* out);
 
12
int matrix_mult(FLOAT** A, int arow, int acol, FLOAT** B, int brow, int bcol, FLOAT** C);
 
13
void lu_decom(FLOAT** a, int n, int* indx, FLOAT* d);
 
14
 
 
15
#endif