Click or drag to resize
XDL

XmtHermite4PV Method (Double, Double, Double, Double, Double, Double, Double)

네 점의 1차원 위치, 속도로부터 허밋 보간을 수행한다.

Namespace:  Pixoneer.NXDL
Assembly:  NXDL (in NXDL.dll) Version: 2.0.3.31
Syntax
C#
public static bool Hermite4PV(
	double[] t,
	double[] p,
	double[] v,
	double time,
	out double pOut,
	out double vOut,
	out double aOut
)

Parameters

t
Type: SystemDouble
길이가 4 이상인 측정 시각 배열.
p
Type: SystemDouble
길이가 4 이상인 측정 시각의 위치.
v
Type: SystemDouble
길이가 4 이상인 측정 시각의 속도.
time
Type: SystemDouble
보간 시각.
pOut
Type: SystemDouble
[OUT] 보간 위치.
vOut
Type: SystemDouble
[OUT] 보간 속도.
aOut
Type: SystemDouble
[OUT] 보간 가속도.

Return Value

Type: Boolean
보간 성공 여부.
See Also