mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-24 15:40:31 +08:00
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:
@@ -89,7 +89,7 @@ public:
|
||||
}
|
||||
matrix::Vector<Type, M> getStdDev()
|
||||
{
|
||||
return getVar().pow(0.5f);
|
||||
return getVar().sqrt();
|
||||
}
|
||||
private:
|
||||
// attributes
|
||||
|
||||
+1
-1
Submodule src/lib/matrix updated: 22bf63cb71...15865b741c
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user