mirror of
https://github.com/MillironX/beefblup.git
synced 2024-11-10 18:23:08 +00:00
10 lines
No EOL
212 B
Matlab
10 lines
No EOL
212 B
Matlab
% 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 |