1.代码 %%列主元消去法 function ECPE = Elimination_of_column_pivot_entries(M,b) global n; [n,n] = size(M); B =[M,b]; R_A = rank(M);R_B = rank(B); if R_A ~= R_B ...
分类:
其他好文 时间:
2019-12-30 14:43:37
阅读次数:
95
1.代码 %%LU分解法 function LUDM = LU_Decomposition_method(A,b) global n;global B;global U;global L;global M; [n,n] = size(A); B = [A,b]; R_A = rank(A);R_B ...
分类:
其他好文 时间:
2019-12-30 14:38:05
阅读次数:
68
曲名:Fake 作者:The Tech Thieves 1 [01;12.092]I got wasted,learning how to let it out 2 [01;24.009]Please don't fake it,fake it,fake 3 [00:23.110]Please do ...
分类:
其他好文 时间:
2019-12-29 18:30:11
阅读次数:
724
window 用doxygen生成文档介绍: https://cedar-renjun.github.io/2014/03/21/learn-doxygen-in-10-minutes/ linux 用doxygen生成文档介绍: https://www.ibm.com/developerworks ...
分类:
其他好文 时间:
2019-12-29 16:39:36
阅读次数:
71
Petal software is a kind of Sketchpad software for learning to draw. The sketchpad app supports rich functions and powerful performance. Various brush ...
分类:
其他好文 时间:
2019-12-29 00:56:54
阅读次数:
76
所有的代码在 https://github.com/xsren/learning_record/tree/master/grpc,欢迎star。 一、先了解几个概念 RPC RPC(Remote Procedure Call)—远程过程调用,它是一种通过网络从远程计算机程序上请求服务,而不需要了解底 ...
分类:
编程语言 时间:
2019-12-28 19:30:46
阅读次数:
228
20192428 获奖感想与网络空间安全专业导论总结 一、 获奖感想 在得到同学们口中传说的“ 强者の小黄衫 ”之后,我非常激动,也十分紧张。首先我想要感谢娄老师和谢老师两位老师对我的指导,小黄衫证明了我一个学期以来的付出和进步,在今后的学习中,我会更努力的完成学习任务,同时在“Learning B ...
分类:
其他好文 时间:
2019-12-28 19:24:12
阅读次数:
152
COMP222 - 2019 - Second CA AssignmentIndividual courseworkTrain Deep Learning AgentsAssessment InformationAssignment Number 2 (of 2)Weighting 10%Assig ...
分类:
其他好文 时间:
2019-12-28 19:10:51
阅读次数:
116
实现纸牌游戏的随机抽牌洗牌过程(item系列几个内置方法的实例) 1、namedtuple:命名元组,可以创建一个没有方法只有属性的类 from collections import namedtuple card = namedtuple('card',['rank','suit']) # ran ...
分类:
其他好文 时间:
2019-12-28 00:01:43
阅读次数:
126
前言 前面的文章中介绍了决策树以及其它一些算法,但是,会发现,有时候使用使用这些算法并不能达到特别好的效果。于是乎就有了 (Ensemble Learning),通过构建多个学习器一起结合来完成具体的学习任务。这篇文章将介绍集成学习,以及其中的一种算法 AdaBoost。 集成学习 首先先来介绍下什 ...
分类:
其他好文 时间:
2019-12-27 23:58:53
阅读次数:
177