浏览代码

minor fix to tutorial using SVD

Johannes Ruehle 11 年之前
父节点
当前提交
f1e617afe9
共有 1 个文件被更改,包括 1 次插入1 次删除
  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());