代码搜索:测温精度

找到约 2,905 项符合「测温精度」的源代码

代码结果 2,905
www.eeworm.com/read/345494/11812634

m ex0506.m

%例5-6 浮点数的精度 format long eps(5) eps(50) eps(single(5))
www.eeworm.com/read/345494/11812644

m ex0508.m

%例5-8 无穷量和非数值量 x=1/0 y=exp(1000) z=log(0) v=Inf a=0/0 b=NaN c=NaN('single') %创建单精度浮点类型的非数值量 m=7i/0 a==b
www.eeworm.com/read/341680/12073261

m examp3_33.m

f=inline('cos(15*x)','x'); tic, S=quadl(f,0,3*pi/2,1e-15), toc S1=quad(f,0,3*pi/2) % 采用默认精度 S1=quad(f,0,3*pi/2,1e-15)
www.eeworm.com/read/232055/14209808

m examp3_33.m

f=inline('cos(15*x)','x'); tic, S=quadl(f,0,3*pi/2,1e-15), toc S1=quad(f,0,3*pi/2) % 采用默认精度 S1=quad(f,0,3*pi/2,1e-15)
www.eeworm.com/read/219349/14887011

m examp3_33.m

f=inline('cos(15*x)','x'); tic, S=quadl(f,0,3*pi/2,1e-15), toc S1=quad(f,0,3*pi/2) % 采用默认精度 S1=quad(f,0,3*pi/2,1e-15)
www.eeworm.com/read/230427/14289507

txt 新建 文本文档.txt

大家好,我是易北; 这是用C8051F020控制的测温程序 ad采集,感觉还好 是芯片内部的温度 注意,我用的C8051F020板没有显示和按键 因此自己做了一块接口板 通过串口通讯 谢谢支持 qq:6036725
www.eeworm.com/read/169320/9866990

sql 自定义数据类型精度.sql

/*--修改自定义数据类型精度的示例 假设要修改的自定义变量名为aa --*/ --1.修改自定义变量类型的名称 exec sp_rename 'aa','aa_bak','USERDATATYPE' go --2.新增自定义变量(按新的精度) EXEC sp_addtype N'aa', N'numeric(20,2)', N'not null' go -
www.eeworm.com/read/279550/10421402

txt pku 1046 高精度乘法+循环数.txt

#include #include #include #include using namespace std; //PKU 1046 //高精度乘法+循环数 #define NMAX 100 void mullow(int a[],int b,int ans[]) { int i,len
www.eeworm.com/read/279550/10421406

txt pku 2506 高精度加乘+递推.txt

#include #include #include #include using namespace std; //PKU 2506 高精度加乘+递推 #define NMAX 260 #define MMAX 150 int f[NMAX][MMAX]; void mullow(i