Commit e553b0fc authored by Ernesto Tapia's avatar Ernesto Tapia

Test orthogonalize.

parent eba14d94
......@@ -631,6 +631,16 @@ namespace
3,3,3;
DLIB_TEST(upperbound(m,3) == M);
}
{
matrix<double,9,5> A = randm(9,5);
matrix<double> B = A;
orthogonalize(A);
orthogonalize(B);
DLIB_TEST(equal(A,B));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment