


runAllMethods


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