Eigen_and_Procrustes.h 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. #ifndef _Eigen_and_Procrustes_h_
  2. #define _Eigen_and_Procrustes_h_
  3. /* Eigen_and_Procrustes.h
  4. * Copyright (C) 2004-2017 David Weenink
  5. *
  6. * This code is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or (at
  9. * your option) any later version.
  10. *
  11. * This code is distributed in the hope that it will be useful, but
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this work. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. /*
  20. * djmw 20041025 Initial version
  21. * djmw 20110307 Latest modification
  22. */
  23. #include "Eigen.h"
  24. #include "Procrustes.h"
  25. autoProcrustes Eigens_to_Procrustes (Eigen me, Eigen thee, integer evec_from, integer evec_to);
  26. #endif /* _Eigen_and_Procrustes_h_ */