<< CL_kp_params Orbit properties CL_kp_v2M >>

CelestLab >> Orbit properties > CL_kp_v2E

CL_kp_v2E

True anomaly to eccentric anomaly

Calling Sequence

E = CL_kp_v2E(ecc,v)

Description

Parameters

v:

True anomaly [rad] (PxN or Px1)

ecc:

Eccentricity (PxN or Px1)

E:

Eccentric anomaly. Undefined (%nan) if the true anomaly is not in the correct range. [rad] (PxN)

Authors

Bibliography

See also

Examples

// Elliptic and hyperbolic orbit:
v = [0.1, 0.2];
ecc = [0.3, 1.5];
E = CL_kp_v2E(ecc,v);

// Consistency test:
v - CL_kp_E2v(ecc,E) // => 0

Report an issue
<< CL_kp_params Orbit properties CL_kp_v2M >>