public class Position extends AbstractMeasurement<Position>
有关位置-速度测量,请参见PV
。
PV
Modifier and Type | Field and Description |
---|---|
static String |
MEASUREMENT_TYPE
测量的类型。
|
Constructor and Description |
---|
Position(AbsoluteDate date, org.hipparchus.geometry.euclidean.threed.Vector3D position, double[][] covarianceMatrix, double baseWeight, ObservableSatellite satellite)
具有完整协方差矩阵和所有输入的构造函数。
|
Position(AbsoluteDate date, org.hipparchus.geometry.euclidean.threed.Vector3D position, double[] sigmaPosition, double baseWeight, ObservableSatellite satellite)
具有一个矢量表示标准差的构造函数。
|
Position(AbsoluteDate date, org.hipparchus.geometry.euclidean.threed.Vector3D position, double sigmaPosition, double baseWeight, ObservableSatellite satellite)
具有一个双精度表示标准差的构造函数。
|
Modifier and Type | Method and Description |
---|---|
double[][] |
getCorrelationCoefficientsMatrix()
获取相关系数矩阵。
|
double[][] |
getCovarianceMatrix()
获取协方差矩阵。
|
org.hipparchus.geometry.euclidean.threed.Vector3D |
getPosition()
获取位置。
|
protected EstimatedMeasurement<Position> |
theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states)
估计理论值。
|
protected EstimatedMeasurementBase<Position> |
theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states)
无导数估计理论值。
|
addModifier, addParameterDriver, estimate, estimateWithoutDerivatives, getBaseWeight, getCoordinates, getDate, getDimension, getModifiers, getObservedValue, getParametersDrivers, getSatellites, getTheoreticalStandardDeviation, isEnabled, setEnabled, signalTimeOfFlight, signalTimeOfFlight
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getMeasurementType
compareTo
durationFrom
getNbParametersDriversValue, getParameterDriver, getParameters, getParameters, getParameters, getParameters, getParametersAllValues, getParametersAllValues, isSupported
public Position(AbsoluteDate date, org.hipparchus.geometry.euclidean.threed.Vector3D position, double sigmaPosition, double baseWeight, ObservableSatellite satellite)
双精度表示位置的标准差,适用于3个位置分量。
测量必须在轨道传播框架中。
date
- 测量的日期
position
- 位置
sigmaPosition
- 位置分量的理论标准差
baseWeight
- 基本权重
satellite
- 与此测量相关的卫星
public Position(AbsoluteDate date, org.hipparchus.geometry.euclidean.threed.Vector3D position, double[] sigmaPosition, double baseWeight, ObservableSatellite satellite)
3维矢量表示协方差矩阵对角线元素的平方根。
测量必须在轨道传播框架中。
date
- 测量的日期
position
- 位置
sigmaPosition
- 位置标准差的3维矢量
baseWeight
- 基本权重
satellite
- 与此测量相关的卫星
public Position(AbsoluteDate date, org.hipparchus.geometry.euclidean.threed.Vector3D position, double[][] covarianceMatrix, double baseWeight, ObservableSatellite satellite)
未检查协方差矩阵是否对称和正定。
测量必须在轨道传播框架中。
date
- 测量的日期
position
- 位置
covarianceMatrix
- 仅位置测量的3x3协方差矩阵
baseWeight
- 基本权重
satellite
- 与此测量相关的卫星
public org.hipparchus.geometry.euclidean.threed.Vector3D getPosition()
public double[][] getCovarianceMatrix()
public double[][] getCorrelationCoefficientsMatrix()
这是3x3矩阵M,满足以下条件:
Mij = Pij/(σi.σj)
其中:
protected EstimatedMeasurementBase<Position> theoreticalEvaluationWithoutDerivatives(int iteration, int evaluation, SpacecraftState[] states)
理论值未应用任何修饰符。
theoreticalEvaluationWithoutDerivatives
在类 AbstractMeasurement<Position>
iteration
- 迭代次数
evaluation
- 评估次数
states
- 测量日期的轨道状态
AbstractMeasurement.estimate(int, int, SpacecraftState[])
protected EstimatedMeasurement<Position> theoreticalEvaluation(int iteration, int evaluation, SpacecraftState[] states)
理论值未应用任何修饰符。
theoreticalEvaluation
在类 AbstractMeasurement<Position>
iteration
- 迭代次数
evaluation
- 评估次数
states
- 测量日期的轨道状态
AbstractMeasurement.estimate(int, int, SpacecraftState[])
Copyright © 2002-2023 CS GROUP. All rights reserved.