Piecewise evaluation of mean absolute error an plotting

Hello everybody,
I have two vectors, A and B. A represents the reference and B a noisy reconstruction.
I want to calculate the mean absolute error, MAE, in groups in a range of 20 units.
Then, I want to plot(A, MAE) using this piecewise evaluation.
How can I do this?
Joaquim

Réponses (1)

Matt J
Matt J le 4 Août 2017
Modifié(e) : Matt J le 4 Août 2017
Something like the following, I suppose,
MAE = conv(abs(A(:)-B(:)), ones(20,1)/20 ,'valid');
plot(MAE)

3 commentaires

I want to do plot(A,MAE) but MAE and A seem to have different lenghts
They should have different lengths. The number of length=20 sections of A and B is shorter than A and B.
You could try doing conv(...,'same') instead of 'valid'.

Connectez-vous pour commenter.

Catégories

En savoir plus sur MATLAB dans Centre d'aide et File Exchange

Question posée :

le 4 Août 2017

Commenté :

le 4 Août 2017

Community Treasure Hunt

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

Start Hunting!

Translated by