Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EKF API and test #33

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

EKF API and test #33

wants to merge 1 commit into from

Conversation

hungwn2
Copy link

@hungwn2 hungwn2 commented Feb 12, 2025

No description provided.

@@ -0,0 +1,57 @@
#pragma once
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where is the file header? Reference other header files and add it please

#pragma once
#include <stdio.h>
#include <math.h>
#define STATE_SIZE 9
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please leave a comment explaining what this is

/** @brief [DESC] */

#include <math.h>
#define STATE_SIZE 9
#define MEASUREMENT_SIZE 6 //(x, y, z), (ax, ay, az), (a, b, y)
#define DT 1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is DT? Leave a comment like above

/** @brief [DESC] */

#include <stdio.h>
#include <math.h>
#define STATE_SIZE 9
#define MEASUREMENT_SIZE 6 //(x, y, z), (ax, ay, az), (a, b, y)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please reformat the comment. Not sure what the comment means either, don't really see the relation?



//state matrix
double x[STATE_SIZE]={};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are these variables in the header file? Can we move them to the C file

double Q[STATE_SIZE][STATE_SIZE]={}; //9x9 matrix w/covariance in position, velocity, and orientation angle noise


double R[MEASUREMENT_SIZE][MEASUREMENT_SIZE]=
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have a lot of matrices. Can you put them all into a storage struct? Having them stored together in a storage will make it much cleaner

double S_inv[MEASUREMENT_SIZE][MEASUREMENT_SIZE] = {0};
double H_T[STATE_SIZE][MEASUREMENT_SIZE] = {0};
double P_H_T[STATE_SIZE][MEASUREMENT_SIZE] = {0};
double y[MEASUREMENT_SIZE] = {0};
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are all of these required? Or can some of them be reused. Your API is for embedded devices, we don't want to cause a stack overflow by allocating too much memory from 1 function call

double result{STATE_SIZE}[STATE_SIZE];
transponse_matrix(A, expected);
TEST_ASSERT_TRUE(compare_matrices(result, expected));
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This test doesn't make sense. Youre transposing A, putting the result into 'expected', but not doing anything with 'result'? I don't think this is actually testing the code

TEST_ASSERT_FLOAT_WITHIN(EPSILON, 1 + 0.5 * 1 * DT * DT, x[0]);
TEST_ASSERT_FLOAT_WITHIN(EPSILON, 1 + 0.5 * 2 * DT * DT, x[1]);
TEST_ASSERT_FLOAT_WITHIN(EPSILON, 1 + 0.5 * 3 * DT * DT, x[2]);
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You copy pasted the exact same test twice

TEST_ASSERT_FLOAT_WITHIN(EPSILON, expected_x[i], x[i]);
}

}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You need more test cases. You need to cover the edge cases and use non-standard input values. You should also be isolating diferent situations, for example a measurement with no y or z position. and only x position. Or a test with only velocity and 0,0,0 for position. etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants