Remove references to pow(x,0.5), use sqrt instead (#12928)

* Remove references to pow(x,0.5), use sqrt instead

* Update matrix library
This commit is contained in:
Julian Kent
2019-09-10 13:29:39 +02:00
committed by GitHub
parent 47e668eb86
commit a8fbe6bba2
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ public:
}
matrix::Vector<Type, M> getStdDev()
{
return getVar().pow(0.5f);
return getVar().sqrt();
}
private:
// attributes
+1 -1
View File
@@ -644,7 +644,7 @@ bool MatrixTest::vectorTests()
ut_test(isEqual(v2, v3));
float data1_sq[] = {1, 4, 9, 16, 25};
Vector<float, 5> v4(data1_sq);
ut_test(isEqual(v1, v4.pow(0.5)));
ut_test(isEqual(v1, v4.sqrt()));
return true;
}