Free Falling Body Kalman Filter Matlab

7 Ansichten (letzte 30 Tage)
HATIQAH ANIS
HATIQAH ANIS am 14 Jul. 2021
Kommentiert: HATIQAH ANIS am 19 Jul. 2021
I have this data. The table shows free falling body examples. I have to plot a graph for "True values" Position, x1, Estimates Position x1(k), and Measurement z(k). How can I plot this table in MATLAB?

Akzeptierte Antwort

Image Analyst
Image Analyst am 14 Jul. 2021
plot(t, x1True, 'b.-', 'LineWidth', 2);
plot(t, x1Estimate, 'r.-', 'LineWidth', 2);
ylabel('x1', 'FontSize', 18);
xlabel('t', 'FontSize', 18)
grid on;
legend('x1 True', 'x1 Estimate');
I'm not sure what you're calling Measurement z, but you'd use the plot() function like above.
  4 Kommentare
Image Analyst
Image Analyst am 19 Jul. 2021
I'd guess that the first graph was made by an entirely different program. Do you have that code? Why do you think yours should look the same?
HATIQAH ANIS
HATIQAH ANIS am 19 Jul. 2021
Its because the first graph is the exact graph for the question (data given in the table). I don't have the code for the question.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte


Version

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by