mirror of
https://github.com/eddyem/IR-controller.git
synced 2025-12-06 02:35:14 +03:00
9 lines
152 B
Matlab
9 lines
152 B
Matlab
function e = rel_error(x)
|
|
%
|
|
% returns relative error for data x in percents!
|
|
% e = std(x) ./ mean(x) * 100.
|
|
|
|
e = std(x) ./ mean(x) * 100.;
|
|
|
|
endfunction
|