ManeuverCost3D:

Path: Math/AStar

% Finds the cost for going from startNode to nextNode in 3D.
--------------------------------------------------------------------------
   Form:
   cost = ManeuverCost3D( startNode, nextNode, d )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   startNode (1,1) Id of start location
   nextNode  (1,1) Id of next location
   d         (1,1) Data structure
                   .rA     (1,:) Node right ascension
                   .dec    (1,:) Node declination
                   .r      (1,:) Radius

   -------
   Outputs
   -------
   cost      (1,1)  Cost to traverse the distance

--------------------------------------------------------------------------

Children:

Common: Transform/RaDec2U
Math: Linear/Mag

Back to the Math Module page