Home > functions > tool_box > mri_toolbox > mri_point_select_dir > analyze_info > vb_analyze_info_get_header.m

vb_analyze_info_get_header

PURPOSE ^

get header information of analyze file.

SYNOPSIS ^

function [header] = vb_analyze_info_get_header(obj)

DESCRIPTION ^

 get header information of analyze file.
 [USAGE]
    [header] = vb_analyze_info_get_header(<obj>);
 [IN]
    obj : analyze_info object
 [OUT]
    header : <<structure>> analyze file header information.

 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 [header] = vb_analyze_info_get_header(obj)
0002 % get header information of analyze file.
0003 % [USAGE]
0004 %    [header] = vb_analyze_info_get_header(<obj>);
0005 % [IN]
0006 %    obj : analyze_info object
0007 % [OUT]
0008 %    header : <<structure>> analyze file header information.
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 header = obj.header;
0022

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