Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "product.h"
00026
00027 void test_eigen2_product_large()
00028 {
00029 for(int i = 0; i < g_repeat; i++) {
00030 CALL_SUBTEST_1( product(MatrixXf(ei_random<int>(1,320), ei_random<int>(1,320))) );
00031 CALL_SUBTEST_2( product(MatrixXd(ei_random<int>(1,320), ei_random<int>(1,320))) );
00032 CALL_SUBTEST_3( product(MatrixXi(ei_random<int>(1,320), ei_random<int>(1,320))) );
00033 CALL_SUBTEST_4( product(MatrixXcf(ei_random<int>(1,50), ei_random<int>(1,50))) );
00034 CALL_SUBTEST_5( product(Matrix<float,Dynamic,Dynamic,RowMajor>(ei_random<int>(1,320), ei_random<int>(1,320))) );
00035 }
00036
00037 #ifdef EIGEN_TEST_PART_6
00038 {
00039
00040 int N = 1000000;
00041 VectorXf v = VectorXf::Ones(N);
00042 MatrixXf m = MatrixXf::Ones(N,3);
00043 m = (v+v).asDiagonal() * m;
00044 VERIFY_IS_APPROX(m, MatrixXf::Constant(N,3,2));
00045 }
00046
00047 {
00048
00049 MatrixXf a = MatrixXf::Random(10,4), b = MatrixXf::Random(4,10), c = a;
00050 VERIFY_IS_APPROX((a = a * b), (c * b).eval());
00051 }
00052
00053 {
00054 MatrixXf mat1(10,10); mat1.setRandom();
00055 MatrixXf mat2(32,10); mat2.setRandom();
00056 MatrixXf result = mat1.row(2)*mat2.transpose();
00057 VERIFY_IS_APPROX(result, (mat1.row(2)*mat2.transpose()).eval());
00058 }
00059 #endif
00060 }