1function [gamma, cutoffs] = getLimitedJointDependence(self)
2% [GAMMA, CUTOFFS] = GETLIMITEDJOINTDEPENDENCE()
4% Returns the joint-dependence scaling tables and cutoffs
for all stations
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
9% Copyright (c) 2012-2026, Imperial College London
12M = getNumberOfStations(self);
13K = getNumberOfClasses(self);
19 if ~isempty(self.stations{ist}.ljdScaling)
20 gamma{ist} = self.stations{ist}.ljdScaling;
21 cutoffs(ist, :) = self.stations{ist}.ljdCutoffs;