Changeset 607

Show
Ignore:
Timestamp:
09/10/09 18:08:26 (15 years ago)
Author:
smidl
Message:

test for ticket 12 is now part of testsuite - see tests/arx_straux_test.cpp

Location:
library
Files:
1 added
3 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/estim/arx_straux.cpp

    r606 r607  
    4747//full.nbits  = floor(log2(bitmax))-1;  //!!!!!!! 
    4848 
     49return ivec(0); //  
    4950} 
    5051 
  • library/tests/CMakeLists.txt

    r598 r607  
    3939 
    4040# using UnitTest++ 
    41 add_executable(testsuite datalink_test.cpp  datasource_test.cpp egiw_test.cpp emix_test.cpp epdf_test.cpp logger_test.cpp LQG_test.cpp merger_test.cpp  
     41add_executable(testsuite arx_straux_test.cpp datalink_test.cpp  datasource_test.cpp egiw_test.cpp emix_test.cpp epdf_test.cpp logger_test.cpp LQG_test.cpp merger_test.cpp  
    4242        mpdf_test.cpp randun_test.cpp rectangular_support_test.cpp rv_test.cpp shared_ptr_test.cpp square_mat_test.cpp testsuite.cpp user_info_test.cpp) 
    4343target_link_libraries(testsuite testutil unittest) 
  • library/utia_legacy/ticket_12/test_str.m

    r578 r607  
    11% sript for testing structure estimating function 
    22 
    3 A=rand(2); 
     3% run just time-to-time - do not forget to copy resulting values to 
     4% test_arx_straux.cpp!!! 
     5if 0 
     6    A=rand(3) 
     7    B=rand(3) 
     8    % when run, copy output to the else section 
     9else 
     10    A=[   0.8147    0.9134    0.2785; 
     11    0.9058    0.6324    0.5469; 
     12    0.1270    0.0975    0.9575]; 
     13 
     14    B=[0.9649    0.9572    0.1419; 
     15    0.1576    0.4854    0.4218; 
     16    0.9706    0.8003    0.9157]; 
     17end 
     18 
    419[L0,D0]=ldform(A); 
    5 B=rand(2); 
    620[L1,D1]=ldform(A+B); 
    721