问题描述今日碰到一道差分方程的题目,如下 [y(n + 2) - cfrac{7}{10}y(n + 1) + cfrac{1}{10}y(n) = 7x(n+2) -2 x(n + 1)] 已知(x(n) = left(cfrac{1}{2}right)^n u(n) , y(0) = 2, y(... ...
分类:
其他好文 时间:
2020-02-28 12:10:13
阅读次数:
43
我喜欢的: 1. Gnome系用户,按 ,屏幕右上角有红点出现,开始录屏,结束的话再按一次 ,录好的视频在 ~/Videos下 2. ffmpeg 更多细节看 https://trac.ffmpeg.org/wiki/Capture/Desktop Linux ...
分类:
系统相关 时间:
2020-02-28 01:09:18
阅读次数:
94
当合约需要和区块链上的其他合约交互的时候: 需要先定义一个interface(接口) 定义: contract Number{ function getNum(address _myAddress) public view returns (uint); } 这里虽然看着像一个合约并且内部定义了一个 ...
分类:
其他好文 时间:
2020-02-28 00:55:58
阅读次数:
50
mysql 是RDBMS(关系型数据库) 其他: redis 一般做缓存用 mangoDB 一般做爬虫用 国内镜像下载地址: http://mirrors.sohu.com/mysql/MySQL-8.0/ Windows安装过程: 一、运行下载后的安装包 (备注:默认路径最好修改,我后面修改为了D ...
分类:
数据库 时间:
2020-02-27 23:36:54
阅读次数:
142
#A.Find the twins # 题意 找出每个序列是否有特定的值 # 题解 坑,原始序列输出的时候每一行最后一个不能有空格 1 #include<bits/stdc++.h> 2 #define ll long long 3 using namespace std; 4 const int ...
分类:
其他好文 时间:
2020-02-27 20:48:43
阅读次数:
67
https://blog.csdn.net/ziwen00/article/details/6662716 可以使用DataBase Configuration Assistant来创建一个心得数据库。Database Configuration Assistant简称是DBCA,是创建、配置以及管 ...
分类:
数据库 时间:
2020-02-27 20:46:52
阅读次数:
292
springBoot1.x升级到springBoot2.x,出现默认的mysql驱动包版本的问题,需要修改jdbc驱动类和连接字符串 ...
分类:
数据库 时间:
2020-02-27 18:55:50
阅读次数:
75
There are six items related to the needleless endovascular catheter system mentioned in the 2017 CDC / HICPAC Intravascular Catheter Related Infection ...
分类:
其他好文 时间:
2020-02-27 13:29:16
阅读次数:
85
1.3 齐次方程 $n$ 次齐次函数: $f(x,y)$ 如:$x^2 3xy$ 为二次齐次函数,$x^3 3x^2y+y^3$ 为三次齐次函数。 齐次微分方程:$M(x,y)dx+N(x,y)dy=0$ 其中,$M(x,y)\,N(x,y)$ 是同次齐次函数。 例:$\frac{dy}{dx}=\ ...
分类:
其他好文 时间:
2020-02-27 13:23:58
阅读次数:
85
随机生成函数: import random //首先要引用random模板 print(random.randint(0,9)) //random的语法 random.randint(0,9) 0~9是一个范围 ...
分类:
编程语言 时间:
2020-02-26 19:17:56
阅读次数:
73