Path: Math/AStar
% Finds the cost for going from startNode to nextNode. -------------------------------------------------------------------------- Form: cost = ManeuverCost( startNode, nextNode, d ) -------------------------------------------------------------------------- ------ Inputs ------ startNode (1,1) Id of start location goalNode (1,1) Id of next location d (1,1) Data structure .rA (1,:) Node right ascension .dec (1,:) Node declination .v (3,:) Velocity ------- Outputs ------- cost (1,:) List of nodes in path --------------------------------------------------------------------------
Common: Transform/RaDec2U
Back to the Math Module page