1function alpha = getLimitedLoadDependence(self)
2% alpha = GETLIMITEDLOADDEPENDENCE()
4% Copyright (c) 2012-2026, Imperial College London
7M = getNumberOfStations(self);
9% First pass: find maximum size needed
12 mu = self.stations{ist}.lldScaling;
14 maxsize = max(maxsize, length(mu));
18% Initialize with correct size and fill with ones
19alpha = ones(M, maxsize);
21% Second pass: populate with actual values
23 mu = self.stations{ist}.lldScaling;
25 alpha(ist, 1:length(mu)) = mu;
26 % Replace any zeros with ones
27 alpha(ist, alpha(ist,:)==0) = 1;