% PS05_MAIN this is the main m-file that runs all the way through problem % set 4 (including the kriging part). This program only calls other % programs that do most of the work. Each of the "sub-programs" are % built so that they can be run individually as well, so you can see % how individual elements operate without having to wait for the co-krige % part to finish. However, keep in mind that some of these sub-programs % may need to be run at least once before the next sub-program in the % sequence can be run. % % Started 2002:10:20 D. Glover, WHOI % Modif'd 2002:10:22 DMG to finish final touches to PS04 answer % Modif'd 2008:10:27 DMG changed the name from PS04 to PS05 % Start the stop watch t_init_ps05=clock; % Run the initialization script ps05_init; % Run the trend surface fitting routine ps05_trend; % Run the program that fits the 2D variograms and cross-variograms ps05_semifit; % Run the cokriging program ps05_cokri; % Report total processing execution time sprintf('%s%g\n','Total Elasped Time: ',etime(clock,t_init_ps05))