Union of several arrays

Version 1.0.0.0 (1.14 KB) by Julia
Uses matlab union function recursively to create the union of several arrays
818 Downloads
Updated Fri, 24 Jul 2009 07:08:48 +0000

View License

function [varargout] = union_several (varargin)
% function [varargout] = union_several (varargin)
% varargout{1} is the union vector
% varargout{i>1} are the indices of the various varargin (in their order)

numarr = length(varargin);
union_arr = varargin{1};
for i=1:numarr
union_arr= union(union_arr,varargin{i});
end
varargout{1} = union_arr;
for i=1:numarr
[union_arr, temp,varargout{i+1}]= union(union_arr,varargin{i});
end

Cite As

Julia (2024). Union of several arrays (https://www.mathworks.com/matlabcentral/fileexchange/24834-union-of-several-arrays), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2008b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Matrices and Arrays in Help Center and MATLAB Answers
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0.0