Fixed bug in testsuite (Octave).

time-shift
Stéphane Adjemian (Hermes) 2015-06-05 14:21:12 +02:00
parent 6f1452e16a
commit 7a93e93f94
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
x = vertcat([ 1; 1.2 ], repmat(1, 200, 1));
k = repmat(12.7551, 202, 1);
c = repmat(1.53061, 202, 1);
save('ramst_initval_file_data_col_vec_mat.mat');
save('ramst_initval_file_data_col_vec_mat.mat','c','k','x');
if ispc()
xlswrite('ramst_initval_file_excel',[x k c],1,'A2');
@ -11,4 +11,4 @@ end
c=c';
k=k';
x=x';
save('ramst_initval_file_data_row_vec_mat.mat');
save('ramst_initval_file_data_row_vec_mat.mat','c','k','x');