Home > vbmeg > functions > tool_box > dynamics_movie > movie > predict_param_make_from_NetMAR_file.m

predict_param_make_from_NetMAR_file

PURPOSE ^

SYNOPSIS ^

function predict_param_make_from_NetMAR_file(nbayes_file, dmri_file, predict_param_file)

DESCRIPTION ^

 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 predict_param_make_from_NetMAR_file(nbayes_file, dmri_file, predict_param_file)
0002 %
0003 % Copyright (C) 2011, ATR All Rights Reserved.
0004 % License : New BSD License(see VBMEG_LICENSE.txt)
0005 
0006 %nbayes_file = '/home/cbi-data4/oyamashi/matlab/Project/MAR_Model/sMAR/naiveMAR4video_lang036_RU_day1_parm08.mat';
0007 
0008 load(nbayes_file, 'MAR', 'Delta', 'Zact');
0009 load(dmri_file, 'vbmeg_area_ix');
0010 
0011 % Predict param format
0012 omega = calc_MARinput(MAR, Delta, {Zact});
0013 Index_orig = vbmeg_area_ix;
0014 
0015 save(predict_param_file, 'MAR', 'Delta', 'omega', 'Index_orig');

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