Home > functions > job > vb_job_curry2vbmeg.m

vb_job_curry2vbmeg

PURPOSE ^

Read surface data from Curry format file and save mat file

SYNOPSIS ^

function vb_job_curry2vbmeg(curryfile,headfile, analyzefile)

DESCRIPTION ^

 Read surface data from Curry format file and save mat file
    vb_job_curry2vbmeg(curryfile, headfile, analyzefile)
 --- Input
 curryfile : Input Curry file
 headfile  : Output .head.mat file
 analyzefile : Input analyzefile

 This function convert a Curry surface file to .head.mat file,
 which is used in BEM calculation. 
 

 2005-07-06 Taku Yoshioka
 2006-10-26 M. Sato
   input argument is changed: analyze file is not necessary
 2007-06-25 M.Sato
   input argument is changed: analyze file is necessary

 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 vb_job_curry2vbmeg(curryfile,headfile, analyzefile)
0002 % Read surface data from Curry format file and save mat file
0003 %    vb_job_curry2vbmeg(curryfile, headfile, analyzefile)
0004 % --- Input
0005 % curryfile : Input Curry file
0006 % headfile  : Output .head.mat file
0007 % analyzefile : Input analyzefile
0008 %
0009 % This function convert a Curry surface file to .head.mat file,
0010 % which is used in BEM calculation.
0011 %
0012 %
0013 % 2005-07-06 Taku Yoshioka
0014 % 2006-10-26 M. Sato
0015 %   input argument is changed: analyze file is not necessary
0016 % 2007-06-25 M.Sato
0017 %   input argument is changed: analyze file is necessary
0018 %
0019 % Copyright (C) 2011, ATR All Rights Reserved.
0020 % License : New BSD License(see VBMEG_LICENSE.txt)
0021 
0022 [Fhead,Vhead,XXhead] = vb_read_curry_surface(curryfile, analyzefile);
0023 
0024 vb_save(headfile,'Fhead','Vhead','XXhead');
0025

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