rbmatlab  1.13.10
 All Classes Namespaces Files Functions Variables Groups Pages
test_det_der_sim_dummy.m
Go to the documentation of this file.
1 function sim_data=test_det_der_sim_dummy(model,model_data)
2 % function sim_data=test_det_der_sim_dummy(model,model_data)
3 % only needed for testing script_detailled_simulation
4 % CREATE DUMMY FILE FOR TESTING!!!!
5 
6 sim_data.y=rand(5,1);
7 sim_data.y_der=rand(5,3);
8 
9 end