File: multutils.h

package info (click to toggle)
rumba-utils 1.0.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,764 kB
  • ctags: 414
  • sloc: sh: 7,541; cpp: 6,037; makefile: 1,127; xml: 605; perl: 70
file content (17 lines) | stat: -rw-r--r-- 336 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef RUMBA_MULTUTILS_H
#define RUMBA_MULTUTILS_H

#include <rumba/manifoldmatrix.h>

void multiply 
( 
	const RUMBA::ManifoldMatrix & matrix, 
	RUMBA::ManifoldFile* DataFile, 
	RUMBA::ManifoldFile* out 
);

double product_i_j ( int i, int j, RUMBA::ManifoldFile* r );

RUMBA::ManifoldMatrix r_t_r ( RUMBA::ManifoldFile* r );

#endif