About 705,000 results
Open links in new tab
  1. setdiff - Difference of two sets of data - MATLAB - MathWorks

    This MATLAB function returns the data in A that is not in B, with no repetitions.

  2. setdiff - (Not Recommended) Set difference for dataset array ...

    This MATLAB function for dataset arrays A and B returns the set of observations that are in A but not B, with repetitions removed.

  3. Set Operations - MATLAB & Simulink - MathWorks

    In MATLAB ®, the sets can be arrays of numbers, dates, times, tables, timetables, or text data. Most set operations compare sets for exact equality, which can be problematic in the context of floating-point …

  4. setdiff - File Exchange - MATLAB Central - MathWorks

    Mar 4, 2009 · Set difference of two sets of positive integers (much faster than built-in setdiff)

  5. setdiff for two matrices - MATLAB Answers - MATLAB Central

    Mar 18, 2016 · Note that the above assumes that setdiff returns the same number of elements for each row. Otherwise, you'll have to get rid of the cell2mat call and keep the result as a cell array. Also, …

  6. setxor - Exclusive OR of two sets of data - MATLAB - MathWorks

    This MATLAB function returns the data of A and B that are not in their intersection (the symmetric difference), with no repetitions.

  7. diff - Differences and approximate derivatives - MATLAB

    Aug 9, 2025 · This MATLAB function calculates differences between adjacent elements of X.

  8. intersect - Intersection of two sets of data - MATLAB - MathWorks

    This MATLAB function returns the data common to both A and B, with no repetitions.

  9. setdiff - Set difference of fixed.Interval objects - MATLAB

    This MATLAB function returns a fixed.Interval object containing the values in fixed.Interval object A, but not in B.

  10. find the difference of two structure elements - MATLAB Answers

    Jul 23, 2015 · B = {TCdaq_files.name} ; Using the indices returned by setdiff you can select the elements from the original structure arrays returned by dir. Theme Copy [~,ia,ib] = setdiff (A,B) ; …