view m-toolbox/classes/@sigBuilder/cb_buildSave.m @ 52:daf4eab1a51e
database-connection-manager tip
Fix. Default password should be [] not an empty string
author |
Daniele Nicolodi <nicolodi@science.unitn.it> |
date |
Wed, 07 Dec 2011 17:29:47 +0100 (2011-12-07) |
parents |
f0afece42f48 |
children |
|
line source
% CB_BUILDSAVE fires when the user clicks 'build & save'
%
% M Hewitson
%
% $Id: cb_buildSave.m,v 1.1 2008/10/19 11:42:40 hewitson Exp $
%
function cb_buildSave(varargin)
myh = varargin{1};
mainfig = varargin{end};
% Build signal
obj = sigBuilder.buildSignal(mainfig);
% Get a file name from the user
[filename, pathname] = uiputfile({'*.xml', 'LTPDA XML File (*.xml)'; '*.mat', 'MAT File (*.mat)'}, 'Save File as');
if isequal(filename,0) || isequal(pathname,0)
disp('Cancelled.')
else
fname = fullfile(pathname, filename);
save(obj, fname);
end
end