SDR_al/Matlab/CalibrationValueFormat.m

18 lines
350 B
Matlab
Raw Permalink Normal View History

2023-07-24 15:14:00 +00:00
classdef CalibrationValueFormat
% Store the antenna calibration values
properties
AnalogWeights
DigitalWeights
end
methods
function s = toStruct(this)
s.AnalogWeights = this.AnalogWeights;
s.DigitalWeights = this.DigitalWeights;
end
end
end