mirror of
https://github.com/MillironX/beefblup.git
synced 2024-11-10 18:23:08 +00:00
9 lines
No EOL
215 B
Matlab
9 lines
No EOL
215 B
Matlab
% uniquenan
|
|
% Serves the same purpose as UNIQUE, but ensures any empty cells are not
|
|
% counted
|
|
function y = uniquecell(x)
|
|
y = unique(x);
|
|
if any(cellfun(@isempty, y))
|
|
y(cellfun(@isempty, y)) = [];
|
|
end
|
|
end |