-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathArrayFactorDataFormat.m
More file actions
29 lines (24 loc) · 927 Bytes
/
ArrayFactorDataFormat.m
File metadata and controls
29 lines (24 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
classdef ArrayFactorDataFormat
% Carry array factor data for calibration example
% Copyright 2023 The MathWorks, Inc.
properties
SteeringAngle
UncalibratedPattern
AnalogCourseAmplitudeCalPattern
AnalogPhaseCalPattern
AnalogFineAmplitudeCalPattern
DigitalAmplitudeCalPattern
FullCalibration
end
methods
function s = toStruct(this)
s.SteeringAngle = this.SteeringAngle;
s.UncalibratedPattern = this.UncalibratedPattern;
s.AnalogCourseAmplitudeCalPattern = this.AnalogCourseAmplitudeCalPattern;
s.AnalogPhaseCalPattern = this.AnalogPhaseCalPattern;
s.AnalogFineAmplitudeCalPattern = this.AnalogFineAmplitudeCalPattern;
s.DigitalAmplitudeCalPattern = this.DigitalAmplitudeCalPattern;
s.FullCalibration = this.FullCalibration;
end
end
end