interp_tprof_time_fxdrg

PURPOSE ^

SYNOPSIS ^

function y = interp_tprof_time_fxdrg(t,x,t_ref,method)

DESCRIPTION ^

 Time interpolation

 by F-X Duthoit (CEA/DSM/IRFM, francois-xavier.duthoit@cea.fr) and R. Goupillou (CEA/DSM/IRFM, romain.goupillou@cea.fr)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function y = interp_tprof_time_fxdrg(t,x,t_ref,method)
0002 %
0003 % Time interpolation
0004 %
0005 % by F-X Duthoit (CEA/DSM/IRFM, francois-xavier.duthoit@cea.fr) and R. Goupillou (CEA/DSM/IRFM, romain.goupillou@cea.fr)
0006 %
0007 if nargin < 4,
0008     method = 'spline';
0009 end
0010 %
0011 y = interp1(t,x,t_ref,method);

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.