-
Notifications
You must be signed in to change notification settings - Fork 0
/
binslin.m
36 lines (31 loc) · 1.17 KB
/
binslin.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
% Varargin elements can be
% mode (equalN or equalX) equal number of elements in each bin or equal
% spacing.
% binBounds (vector of bin boundries)
%
function [sorted sortedBy binBounds]=binslin(sortBy, toSort, sortMode, binBounds)
if isempty(sortBy) | isempty(toSort)
sorted={[]};
sortedBy={[]};
binBounds={[]};
disp('Empty input');
else
if length(binBounds)==1
if strcmp(sortMode,'equalX');
binBounds=linspace(min(sortBy),max(sortBy),binBounds);
elseif strcmp(sortMode,'equalN')
tmp=sort(sortBy); % arrange the data for equalN indexing
tmp=tmp(1:sum(isnan(tmp(:))==0)); %remove the NaNs (assumes there is at least 1 non NaN in the input)
binBounds=round(0:(length(tmp)/binBounds):length(tmp));
binBounds(1:end-1)=binBounds(1:end-1)+1;
binBounds=tmp(binBounds)';
else
end
end
sorted=cell(length(binBounds)-1,1);
sortedBy=cell(length(binBounds)-1,1);
for i=1:length(binBounds)-1
sorted{i}=toSort(sortBy>binBounds(i) & sortBy<=binBounds(i+1));
sortedBy{i}=sortBy(sortBy>binBounds(i) & sortBy<=binBounds(i+1));
end
end