集成电路技术分享

 找回密码
 我要注册

QQ登录

只需一步,快速开始

搜索
查看: 1127|回复: 2

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

[复制链接]
fpga_feixiang 发表于 2019-1-6 17:27:11 | 显示全部楼层 |阅读模式
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
---------------------
Sunlife 发表于 2019-1-7 10:13:53 | 显示全部楼层
                     
zxopenljx 发表于 2025-3-16 17:40:50 | 显示全部楼层
matlab中将小数转化为2进制数
您需要登录后才可以回帖 登录 | 我要注册

本版积分规则

关闭

站长推荐上一条 /1 下一条

QQ|小黑屋|手机版|Archiver|fpga论坛|fpga设计论坛 ( 京ICP备20003123号-1 )

GMT+8, 2025-4-4 08:22 , Processed in 0.056240 second(s), 19 queries .

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表