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

波变换

开发平台:

Matlab

  1. function R = reflect(M)
  2. %REFLECT Reflection for a Laurent matrix.
  3. %   R = REFLECT(M) returns the Laurent matrix R obtained by
  4. %   a reflection on the Laurent matrix M: R(z) = M(1/z).
  5. %   
  6. %   See also NEWVAR.
  7. %   M. Misiti, Y. Misiti, G. Oppenheim, J.M. Poggi 21-Jun-2003.
  8. %   Last Revision: 21-Jun-2003.
  9. %   Copyright 1995-2004 The MathWorks, Inc.
  10. %   $Revision: 1.1.6.1 $ $Date: 2004/03/15 22:37:53 $ 
  11. R = newvar(M,'1/z');