搜索结果
找到约 200 项符合
Double-linked 的查询结果
数学计算 Two functions, num2bin and bin2num are provided. num2bin takes a double and converts it to a binary
Two functions, num2bin and bin2num are provided. num2bin takes a double and converts it to a binary string representation. bin2num is its inverse operation. It can be used in a numerical analysis course when floating point arithmetic is discussed.
数学计算 double pow(double,double) 省去了libm的麻烦。可以自由使用
double pow(double,double)
省去了libm的麻烦。可以自由使用
嵌入式/单片机编程 1、链接存储方法 链接方式存储的线性表简称为链表(Linked List)。 链表的具体存储表示为: ① 用一组任意的存储单元来存放线性表的结点(这组存储单元既可以是连续的
1、链接存储方法
链接方式存储的线性表简称为链表(Linked List)。
链表的具体存储表示为:
① 用一组任意的存储单元来存放线性表的结点(这组存储单元既可以是连续的,也可以是不连续的)
② 链表中结点的逻辑次序和物理次序不一定相同。为了能正确表示结点间的逻辑关系,在存储每个结点值的同时,还必须存 ...
书籍源码 Template functions for serializing arbitrary linked nodes. 串行化连接节点的模板函数(源码)(25KB)
Template functions for serializing arbitrary linked nodes.
串行化连接节点的模板函数(源码)(25KB)
其他 for double color balls, it can help you make the list with high p
for double color balls, it can help you make the list with high p
行业发展研究 Double Sided Watermark Embedding and Detection with Perceptual Analysis (关于watermark的2007年最新外文资料)
Double Sided Watermark Embedding and
Detection with Perceptual Analysis
(关于watermark的2007年最新外文资料)
数学计算 一、 一元三次回归方程 CubicMultinomialRegress.cs 方程模型为Y=a*X(3)+b*X(2)+c*X(1)+d public override double[] buil
一、 一元三次回归方程 CubicMultinomialRegress.cs
方程模型为Y=a*X(3)+b*X(2)+c*X(1)+d
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是d,c,b,a。
以后所述所有模型的系数存放均与此相同(多元线性回归方程除外)。
public override double forecast(double x) ...
数学计算 指数回归方程 ExponentRegress.cs 方程模型为 public override double[] buildFormula() 得到系数数组
指数回归方程 ExponentRegress.cs
方程模型为
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double forecast(double x)
预测函数,根据模型得到预测结果。
public override double computeR2()
计算相关系数(决定系数),系数越接近1 ...
数学计算 对数回归方程 LogarithmRegress.cs 方程模型为 Y=a*LnX+b public override double[] buildFormula() 得到系数数组
对数回归方程 LogarithmRegress.cs
方程模型为 Y=a*LnX+b
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double forecast(double x)
预测函数,根据模型得到预测结果。
public override double computeR2()
计算相关系数(决定系数), ...
数学计算 本题的算法中涉及的三个函数: double bbp(int n,int k,int l) 其中n为十六进制位第n位
本题的算法中涉及的三个函数:
double bbp(int n,int k,int l) 其中n为十六进制位第n位,k取值范围为0到n+7,用来计算16nS1,16nS2,16nS3,16nS4小数部分的每一项。返回每一项的小数部分。
void pi(int m,int n,int p[]) 计算从n位开始的连续m位的十六进制数字。其中p为存储十六进制数字的数组。
void div(int p[])
void a ...