// -------------------------------------------------------------------------
// Explicit instantiations
-using namespace cpExtensions::Algorithms;
-
-template class KalmanConstantFilter< float >;
-template class KalmanConstantFilter< double >;
+template class cpExtensions::Algorithms::KalmanConstantFilter< float >;
+template class cpExtensions::Algorithms::KalmanConstantFilter< double >;
// eof - $RCSfile$
// -------------------------------------------------------------------------
// Explicit instantiations
-using namespace cpExtensions::Algorithms;
-
-template class KalmanFilter< float >;
-template class KalmanFilter< double >;
+template class cpExtensions::Algorithms::KalmanFilter< float >;
+template class cpExtensions::Algorithms::KalmanFilter< double >;
// eof - $RCSfile$
// -------------------------------------------------------------------------
// Explicit instantiations
-using namespace cpExtensions::Algorithms;
-
-template class KalmanVelocityFilter< float >;
-template class KalmanVelocityFilter< double >;
+template class cpExtensions::Algorithms::KalmanVelocityFilter< float >;
+template class cpExtensions::Algorithms::KalmanVelocityFilter< double >;
// eof - $RCSfile$
} // elihw
} // rof
- return( true );
- }
- else
- return( false );
+
+ } // fi
}
// -------------------------------------------------------------------------
{
const char* text = table->item( i, 0 )->text( ).toStdString( ).c_str( );
char* ptr = 0;
- double v = std::strtod( text, &ptr );
+ double v = strtod( text, &ptr );
if( *ptr == '\0' && ptr != text )
values.push_back( int( v ) );
-
+
} // rof
return( values );
}
{
const char* text = table->item( i, 0 )->text( ).toStdString( ).c_str( );
char* ptr = 0;
- double v = std::strtod( text, &ptr );
+ double v = strtod( text, &ptr );
if( *ptr == '\0' && ptr != text && v >= double( 0 ) )
values.push_back( ( unsigned int )( v ) );
{
const char* text = table->item( i, 0 )->text( ).toStdString( ).c_str( );
char* ptr = 0;
- double v = std::strtod( text, &ptr );
+ double v = strtod( text, &ptr );
if( *ptr == '\0' && ptr != text )
values.push_back( v );
-
+
} // rof
return( values );
}