fpga_feixiang 发表于 2019-1-6 17:27:11

matlab中将小数转化为2进制数

function y=DEC2bin(a,N)
%简单的将10进制转化为N为2进制小数
m=10;
if nargin~=2
    error('You have toinput two arguments.')
end
if a<0 || N<0
    error('You have to input a positive number')
end
if a>=1
    error('You have to input a decimal for a')
end
if N~=fix(N)
    error('You have to input a integer for N')
end
for i= 1: N
    temp=a*2;
    y(i)=floor(temp);
    a=temp-floor(temp);
end
---------------------

Sunlife 发表于 2019-1-7 10:13:53

                      :)

zxopenljx 发表于 2025-3-16 17:40:50

matlab中将小数转化为2进制数
页: [1]
查看完整版本: matlab中将小数转化为2进制数