代码搜索:精度可调

找到约 3,652 项符合「精度可调」的源代码

代码结果 3,652
www.eeworm.com/read/432934/8562254

m stucture_while.m

% stucture_while.m % while循环结构示例 % 求浮点数eps的精度 EPS=1; num=0; while(1+EPS)>1 EPS = EPS/2; num=num+1; end disp('eps的数值(浮点数的精度)为:') num EPS=EPS*2
www.eeworm.com/read/382937/8989802

txt read.txt

表名 :tblIPAddress 表结构:ip1   数字   双精度型   地址端1     ip2   数字   双精度型   地址段2     country 文本          所属国家     city   文本          所属地方 * ip地址数据由《追捕》提供。
www.eeworm.com/read/443325/7634584

m stucture_while.m

% stucture_while.m % while循环结构示例 % 求浮点数eps的精度 EPS=1; num=0; while(1+EPS)>1 EPS = EPS/2; num=num+1; end disp('eps的数值(浮点数的精度)为:') num EPS=EPS*2
www.eeworm.com/read/199464/7849671

txt realnumbertype.txt

实数类型数据即实型数据,在C语言中实型数据又称为浮点型数据.Turbo C的实型数据又分为单精度型 (float)和双精度型(double)两种. 在C语言中实型数据有两种表达形式: 1.十进制数形式,由数字和小数点组成.如5.734,0.273. 2.指数形式,如546E+3或546E3