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

波变换

开发平台:

Matlab

  1. function R = isequal(A,B)
  2. %ISEQUAL Laurent polynomials equality test.
  3. %
  4. %   ISEQUAL(A,B) returns 1 if the two Laurent polynomials 
  5. %   A and B are equal and 0 otherwise.
  6. % Copyright 2004 The MathWorks, Inc.
  7. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 11-Jun-2003.
  8. %   Last Revision 11-Jun-2003.
  9. R = eq(A,B);