bin2pol.m
上传用户:m_sun_001
上传日期:2014-07-30
资源大小:1115k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. function y = bin2pol(x)
  2. % bin2pol
  3. % Converts binary numbers (0,1) to polar numbers (-1,1)
  4. % Accepts a 1-D array of binary numbers
  5. y = ones(1,length(x));
  6. for i = 1:length(x)
  7. if x(i) == 0
  8. y(i) = -1;
  9. end
  10. end