
Created with Blender.
x = [
11 22 33
44 55 66
11 11 11
33 99 33
11 77 23]
% engine;
locrow = @(A,x,tol)find(sum(abs(bsxfun(@minus,A,x)),2) <= tol)
% usage;
tol = 0.01
locrow(A,[11.0001, 11.0001, 10.9999], tol)
for k = 2:length(x)
if x(k) == 0
x(k) = x(k-1);
end
end
y = find(x);
x1 = x(y(cumsum(x ~= 0)));
n = 50000;
r = rand(n,1);
d = linspace(1,0,300);
idx = nan(n,1);
for k = 1:n
idx(k) = find(r(k) > d, 1, 'first');
end
[dump,idx] = histc(r,d(end:-1:1));
idx = length(d)-idx+1;
[1 2 3 4 5 10 11 17 18 19]
[1 2 3 4 5]
[10 11]
[17 18 19]
mat2cell(x,1,diff([0,find(diff(x) ~= 1),length(x)]))
% if not care about precisely 5 number block;
strfind(diff(x), [1 1 1 1])
% if has to be 5 consecutive number;
strfind(diff(x) == 1,[0 1 1 1 1 0])+1