MatrixBerryCore
CompareRedirectAppliance.m
Go to the documentation of this file.
1 classdef CompareRedirectAppliance<handle
2  methods
3  function varargout=unique(self,varargin)
4  self.verifyTrue(false,['tested functions should not ',...
5  'call ''unique'' function']);
6  varargout={};
7  end
8  function varargout=ismember(self,varargin)
9  self.verifyTrue(false,['tested functions should not ',...
10  'call ''ismember'' function']);
11  varargout={};
12  end
13  end
14  %
15 end
function unique(in inpVec)
UNIQUE for arrays of any type.
function ismember(in leftVec, in rightVec, in varargin)
ISMEMBER - ismember implementation for arrays of any type.