Index of Functions: A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X 
Index Page
cspice_dvnorm

Table of contents
Abstract
I/O
Parameters
Examples
Particulars
Exceptions
Files
Restrictions
Required_Reading
Literature_References
Author_and_Institution
Version
Index_Entries

Abstract


   CSPICE_DVNORM returns the derivative of the vector norm of a 3-vector.

I/O


   Given:

      state    6-vector(s), the second three components of the vector(s)
               being the derivatives of the first three with respect to
               some scalar.

                               dx
                 state =  ( x, -- )
                               ds


               A common form for `state' would contain position and
               velocity.

               [6,n] = size(state); double = class(state)

   the call:

      dvnorm = cspice_dvnorm( state )

   returns:

      dvnorm   the value(s) of d||x|| corresponding to `state'.
                               ------
                               ds

                                     1/2         2     2     2  1/2
               Where ||x|| = < x, x >    =  (  x1  + x2  + x3  )

                               dx1, dx2, dx3
                         v = ( ---  ---  --- )
                               ds   ds   ds

                     d||x||   < x, v >
                    ------ =   ------    =  < xhat, v >
                      ds             1/2
                              < x, x >

               `dvnorm' returns with the same vectorization measure (N)
               as 'state'.

               [1,n] = size(dvnorm); double = class(dvnorm)

Parameters


   None.

Examples


   Any numerical results shown for this example may differ between
   platforms as the results depend on the SPICE kernels used as input
   and the machine specific arithmetic implementation.

   1) Compute the derivative of the norm of three vectors of
      different magnitudes. Use the first two vectors to define
      the derivatives as parallel and anti-parallel, and let
      the third be the zero vector.

      Example code begins here.


      function dvnorm_ex1()

         %
         % Create several 6-vectors (6x1 arrays) with the structure
         %
         %   y = |  x  |
         %       |     |
         %       |  dx |
         %       |  -- |
         %       |  ds |
         %
         % where 'x' is a 3-vector (3x1 array).
         %

         %
         % Create 'y' with 'x' of varying magnitudes. Use 'x'
         % and '-x' to define the derivative as parallel and
         % anti-parallel.
         %
         mag = [ -4, 4, 12 ];

         x   = [ 1, sqrt(2), sqrt(3 ) ]';

         y   = [ [x * 10^mag(1);  x], ...
                 [x * 10^mag(2); -x], ...
                 [  zeros(3,1);  x * 10^mag(3) ] ];

         %
         % Calculate the derivative of the vector norms with respect
         % to 's'.
         %
         dvnorm = cspice_dvnorm( y );

         fprintf( 'Parallel x, dx/ds         : %10.6f\n', dvnorm(1) )
         fprintf( 'Anti-parallel x, dx/ds    : %10.6f\n', dvnorm(2) )
         fprintf( 'Zero vector x, large dx/ds: %10.6f\n', dvnorm(3) )


      When this program was executed on a Mac/Intel/Octave6.x/64-bit
      platform, the output was:


      Parallel x, dx/ds         :   2.449490
      Anti-parallel x, dx/ds    :  -2.449490
      Zero vector x, large dx/ds:   0.000000


Particulars


   A common use for this routine is to calculate the time derivative
   of the radius corresponding to a state vector.

Exceptions


   1)  If the first three components of `state' ("x") describe the
       origin (zero vector) the routine returns zero as the
       derivative of the vector norm.

   2)  If the input argument `state' is undefined, an error is
       signaled by the Matlab error handling system.

   3)  If the input argument `state' is not of the expected type, or
       it does not have the expected dimensions and size, an error is
       signaled by the Mice interface.

Files


   None.

Restrictions


   None.

Required_Reading


   MICE.REQ

Literature_References


   None.

Author_and_Institution


   J. Diaz del Rio     (ODC Space)
   E.D. Wright         (JPL)

Version


   -Mice Version 1.1.0, 25-AUG-2021 (EDW) (JDR)

       Edited -Examples section to comply with NAIF standard. Added
       example's problem statement. Reformatted example's output.

       Added -Parameters, -Particulars, -Exceptions, -Files, -Restrictions,
       -Literature_References and -Author_and_Institution sections.

       Eliminated use of "lasterror" in rethrow.

       Removed reference to the function's corresponding CSPICE header from
       -Required_Reading section.

   -Mice Version 1.0.1, 09-NOV-2012 (EDW)

       Edited -I/O section to conform to NAIF standard for Mice
       documentation.

   -Mice Version 1.0.0, 10-MAY-2010 (EDW)

Index_Entries


   derivative of 3-vector norm


Fri Dec 31 18:44:24 2021