Relative different

Hi there,
I am a MATLAB newbie, I'm trying to compute relative difference between two sets of data for example [x1,y1] and [x2,y2]
[x1,y1] and [x2,y2] are one column arrays with 106 rows.
I can't make up my mind on which function to use.
i have tried; fittting = 100 * (1-norm(capacitance1)/norm(capac))
percent_error=100*abs(capac-capacitance1)./capac;
per_error = abs(( (capac - capacitance1) ./ capacitance1 ) * 100) % This computes the percentage error of each element/each row.
errperf(capacitance1,capac,'pe') ;
Is there a MATLAB function that produces one value that identifies the relative difference/percentage error of two set of files? Help!
Thank you in advance Thank you in advance

답변 (1개)

Nirmal
Nirmal 2012년 6월 12일

0 개 추천

Why dont you use norm ([x1,y1]-[x2,y2]).
if you want relative difference you can use norm([x1,y1]-[x2,y2])/norm([x1,y1])

카테고리

도움말 센터File Exchange에서 Environment and Settings에 대해 자세히 알아보기

질문:

2012년 6월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by