InternalModesProjection
Project arbitrary vertical observations onto resolvable modes.
Declaration
classdef InternalModesProjection < CAAnnotatedClassOverview
InternalModesProjection stores the weighted least-squares operator
for an observation matrix \(B=H\Phi\). Unlike model transforms, an
observation grid may identify a non-contiguous subset of modes. The
resolution matrix
describes how true candidate-mode coefficients appear in the recovered retained coefficients.
projection = basis.observationProjection(zObs,component="G");
etaHat = projection.project(etaObs);
Topics
- Inspect projection properties
aliasingMatrixAlias matrix formed from rejected-mode columns of the resolution matrix.candidateModesCandidate mode numbers considered by the projection.componentlabel, either"F"or"G".componentRoleComponent role label.conditionNumberCondition number ofgramMatrix.diagnosticFinalRelativePivotFinal retained relative QR pivot.diagnosticRankToleranceQR rank tolerance used for mode selection.gramMatrixRetained Gram matrix used in the weighted least-squares solve.isCanonicalComponentTrue when this projection has a canonical modal spectrum.observationMatrixExplicit observation matrix, when supplied by the caller.observationZObservation depths for point-sampled projections.projectionMatrixForward projection matrix from observations to retained coefficients.reconstructionMatrixReconstruction matrix from retained coefficients to native samples.rejectedModesRejected candidate mode numbers.resolutionMatrixResolution matrix from true candidate coefficients to recovered rows.retainedModesRetained mode numbers selected as resolvable.transformStatusTransform construction status.
- Apply observation projections
projectobservations onto retained modal coefficients.reconstructsampled values from retained coefficients.
- Analyze observation spectra
crossSpectrumCompute a retained-mode observation cross-spectrum.expectedRecoveredSpectrumApply the spectral window to a true candidate-mode spectrum.spectralWeightsCandidate-mode spectral weights.spectralWindowSquared resolution matrix used as an expected spectral window.spectrumCompute a retained-mode observation spectrum.
- Persist observation projections
InternalModesProjectionCreate an observation projection from canonical persisted state.
- Other
Developer Topics
These items document internal implementation details and are not part of the primary public API.
- Developer topics
candidateModeIndexCandidate-mode coordinate used by annotated persistence.observationIndexObservation index coordinate used by annotated persistence.retainedModeIndexRetained-mode coordinate used by annotated persistence.selectResolvableModesSelect observation-resolvable columns with pivoted QR.weightedProjectionBuild a weighted projection for selected observation columns.