summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fa90912)
raw | patch | inline | side by side (parent: fa90912)
author | cilix42 <cilix42@users.sourceforge.net> | |
Thu, 13 Dec 2007 20:17:35 +0000 (20:17 +0000) | ||
committer | cilix42 <cilix42@users.sourceforge.net> | |
Thu, 13 Dec 2007 20:17:35 +0000 (20:17 +0000) |
src/syseq.h | patch | blob | history |
diff --git a/src/syseq.h b/src/syseq.h
index 7075bd47be18fc3954c5c621131ac793e17c1f85..b16693356219a769f3ba84c9b6b4425284b6ec94 100644 (file)
--- a/src/syseq.h
+++ b/src/syseq.h
a[2]*b[1]*c[0]);
}
-/* Fills the matrix A with random values between lower and upper */
-template <int S, int T>
-inline void fill_random (double A[S][T], double lower = 0.0, double upper = 1.0) {
- srand(time(NULL));
- double range = upper - lower;
- for (int i = 0; i < S; ++i) {
- for (int j = 0; j < T; ++j) {
- A[i][j] = range*(random()/(RAND_MAX + 1.0)) - lower;
- }
- }
-}
-
/* Copy the elements of A into B */
template <int S, int T>
inline void copy_mat(double A[S][T], double B[S][T]) {