| 88 | |
| 89 | |
| 90 | void dMakeRandomVector (dReal *A, int n, dReal range) |
| 91 | { |
| 92 | int i; |
| 93 | for (i=0; i<n; i++) A[i] = (dRandReal()*REAL(2.0)-REAL(1.0))*range; |
| 94 | } |
| 95 | |
| 96 | |
| 97 | void dMakeRandomMatrix (dReal *A, int n, int m, dReal range) |
nothing calls this directly
no test coverage detected