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