view aim-mat/gui/newsai_loadfile.m @ 0:74dedb26614d

Initial checkin of AIM-MAT version 1.5 (6.4.2011).
author tomwalters
date Fri, 20 May 2011 12:32:31 +0100
parents
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 [frm,options]=newsai_loadfile(name)
% load the nap and its options


load(name);

whodir=who;
for i=1:length(whodir)
    if ~strcmp(whodir(i),'name')
        eval(sprintf('classstruct=%s.data;',whodir{i}));
        eval(sprintf('options=%s.options;',whodir{i}));
        if strcmp(whodir(i),'strobestruct')
            frm=classstruct;
        else
            % construct the frame from whatever (sometimes the object is not recognised
            % as object due to the version ??)
            if isobject(classstruct)
                frm=classstruct;
            else
                nr=length(classstruct);
                if nr==1
                    frm=frame(classstruct);
                else
                    for i=1:nr
                        frm{i}=frame(classstruct{i});
                    end
                end
            end
        end         
    end
end