SphericalCoefficients.cpp
Go to the documentation of this file.
1 
11 #include "stdafx.h"
13 #include "SphericalCoefficients.h"
14 
15 using namespace NETGeographicLib;
16 
17 //*****************************************************************************
19 {
20  m_N = c.N();
21  m_nmx = c.nmx();
22  m_mmx = c.mmx();
23  int csize = Csize( c.nmx(), c.mmx() );
24  int ssize = Ssize( c.nmx(), c.mmx() );
25  int offset = csize - ssize;
26  m_C = gcnew array<double>( csize );
27  m_S = gcnew array<double>( ssize );
28  for ( int i = 0; i < csize; i++ ) m_C[i] = c.Cv(i);
29  for ( int i = 0; i < ssize; i++ ) m_S[i] = c.Sv(i+offset);
30 }
Scalar Scalar * c
Definition: benchVecAdd.cpp:17
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy y set format x g set format y g set format x2 g set format y2 g set format z g set angles radians set nogrid set key title set key left top Right noreverse box linetype linewidth samplen spacing width set nolabel set noarrow set nologscale set logscale x set set pointsize set encoding default set nopolar set noparametric set set set set surface set nocontour set clabel set mapping cartesian set nohidden3d set cntrparam order set cntrparam linear set cntrparam levels auto set cntrparam points set size set set xzeroaxis lt lw set x2zeroaxis lt lw set yzeroaxis lt lw set y2zeroaxis lt lw set tics in set ticslevel set tics set mxtics default set mytics default set mx2tics default set my2tics default set xtics border mirror norotate autofreq set ytics border mirror norotate autofreq set ztics border nomirror norotate autofreq set nox2tics set noy2tics set timestamp bottom norotate offset
Header for NETGeographicLib::SphericalCoefficients class.
Package up coefficients for SphericalEngine.
SphericalCoefficients(const GeographicLib::SphericalEngine::coeff &c)
Constructor.
Header for GeographicLib::SphericalEngine class.


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:44:49