.. _program_listing_file_src_navtk_utils_LinearModel.hpp: Program Listing for File LinearModel.hpp ======================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/navtk/utils/LinearModel.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include #include #include #include #include namespace navtk { namespace utils { class LinearModel : public InterpolationModel { public: LinearModel(const std::vector &x, const std::vector &y); double y_at(double x_interp) override; }; } // namespace utils } // namespace navtk