Absolute error between each parameter of the ground truth and estimated planes?

1 vue (au cours des 30 derniers jours)
So I have a plane on the xy axis made by meshgrid(x,y). I got estimate parameter by
A = [x, y, ones(size(z))];
parameter_estimate = A\z;
So howdo i find the absolute error, is there a function I can use?

Réponses (1)

Mahesh Taparia
Mahesh Taparia le 16 Mar 2020
Hi
You can find the absolute error between ground truth and estimated plane by taking the absolute value of their difference using 'abs' function. For example, consider the below command:
absoluteError=abs(parameter_estimate-groundTruth)

Catégories

En savoir plus sur Image Filtering and Enhancement dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by