view aim-mat/gui/aim_savefile.m @ 2:8bd33a2931a3

fixed email
author Stefan Bleeck <bleeck@soton.ac.uk>
date Fri, 20 May 2011 12:42:38 +0100
parents 74dedb26614d
children 20ada0af3d7d
line wrap: on
line source
% procedure for 'aim-mat'
% 
%   INPUT VALUES:
%  
%   RETURN VALUE:
%
% 
% (c) 2011, University of Southampton
% Maintained and written by Stefan Bleeck (bleec@gmail.com)
% http://www.soton.ac.uk/aim


function aim_savefile(handles,fr,name,type,modul,options,all_options)

str.type=modul;
str.data=fr;
str.options=options;
str.all_options=all_options;

eval(sprintf('%s=str;',type));

lookpath=fullfile(handles.info.original_soundfile_directory,name);

str5=sprintf('save(''%s'',''%s'');',lookpath,type);
eval(str5);