wcommon.m
上传用户:haiyisale
上传日期:2013-01-09
资源大小:3246k
文件大小:1k
源码类别:

波变换

开发平台:

Matlab

  1. function [xind,yind] = wcommon(x,y)
  2. %WCOMMON Find common elements.
  3. %   For two vectors X and Y with integer components,
  4. %   [XI,YI] = WCOMMON(X,Y) returns two vectors
  5. %   with 0 and 1 components such that:
  6. %   XI(k) = 1 if X(k) belongs to Y otherwise XI(k) = 0 and 
  7. %   YI(j) = 1 if Y(j) belongs to X otherwise YI(j) = 0.
  8. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 01-May-96.
  9. %   Last Revision: 14-May-2003.
  10. %   Copyright 1995-2004 The MathWorks, Inc.
  11. % $Revision: 1.11.4.2 $
  12. xind = ismember(x,y);
  13. yind = ismember(y,x);