LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getLimitedJointClassDependence.m
1function [gamma, cutoffs] = getLimitedJointClassDependence(self)
2% [GAMMA, CUTOFFS] = GETLIMITEDJOINTCLASSDEPENDENCE()
3%
4% Returns the per-class joint-dependence scaling tables and cutoffs for all stations
5%
6% GAMMA: cell array where gamma{ist}{r} is the linearized scaling table
7% for station ist and class r
8% CUTOFFS: cell array where cutoffs{ist} gives per-class cutoffs vector
9% for station ist
10
11% Copyright (c) 2012-2026, Imperial College London
12% All rights reserved.
13
14M = getNumberOfStations(self);
15
16gamma = cell(M, 1);
17cutoffs = cell(M, 1);
18
19for ist = 1:M
20 if ~isempty(self.stations{ist}.ljcdScaling)
21 gamma{ist} = self.stations{ist}.ljcdScaling;
22 cutoffs{ist} = self.stations{ist}.ljcdCutoffs;
23 end
24end
25end