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

波变换

开发平台:

Matlab

  1. function M = minus(A,B)
  2. %MINUS Laurent matrices substraction.
  3. %   M = MINUS(A,B) returns a Laurent matrix which is
  4. %   the difference of the two Laurent matrices A and B.
  5. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 29-Mar-2001.
  6. %   Last Revision 12-Jun-2003.
  7. %   Copyright 1995-2004 The MathWorks, Inc.
  8. %   $Revision: 1.1.6.2 $ $Date: 2004/04/13 00:39:17 $ 
  9. M = plus(A,-B);