laywerrobot/lib/python3.6/site-packages/scipy/io/matlab/tests/save_matfile.m
2020-08-27 21:55:39 +02:00

6 lines
No EOL
200 B
Matlab

function save_matfile(test_name, v)
% saves variable passed in m with filename from prefix
global FILEPREFIX FILESUFFIX
eval([test_name ' = v;']);
save([FILEPREFIX test_name FILESUFFIX], test_name)