Browse Source

minor fix to tutorial using SVD

Johannes Ruehle 11 năm trước cách đây
mục cha
commit
f1e617afe9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      core/tutorial/progs/05_matio.cpp

+ 1 - 1
core/tutorial/progs/05_matio.cpp

@@ -89,7 +89,7 @@ int main(int argc, char** argv) {
 
 #ifdef NICE_USELIB_LINAL
 	// Calculate singular value decomposition
-	NICE::SVD matrix_svd(matrix);
+	NICE::SVD<double> matrix_svd(matrix);
 
 	std::cout << "Vt:\n";
 	printMatrix(matrix_svd.getVt());