Function implementation for monotony check
显示 更早的评论
Is there a build-in MATLAB function (way) that calculates one function implementation monotony against a true (correct, golden, reference) implementation ?
One way I’m thinking, is to check if the actual function and the reference have the same behavior on two successive inputs.
(successive as stepping; -+eps, next float, or with different granularity)
Consider 2 function implementation one to be measured and one reference:
f(x), f(x+1) and ref(x), ref(x+1)
Monotony in an strict way may be
Count inconsistencies or errors as
- ref(x) > ref(x+1) not implies f(x) > f(x+1)
- ref(x) < ref(x+1) not implies f(x) < f(x+1)
- ref(x) == ref(x+1) not implies f(x) == f(x+1)
Monotony relaxed
- ref(x) >= ref(x+1) not implies f(x) >= f(x+1)
- ref(x) <= ref(x+1) not implies f(x) <= f(x+1)
over some interval.
Example
x=1;
stp=1;
err_strict = (ref(x) > ref(x+stp)) == (f(x) > f(x+stp)) | ...
(ref(x) < ref(x+stp)) == (f(x) < f(x+stp)) | ...
(ref(x) == ref(x+stp)) == (f(x) == f(x+stp));
err_relaxed = (ref(x) >= ref(x+stp)) == (f(x) >= f(x+stp)) | ...
(ref(x) <= ref(x+stp)) == (f(x) <= f(x+stp));
disp(err_strict)
disp(err_relaxed)
function [y] = ref(x)
y = x+1;
end
function [y] = f(x)
y = single(x)+1;
end
---
回答(1 个)
Andrey Kiselnikov
2019-8-26
编辑:Andrey Kiselnikov
2019-8-26
Hi, the solution was provided here https://www.mathworks.com/matlabcentral/answers/373152-how-to-check-monotonity-of-a-vector
You can add the additional functionality to this code to perform your tasks.
a = 1:10;
isIncreasing = all(diff(a)) %or all(diff(a)>=0) if you want to allow 0 difference
2 个评论
Firan Lucian
2019-8-26
Andrey Kiselnikov
2019-8-26
编辑:Andrey Kiselnikov
2019-8-26
MATLAB is a good tool for working with big data arrays. Moreover, it designed to perform matrix operations. So I can't recommend using iteration, because it can be really slow in interpreted languages (can be speeded up by JIT compilation). Also, MATLAB has special tall arrays that do not fit system memory.
类别
在 帮助中心 和 File Exchange 中查找有关 Model Import 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!