SphericalTabularMonostaticCrossSectionScatteringCoefficient Constructor (Double, ComplexCrossSectionScatteringCoefficient) |
Initializes an instance given an array of cone angles, in radians, and an array of monostatic cross section values represented as a complex 2x2 scattering matrix.
This represents a symmetrical pattern about the z-axis. For a given cone angle, the cross section is the
same for every clock angle about the z-axis.
Namespace:
AGI.Foundation.Communications
Assembly:
AGI.Foundation.Communications (in AGI.Foundation.Communications.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public SphericalTabularMonostaticCrossSectionScatteringCoefficient(
double[] coneAngles,
ComplexCrossSectionScatteringCoefficient[] crossSectionValues
)
Public Sub New (
coneAngles As Double(),
crossSectionValues As ComplexCrossSectionScatteringCoefficient()
)
public:
SphericalTabularMonostaticCrossSectionScatteringCoefficient(
array<double>^ coneAngles,
array<ComplexCrossSectionScatteringCoefficient^>^ crossSectionValues
)
new :
coneAngles : float[] *
crossSectionValues : ComplexCrossSectionScatteringCoefficient[] -> SphericalTabularMonostaticCrossSectionScatteringCoefficient
Parameters
- coneAngles
- Type: SystemDouble
An array of cone angles. The cone angle is defined as the zenith angle from the positive z-axis to the point.
- crossSectionValues
- Type: AGI.Foundation.CommunicationsComplexCrossSectionScatteringCoefficient
An array of cross section values represented as a complex 2x2 scattering matrix.
Exceptions Exception | Condition |
---|
ArgumentNullException |
Thrown if either the coneAngles or crossSectionValues arguments are null.
|
ArgumentException |
Thrown if the coneAngles array argument length is less than or equal to 1. Thrown if the coneAngles array argument
and crossSectionValues array argument do not have the same length.
Thrown if there is less than 1 unique cone angle value in the coneAngles array argument.
|
Remarks
The polarization scattering basis defaults to T:AGI.Foundation.Graphics.SetHint when
using this constructor.
See Also