mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-28 23:30:35 +08:00
Replace pow with sqrt
This commit is contained in:
committed by
Lorenz Meier
parent
22bf63cb71
commit
03ffd696a6
+2
-2
@@ -30,10 +30,10 @@ int main()
|
||||
v2.normalize();
|
||||
TEST(isEqualF(v2.norm(), 1.f));
|
||||
|
||||
// power
|
||||
// sqrt
|
||||
float data1_sq[] = {1,4,9,16,25};
|
||||
Vector<float, 5> v4(data1_sq);
|
||||
TEST(isEqual(v1, v4.pow(0.5)));
|
||||
TEST(isEqual(v1, v4.sqrt()));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user