Skip to content

Commit

Permalink
[documentation] fix sample image and casing (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge authored Nov 14, 2022
1 parent 06aad6b commit 7ab42ff
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion sample/ekf_4x1x0_soaring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace {

template <typename Type, auto Size> using vector = Eigen::Vector<Type, Size>;

//! @brief ArduPilot Plane Soaring
//! @brief ArduPilot plane soaring.
//!
//! @copyright This example is transcribed from the ArduPilot Soaring Plane
//! copyright ArduPilot Dev Team.
Expand Down
4 changes: 2 additions & 2 deletions sample/kf_1x1x0_building_height.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace fcarouge::sample {
namespace {
//! @brief Estimating the Height of a Building
//! @brief Estimating the height of a building.
//!
//! @copyright This example is transcribed from KalmanFilter.NET copyright Alex
//! Becker.
Expand All @@ -18,7 +18,7 @@ namespace {
//! deviation) is 5 meters. The set of ten measurements is: 48.54m, 47.11m,
//! 55.01m, 55.15m, 49.89m, 40.85m, 46.72m, 50.05m, 51.27m, 49.95m.
//!
//! @image image/kf_1x1x0_building_height.svg
//! @image html ./sample/image/kf_1x1x0_building_height.svg
//!
//! @example kf_1x1x0_building_height.cpp
[[maybe_unused]] auto kf_1x1x0_building_height{[] {
Expand Down
2 changes: 1 addition & 1 deletion sample/kf_1x1x0_liquid_temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace fcarouge::sample {
namespace {
//! @brief Estimating the Temperature of the Liquid in a Tank
//! @brief Estimating the temperature of the liquid in a tank.
//!
//! @copyright This example is transcribed from KalmanFilter.NET copyright Alex
//! Becker.
Expand Down
2 changes: 1 addition & 1 deletion sample/kf_1x1x1_dog_position.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

namespace fcarouge::sample {
namespace {
//! @brief Estimating the Position of a Dog
//! @brief Estimating the position of a dog.
//!
//! @copyright This example is transcribed from Kalman and Bayesian Filters in
//! Python copyright Roger Labbe
Expand Down
2 changes: 1 addition & 1 deletion sample/kf_2x1x1_rocket_altitude.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace {

template <typename Type, auto Size> using vector = Eigen::Vector<Type, Size>;

//! @brief Estimating the Rocket Altitude
//! @brief Estimating the rocket altitude.
//!
//! @copyright This example is transcribed from KalmanFilter.NET copyright Alex
//! Becker.
Expand Down
2 changes: 1 addition & 1 deletion sample/kf_6x2x0_vehicle_location.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct divide final {
}
};

//! @brief Estimating the Vehicle Location
//! @brief Estimating the vehicle location.
//!
//! @copyright This example is transcribed from KalmanFilter.NET copyright Alex
//! Becker.
Expand Down

0 comments on commit 7ab42ff

Please sign in to comment.