function y=DEC2bin(a,N)
%简单的将10进制转化为N为2进制小数
m=10;
if nargin~=2
error('You have to input 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
---------------------