Home > functions > tool_box > mri_toolbox > mri_point_select_dir > mps_fileio > vb_mps_fileio_set_pointlist.m

vb_mps_fileio_set_pointlist

PURPOSE ^

set point_list object to mps_fileio object.

SYNOPSIS ^

function [obj] = vb_mps_fileio_set_pointlist(obj, point_list)

DESCRIPTION ^

 set point_list object to mps_fileio object.
 [USAGE]
    [obj] = mps_fileio_set_poinlist(<obj>, <point_list>);
 [IN]
           obj : mps_fileio object
    point_list : mps_pointlist object
 [OUT]
    none


 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 [obj] = vb_mps_fileio_set_pointlist(obj, point_list)
0002 % set point_list object to mps_fileio object.
0003 % [USAGE]
0004 %    [obj] = mps_fileio_set_poinlist(<obj>, <point_list>);
0005 % [IN]
0006 %           obj : mps_fileio object
0007 %    point_list : mps_pointlist object
0008 % [OUT]
0009 %    none
0010 %
0011 %
0012 % Copyright (C) 2011, ATR All Rights Reserved.
0013 % License : New BSD License(see VBMEG_LICENSE.txt)
0014 if ~exist('obj', 'var'), error('obj is a required parameter'); end
0015 if ~exist('point_list', 'var'), error('point_list is a required parameter'); end
0016 
0017 obj.point_list = point_list;

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