-
Notifications
You must be signed in to change notification settings - Fork 23
/
Contents.m
64 lines (58 loc) · 2.84 KB
/
Contents.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
% cBathy-Toolbox-2.0 - Estimate k-alpha and bathy from pixel data
%
% Primary Analysis Routines
% analyzeBathyCollect - single run cBathy analysis (parallel)
% analyzeSingleBathyRun - batch analysis for a single stackName
% SampleParameterFile - contains the params setting for each site
%
% Analysis Routines:
% prepBathyInput - prepare inputs for analysis
% csmInvertKAlpha - main cBathy inversion routine for k-alpha
% bathyFromKAlpha - nonlinear solver for bathy from k-alpha
% fixBathyTide - adjust depth estimates for tide.
% prepareTiles - find fs, vs, seeds for each tide
% predictCSM - xspectral matrix forward model for solver
% findKAlphaSeed - seed for nonlinear solver
% kInvertDepthModel - used for bathy solver
% bathyCI - modified version of nlparci for cBathy
%
% Kalman Filtering:
% KalmanFilterBathy - core Kalman filter routine
% findProcessError - compute sensible process error
%
% Debugging and viewing cBathy components
% plotStacksAndPhaseMaps - debugMode displays for whole collect
% listfDependentResultsForOnePoint - debugMode listing of fDependents
% examineSingleBathyResult- display all variables for any bathy
% plotBathyCollect - images of a single bathy and errors
% plotBathyCollectKalman - images of a Kalman-ed bathy and error
% showHourlyBathyResults - loop through a bathy sequence
% showHourlyKalmanResults - loop through smooth sequence
% plotBathyKalmanStep - steps through runs showing all debug info
% showcBathyTimeSeriesMovie - show time series map movie from stack
% alterAnalysisArray - allow change to the xm-ym values for debugging
%
% Viewing the cBathy Stack Data
% showcBathyTimeSeriesMovie - display a sequence of cBathy "frames"
% findInterpMap - find mapping from pixels to regular map
% useInterpMap - use the interp map from findInterpMap
% showWaveVarianceMap - show wave information visually
%
% Copyright (C) 2017 Coastal Imaging Research Network
% and Oregon State University
% This program is free software: you can redistribute it and/or
% modify it under the terms of the GNU General Public License as
% published by the Free Software Foundation, version 3 of the
% License.
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
% You should have received a copy of the GNU General Public License
% along with this program. If not, see
% <http://www.gnu.org/licenses/>.
% CIRN: https://coastal-imaging-research-network.github.io/
% CIL: http://cil-www.coas.oregonstate.edu
%
%key cBathy
%