Home > vbmeg > functions > tool_box > dynamics_movie > test_fig > basic_tool > load_connection_dti.m

load_connection_dti

PURPOSE ^

Connection pair index file

SYNOPSIS ^

function [Vmni] = load_connection_dti(parm)

DESCRIPTION ^

 Connection pair index file
 parm.conn_file 
 parm.atlas_file 
 parm.brainfile
 Vmni{n} : vertex 3D coordinate for n-th connections (MNI-mm)

 2014-11-10 Masa-aki Sato

 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    [Vmni] = load_connection_dti(parm)
0002 % Connection pair index file
0003 % parm.conn_file
0004 % parm.atlas_file
0005 % parm.brainfile
0006 % Vmni{n} : vertex 3D coordinate for n-th connections (MNI-mm)
0007 %
0008 % 2014-11-10 Masa-aki Sato
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 load(parm.conn_file, 'Vtracks');
0014 
0015 [Vc, Nc] = cell_to_mat(Vtracks);
0016 
0017 [Vmni , IMGinfo] = trans_subj_mni_coord(Vc,parm);
0018 
0019 Vmni = mat_to_cell(Vmni,Nc);

Generated on Mon 22-May-2023 06:53:56 by m2html © 2005