Code covered by the BSD License  

Highlights from
Analog Filter Design Toolbox

image thumbnail
from Analog Filter Design Toolbox by James Squire
GUI to design and simulate active (opamp) LP and HP Bessel, Butter, Cheby, and Elliptic filters.

MenuFileSave(handles)
function MenuFileSave(handles)
% MenuFileSave is a subfile of the AnalogFilter GUI collection
%
% James C. Squire, 2002
% Assistant Professor, Virginia Military Institute
% ver 1.0

% MenuFileSave saves a global strFilterObject as the current filename.flt

global strFilterObject
if isequal(strFilterObject.sFileName,'Untitled.flt')
    menuFileSaveAs(handles);
else
    save(strFilterObject.sFileName,'strFilterObject') %'strFilterObject','-MAT')
end

Contact us at files@mathworks.com