All public logs

From KitwarePublic
Jump to navigationJump to search

Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 03:05, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Math/EigenSymmetric (content was: "At the moment, this is a pretty messy process, so here are some helper functions that will hopefully eventually be wrapped into a class/interface. ==EigenSymmetric.cxx== <source lang="cpp"> #include <vtkMath.h> allocate memory for an nrow x ncol matrix: template<class TReal> TReal **create_matrix ( long nrow, long ncol ) { typedef TReal* TRealPointer; TReal **m = new TRealPointer[nrow]; TReal* block = ( TReal* ) calloc ( nrow*ncol, sizeof ( TReal ) ); m[0] = blo...")