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

matlab例程

开发平台:

Matlab

  1. function y = bin2eight(x)
  2. % bin2eight
  3. % Converts binary data to an eight bit form
  4. % Accepts 1x8 array and returns the corresponding decimal
  5. y = 0;
  6. k = 0;
  7. for i = 1:8
  8. y = y + x(8-k)*2^k;
  9. k = k+1;
  10. end