Calculate percentage difference between two variables

I want to calculate percentage difference between measured and calculated variables along the time axis. Both measured and preducted variables are arrays of different size. I want to calculate the percentage error for the corresponding time.

3 Kommentare

Torsten
Torsten am 6 Aug. 2019
Bearbeitet: Torsten am 6 Aug. 2019
percentage_error = abs(1-predicted/measured) * 100 ?
Or
100 * ( predicted - measured ) / measured
?
Muzammil Ali
Muzammil Ali am 6 Aug. 2019
Bearbeitet: Muzammil Ali am 6 Aug. 2019
Thank you for your answer. Yes, this is what I want but it will not work as size of the array predicted is different from size of array measured. And hence predicted(xx) is not at the same time as measured(xx).

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Luna
Luna am 6 Aug. 2019
Bearbeitet: Luna am 6 Aug. 2019

0 Stimmen

You should resample one array's elements according to other array's time.
Check the below function for this:
After resampling your 2 arrays will be the same size. You can substract.

Weitere Antworten (0)

Kategorien

Mehr zu Matrices and Arrays finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 6 Aug. 2019

Bearbeitet:

am 6 Aug. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by