Changes in src/gslvector.cpp [0c7ed8:112b09]
- File:
-
- 1 edited
-
src/gslvector.cpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/gslvector.cpp
r0c7ed8 r112b09 6 6 */ 7 7 8 #include "Helpers/MemDebug.hpp" 9 8 10 #include <cassert> 9 11 #include <cmath> … … 11 13 #include "gslvector.hpp" 12 14 #include "defs.hpp" 13 #include "vector.hpp"14 15 15 16 /** Constructor of class GSLVector. … … 60 61 gsl_vector_memcpy (vector, &m.vector); 61 62 }; 62 63 /**64 * This function sets the GSLvector from an ordinary vector.65 *66 * Takes access to the internal gsl_vector and copies it67 */68 void GSLVector::SetFromVector(Vector &v){69 gsl_vector_memcpy (vector, v.get());70 }71 63 72 64 /** This function returns the i-th element of a vector.
Note:
See TracChangeset
for help on using the changeset viewer.
