- Timestamp:
- 04/20/15 03:59:22 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/model/similarity/SVD/matrix_tools.cpp
r368 r370 9 9 #include <cmath> 10 10 #include <cstdio> 11 #include < alloc.h> //malloc(), embarcadero11 #include <stdlib.h> //malloc(), embarcadero 12 12 #include <math.h> //sqrt(), embarcadero 13 13 … … 15 15 double *Create(int nSize) 16 16 { 17 17 double *matrix = (double *) malloc(nSize * sizeof (double)); 18 18 19 19 for (int i = 0; i < nSize; i++)
Note: See TracChangeset
for help on using the changeset viewer.