-
著名的seismiclab的代码 是地震学研究人员必备的工具
著名的seismiclab的代码 是地震学研究人员必备的工具-famous seismiclab code seismic study is an essential tool for officers
- 2022-12-01 03:05:04下载
- 积分:1
-
ACM题目图算法,POJ的各种图形主题的详细描述…
acm标题图算法,POJ详细描述了各种图形主题图中使用的算法
- 2022-12-29 02:45:03下载
- 积分:1
-
Gauss column principle eliminate for bankdialog systems
Gauss column principle eliminate for bankdialog systems
- 2022-04-30 16:38:20下载
- 积分:1
-
波峰值频率
项目包括一个测试实施的Goertzel算法频率的认可。说明:给出的主导间距为给定的选择视觉逼近。你可以得到相当准确的读数清洁或中档合成的信号,但仍可能会遇到不准确的较低的低音频率或更复杂的信号。包括一个可调节的滚动条来估计一波剪辑的平均节奏。选择样本的足够数目(约2000至4000)。首选的.wav格式为16位,44100千赫,单声道/立体声。
- 2022-05-31 17:39:38下载
- 积分:1
-
matrix eigenvalue of the largest power France. For engineering calculation, Matr...
矩阵的最大特征值的幂法.
对于工程计算而言,矩阵的特征值和特征向量都是相当重要和常见的数据,这里给出的幂法是一种常见的求解方法,用的是迭代的思想。
符号说明:
1A为待求的矩阵,
2Uk,Vk为迭代用的列向量。
3最后的最大特征值maxLamda由最后一次的max(Uk)-----求Uk中的绝对值最大的元素的绝对值.所决定。
而maxLamda所对应的特征向量由最后一次迭代的Vk所决定.
主要的想法就是先选一个不为0的初始向量U0!=0,然后按下面的式子迭代。
-matrix eigenvalue of the largest power France. For engineering calculation, Matrix eigenvalues and eigenvectors are very important and common data, here is the power law is a common solution, using the iterative thinking. Symbol : 1A of the question for the matrix, 2Uk, Vk iteration of the column vector. The final three largest eigenvalue maxLamda from last max (uk Hoffmann for the uk the largest absolute value of the absolute value of the element. by decision. While maxLamda corresponding eigenvectors from the last iteration of Vk decision. The main idea was first choice not one of the initial vector 0 U0! = 0, then by the following formula iteration.
- 2022-12-15 11:10:03下载
- 积分:1
-
插值程序
给入控制信号,输入输出分辨率 进行放大,分辨率例如1024 768,系统时钟为最高频率的输入时钟,里面包括双线性,还有最近领域法,两种算法的选择是通过一个电平进行控制
- 2022-09-19 13:50:03下载
- 积分:1
-
雅可比迭代解线性方程组 这个也是计算方法中另一种 求解线性方程组的计算程序...
雅可比迭代解线性方程组 这个也是计算方法中另一种 求解线性方程组的计算程序-Jacobi iterative solution of linear equations This is a separate calculation method for solving linear equations of computational procedures
- 2022-03-22 12:52:53下载
- 积分:1
-
有限元的分析程序,对于初学有限元在结构中的应用很好用
有限元的分析程序,对于初学有限元在结构中的应用很好用-solution at eliment
- 2022-01-27 13:55:46下载
- 积分:1
-
圆的bresenham算法的实现
圆的bresenham算法的实现-round of the algorithm to achieve bresenham
- 2022-07-24 17:16:20下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1