代码搜索:精度

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

代码结果 2,443
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/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