From 87f7e2551afad2fcf74155a90590e5d848820e05 Mon Sep 17 00:00:00 2001 From: Paul D'Angio Date: Tue, 17 Nov 2020 17:37:24 -0500 Subject: [PATCH] covariance: initial commit --- CMakeLists.txt | 1 + msg/covariance.msg | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 msg/covariance.msg diff --git a/CMakeLists.txt b/CMakeLists.txt index 2dcde3a..098d56c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,6 +18,7 @@ add_message_files( angular_velocity.msg magnetic_field.msg temperature.msg + covariance.msg ) # Add service files. diff --git a/msg/covariance.msg b/msg/covariance.msg new file mode 100644 index 0000000..c53494c --- /dev/null +++ b/msg/covariance.msg @@ -0,0 +1,4 @@ +# The covariance matrix for a sensor measurement. + +uint32 dimensions # The number of independent measurements represented by the covariance matrix. +float64[] covariance # The covariance matrix in row-major order. \ No newline at end of file