摘要:
Process——the most central concept in any operating system, an abstraction of a running program. 1,The Process Model In this model, all the runnable so 阅读全文
摘要:
线性模型实战——玩具样例(Toy Example) 对于已知真实模型的玩具样例(Toy Example),我们直接从指定的𝑤 = 1.477 , 𝑏 = 0.089 的真实模型中直接采样: y=1.477x+0.089 1、采样数据 data = []# 保存样本集的列表 for i in ra 阅读全文
摘要:
一、稀疏矩阵的类定义(使用三元组储存) struct MatrixTerm{ int row; int col; int value; MatrixTerm(int r=-1,int c=-1,int val=-1):row(r),col(c),value(val) { } }; class Mat 阅读全文