~ubuntu-branches/ubuntu/vivid/psicode/vivid

« back to all changes in this revision

Viewing changes to src/lib/libciomr/print_mat.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Banck
  • Date: 2008-06-07 16:49:57 UTC
  • mfrom: (2.1.2 hardy)
  • Revision ID: james.westby@ubuntu.com-20080607164957-8pifvb133yjlkagn
Tags: 3.3.0-3
* debian/rules (DEB_MAKE_CHECK_TARGET): Do not abort test suite on
  failures.
* debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Set ${bindir} to /usr/lib/psi.
* debian/rules (install/psi3): Move psi3 file to /usr/bin.
* debian/patches/07_464867_move_executables.dpatch: New patch, add
  /usr/lib/psi to the $PATH, so that the moved executables are found.
  (closes: #464867)
* debian/patches/00list: Adjusted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
** \ingroup (CIOMR)
4
4
*/
5
5
 
6
 
/* $Log: print_mat.c,v $
7
 
/* Revision 1.3  2002/06/01 18:23:54  sherrill
8
 
/* Upgrade doxygen documentation
9
 
/*
10
 
/* Revision 1.2  2002/04/19 21:48:06  sherrill
11
 
/* Remove some unused functions and do doxygen markup of libciomr.
12
 
/*
13
 
/* Revision 1.1.1.1  2000/02/04 22:53:21  evaleev
14
 
/* Started PSI 3 repository
15
 
/*
16
 
/* Revision 2.1  1991/06/15 18:29:43  seidl
17
 
/* *** empty log message ***
18
 
/* */
19
 
 
20
 
static char *rcsid = "$Id: print_mat.c,v 1.3 2002/06/01 18:23:54 sherrill Exp $";
21
 
 
22
6
#include "includes.h"
23
7
 
24
 
/*
 
8
/*!
25
9
** print_mat: Print a matrix a of dimensions mxn to file pointer out.
26
10
**
 
11
** Arguments:
 
12
**  \param a   = matrix to print
 
13
**  \param m   = number of rows in matrix
 
14
**  \param n   = number of columns in matrix
 
15
**  \param out = file pointer for output
 
16
**
27
17
** \ingroup (CIOMR)
28
18
*/
29
19
void print_mat(double **a, int m, int n, FILE *out)