安装编译 git 时需要的包 yum install -y curl-devel expat-devel gettext-devel openssl-devel zlib-devel yum install -y gcc perl-ExtUtils-MakeMaker 删除已有的 git yum r ...
分类:
其他好文 时间:
2020-07-27 23:54:02
阅读次数:
84
Ubuntu 20.04 Install Guest Additions for VirtualBox时有报错: This system is currently not set up to build kernel modules.Please install the gcc make perl ...
分类:
系统相关 时间:
2020-07-26 23:00:43
阅读次数:
94
1、查找/var目录下属主为root,且属组为mail的所有文件find/var/-userroot-a-groupmail-ls2、查找/var目录下不属于root、lp、gdm的所有文件find/var/!(-userroot-o-userlp-o-usergdm)-ls或find/var/!-userroot-a!-userlp-a!-usergdm-ls3、查找/var目录下近一周内其内容
分类:
其他好文 时间:
2020-07-26 16:05:16
阅读次数:
97
仅适用于广工学生,其实同类型题型多找些题目做,直到完全明白如何解题基本考试就没啥问题了 B —字节,1字节8位 1MB=1024KB=1024B*1024=1048576B; 8bit=1Byte; 1024KB=1MB; 1024MB=1GB; 1024GB=1TB; 第二章进程 信号量 步骤 先 ...
分类:
其他好文 时间:
2020-07-26 15:50:12
阅读次数:
110
一、multiprocessing模块介绍 python中的多线程无法利用多核优势,如果想要充分地使用多核CPU的资源(os.cpu\_count\(\)查看),在python中大部分情况需要使用多进程。Python提供了multiprocessing。 multiprocessing模块用来开启子 ...
分类:
系统相关 时间:
2020-07-26 15:09:05
阅读次数:
97
1.北大老师的课程链接: mooc:https://www.icourse163.org/learn/PKU-1002525003?tid=1002695005#/learn/content b站:https://www.bilibili.com/video/BV1Ls411W7PB?from=se ...
分类:
编程语言 时间:
2020-07-26 01:15:17
阅读次数:
97
变量的定义 程序就是用来处理数据的,而变量就是用来存储数据的 很多人学习python,不知道从何学起。很多人学习python,掌握了基本语法过后,不知道在哪里寻找案例上手。很多已经做案例的人,却不知道如何去学习更加高深的知识。那么针对这三类人,我给大家提供一个好的学习平台,免费领取视频教程,电子书籍 ...
分类:
编程语言 时间:
2020-07-26 00:20:22
阅读次数:
104
(1) >> syms t x(t) y(t); uu=diff(sin(t))+3*sin(t); >> y1=diff(y);y2=diff(y,2);y3=diff(y,3);y4=diff(y,4);y5=diff(y,5); >> z1=dsolve(y5+5*y4+12*y3+16*y2 ...
分类:
其他好文 时间:
2020-07-25 09:32:53
阅读次数:
60
(1) >> t=0:0.12:1;y=t.^2*exp(-5*t).*sin(t); >> t1=0:0.02:1;y0=t1.^2.*exp(-5*t1).*sin(t1);y1=interp1(t,y,t1,'spline'); >> plot(t1,y1,':',t,y,'o',t1,y0) ...
分类:
其他好文 时间:
2020-07-25 09:19:21
阅读次数:
62
1 建立数学模型 1.3 包饺子 复习题二 假设饺子越大面皮越厚,并且成正比例关系,即 \[ \begin{align*} SH &= n(sh) \\ H &= a h \end{align*} \] 由此可以得到大饺子和小饺子的面皮面积满足 \[ S = \frac{n}{a}s \] 根据教材 ...
分类:
其他好文 时间:
2020-07-24 21:22:01
阅读次数:
125