![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
autoware_utils | |
autoware_utils_geometry |
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Name | Deps |
---|---|
autoware_utils | |
autoware_utils_geometry |
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu
1.2.0 (2025-02-26)
1.1.0 (2025-01-27)
1.0.0 (2024-05-02)
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_utils_math at Robotics Stack Exchange
![]() |
autoware_utils_math package from autoware_utils repoautoware_utils autoware_utils_debug autoware_utils_diagnostics autoware_utils_geometry autoware_utils_logging autoware_utils_math autoware_utils_pcl autoware_utils_rclcpp autoware_utils_system autoware_utils_tf autoware_utils_uuid autoware_utils_visualization |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 1.4.2 |
License | Apache License 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/autowarefoundation/autoware_utils.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-06-06 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Jian Kang
- Ryohsuke Mitsudome
- Esteve Fernandez
- Yutaka Kondo
- Takagi, Isamu
Authors
autoware_utils_math
Overview
The autoware_utils library is a comprehensive toolkit designed to facilitate the development of autonomous driving applications. This package provides essential utilities for mathematics. It is extensively used in the Autoware project to handle common tasks such as value normalization and unit conversion.
Design
-
accumulator.hpp
: A class for accumulating statistical data, supporting min, max, and mean calculations. -
constants.hpp
: Defines commonly used mathematical constants like π and gravity. -
normalization.hpp
: Functions for normalizing angles and degrees. -
range.hpp
: Functions for generating sequences of numbers (arange, linspace). -
trigonometry.hpp
: Optimized trigonometric functions for faster computation. -
unit_conversion.hpp
: Functions for converting between different units (e.g., degrees to radians, km/h to m/s).
Example Code Snippets
Using Accumulator from accumulator.hpp
#include <autoware_utils_math/accumulator.hpp>
int main()
{
autoware_utils_math::Accumulator<double> acc;
acc.add(1.0);
acc.add(2.0);
acc.add(3.0);
std::cout << "Mean: " << acc.mean() << "\n";
std::cout << "Min: " << acc.min() << "\n";
std::cout << "Max: " << acc.max() << "\n";
std::cout << "Count: " << acc.count() << "\n";
return 0;
}
Changelog for package autoware_utils_math
1.4.2 (2025-05-21)
1.4.1 (2025-05-15)
1.4.0 (2025-04-22)
1.3.0 (2025-03-21)
-
unify version
-
update changelog
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu, Yutaka Kondo
-
feat(autoware_utils): update readme as deprecated (#51)
- feat(autoware_utils_geometry): split package
- compatibility header
- rename namespace
- fix namespace
- feat(autoware_utils_tf): split package
- fix path
- fix include path
- move header
- feat(autoware_utils): update readme as deprecated
- add todo comment for test
* move tests ---------
-
feat(autoware_utils_math): split package (#33)
- feat(autoware_utils_math): split package
- add math test
- update readme
- fix readme
- move readme code snippets
- add deprecated message
* fix test file glob ---------
-
Contributors: Takagi, Isamu