mirror of
https://github.com/MillironX/beefblup.git
synced 2024-11-10 18:23:08 +00:00
10 lines
212 B
Mathematica
10 lines
212 B
Mathematica
|
% uniquenan
|
||
|
% Serves the same purpose as UNIQUE, but ensures any NaN fields are not
|
||
|
% counted
|
||
|
function y = uniquenan(x)
|
||
|
y = unique(x);
|
||
|
if any(isnan(y))
|
||
|
y(isnan(y)) = [];
|
||
|
y(end + 1) = NaN;
|
||
|
end
|
||
|
end
|