Home > functions > gui > bm_editor > brain_data > brain_data_get_history.m

brain_data_get_history

PURPOSE ^

get history object

SYNOPSIS ^

function [history] = brain_data_get_history(obj)

DESCRIPTION ^

 get history object
 [USAGE]
    [history] = brain_data_get_history(<obj>);
 [IN]
    obj : brain_data object
 [OUT]
    history : history object

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [history] = brain_data_get_history(obj)
0002 % get history object
0003 % [USAGE]
0004 %    [history] = brain_data_get_history(<obj>);
0005 % [IN]
0006 %    obj : brain_data object
0007 % [OUT]
0008 %    history : history object
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 %
0014 % --- Previous check
0015 %
0016 if ~exist('obj', 'var'), error('obj is a required parameter.'); end
0017 
0018 %
0019 % --- Main Procedure
0020 %
0021 history = obj.history;

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005