The S -transform with windows of arbitraryand varying shape 想画如上的三张图,可是问题 (1)滤波窗口的平滑实现 The filter (applied to the full 200£400 S-transform matrix)is c ...
分类:
其他好文 时间:
2018-05-25 19:35:23
阅读次数:
235
#liner import numpy as np from scipy import linalg as lg arr=np.array([[1,1],[0,1]]) matr=np.mat('[1,2;0,2]') print ("matrix:",matr)#matrix: [[1 2],[0... ...
分类:
其他好文 时间:
2018-05-25 16:07:35
阅读次数:
153
main Matrix.h Matrix.cpp 期中考试 main user。h user。cpp main book.h book.cpp ...
分类:
其他好文 时间:
2018-05-23 23:38:43
阅读次数:
278
EX3 6-17 6-18 matrix.h matrix.cpp main.cpp ...
分类:
其他好文 时间:
2018-05-23 23:37:05
阅读次数:
220
1.补全ex3 6.17 修改 6.18 修改 3. 实现一个动态矩阵类 Matrix matrix.h matrix.cpp main.cpp 期中考试 1.已提交 2.用户管理 User.h User.cpp main.cpp 3.图书入库 book.h book.cpp main.cpp 体会 ...
分类:
其他好文 时间:
2018-05-23 23:34:38
阅读次数:
210
2. 6-17的修改 3. 6-18的修改 4.动态矩阵类Matrix 期中考试:https://www.cnblogs.com/tensheep/p/9079345.html 实验总结与体会: 书上有关vector模板的介绍还是太少了 我找了一些概括了vector模板的用法的CSDN博客 实验是大 ...
分类:
编程语言 时间:
2018-05-23 22:17:41
阅读次数:
227
1. 运行截图: 2. 6-17 运行截图: 6-18: 截图: 注:这个例子中,如果不释放内存,程序仍然会运行出正确结果,那么不释放内存能带来哪些坏处呢?使用new分配内存,不加以释放,会导致动态分配的内存无法回收,使得程序占据的内存越来越大。我想,这需要反汇编才能看出不同。 3.Matrix.h ...
分类:
编程语言 时间:
2018-05-23 22:14:03
阅读次数:
264
#include using namespace std; #define Max 3 #define mod 10000 int m; //m阶矩阵 struct Matrix { int m[Max][Max]; }; Matrix Mul(Matrix a,Matrix b) { Matrix... ...
分类:
其他好文 时间:
2018-05-23 22:10:23
阅读次数:
113
书6-17、6-18 Matrix 期中考试 ...
分类:
编程语言 时间:
2018-05-23 18:12:49
阅读次数:
215