diff --git a/tests/initval_file/ramst_initval_file_data.m b/tests/initval_file/ramst_initval_file_data.m
deleted file mode 100644
index cc1914ca12367299d7db18040458f34389e1bb54..0000000000000000000000000000000000000000
--- a/tests/initval_file/ramst_initval_file_data.m
+++ /dev/null
@@ -1,14 +0,0 @@
-x = vertcat([ 1; 1.2 ], repmat(1, 200, 1));
-k = repmat(13, 202, 1);
-c = repmat(1.5, 202, 1);
-save('ramst_initval_file_data_col_vec_mat.mat','c','k','x');
-
-if ispc()
-    xlswrite('ramst_initval_file_excel',[x k c],1,'A2');
-    xlswrite('ramst_initval_file_excel',{'x' 'k' 'c'},1,'A1');
-end
-
-c=c';
-k=k';
-x=x';
-save('ramst_initval_file_data_row_vec_mat.mat','c','k','x');