.. _program_listing_file_src_navtk_utils_OutlierDetectionSigma.hpp: Program Listing for File OutlierDetectionSigma.hpp ================================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/navtk/utils/OutlierDetectionSigma.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #include namespace navtk { namespace utils { class OutlierDetectionSigma : public OutlierDetection { public: OutlierDetectionSigma(size_t buffer_size, double sigma); bool is_last_item_an_outlier(navtk::Vector const& data) const override; private: double sigma; }; } // namespace utils } // namespace navtk