root/library/tests/randun_test.cpp @ 581

Revision 581, 489 bytes (checked in by vbarta, 15 years ago)

using long long in RandunStorage?; test passes

Line 
1
2#include <itpp_ext.h>
3#include "UnitTest++.h"
4#include "mat_checks.h"
5using namespace itpp;
6
7 TEST(test_randun) {
8        // matlab output obtained by
9        // >>clear all
10        // >>randun(10);
11         vec matlab_out=" 0.695964974209650, 0.083321541586575, 0.385149445564090, 0.206731595660901, 0.537928272754852, 0.960480190795139, 0.790566693893898, 0.054424274738144, 0.708785523990535, 0.558301708920999";
12
13        //ASSUMING randun was not used yet!
14         vec x = randun(10);
15         CHECK_CLOSE(matlab_out, x, 1e-6);
16 }
Note: See TracBrowser for help on using the browser.