runAllMethods

PURPOSE ^

runAllMethods

SYNOPSIS ^

function [zis, runTimes] = runAllMethods(x, y, z, xi, yi, options)

DESCRIPTION ^

 runAllMethods

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [zis, runTimes] = runAllMethods(x, y, z, xi, yi, options)
0002 % runAllMethods
0003 
0004 if nargin < 6 || isempty(options)
0005     % Load them from file, first check if there is a specific options file
0006     % in the current folder
0007     if exist('hitOptions.m', 'file')
0008         hitOptions
0009     else
0010         warning('Using default parameters!');
0011     end    
0012 end
0013 
0014 % Run all methods available
0015 interp = NearestNeighborInterpolant(x, y, z);
0016

Generated on Thu 10-Dec-2020 17:34:27 by m2html © 2005