-
n阶方阵的克劳特(crout)分解matlab实现
应用背景n阶方阵的克劳特(crout)分解matlab实现关键技术在矩阵分析课上学习了n阶方阵的三角分解或叫克劳特(crout)分解,便尝试着用MATLAB编程实现。给一个例子如下:
原矩阵a=[2 1 -5 1;1 -3 0 -6;0 2 -1 2;1 4 -7 6]
执行 [l,u]=crout(a);
分解后得:
l=[2 0 0 0;1 -3.5 0 0;0 2 0.4286 0;1 3.5 -2 -9]
u=[1 0.2 2.5 0.5;0 1 -0.7143 1.8571;0 0 1 -4;0 0 0 1]
- 2022-03-20 07:06:32下载
- 积分:1
-
这个是用delphi写的一些常用的数学公式,包括一些高级数学公式,图像编程等源代码。...
这个是用delphi写的一些常用的数学公式,包括一些高级数学公式,图像编程等源代码。-this is delphi write some common mathematical formula, including some advanced mathematical formulas, images and other programming source code.
- 2022-10-02 22:10:04下载
- 积分:1
-
关于XBBH用C编写的代码
关于XBBH用C编写的代码-XBBH spent on the preparation of the C code
- 2022-01-31 01:50:14下载
- 积分:1
-
dxf 读取
应用背景Build Instructions:
Make sure you have autoconf, swig, texinfo, python-dev, build-essential packages
or equivalent installed via your package manager.
cd libredwg
./autogen.sh && ./configure && make && sudo make install
cd ../dxflib
./configure && make && sudo make install
cd ..
Once the above dependencies have been built, edit /usr/local/include/dwg.h,
and rename the THICKNESS constant (or add _ to end). It conflicts with another
constant included in the converter, but is not used itself. After that, just
run "make".
That"s it!
关键技术GNU LibreDWG 是一个免费开源的 C 库用来处理 DWG 文件,这
- 2022-12-18 16:30:03下载
- 积分:1
-
最大匹配算法
这个资料室详细讲述最大匹配算法的一片论文很有参考价值,各位做匹配算法的同学可以下载阅读,感觉还是不错的了
- 2022-05-29 03:11:49下载
- 积分:1
-
计算光子晶体能带的程序,用fortran语言编写!好用!
计算光子晶体能带的程序,用fortran语言编写!好用!-photonic crystals can be calculated with the procedure, using FORTRAN language! Easy!
- 2022-01-27 20:14:45下载
- 积分:1
-
排序算法
不同的算法使用的排序算法。我们已经介绍了更有趣的算法是: 插入排序、 归并排序、 快速排序、 堆排序
- 2022-02-03 04:19:56下载
- 积分:1
-
this is a FFT algorith using by matlab code
this a FFT algorith using by matlab code-this is a FFT algorith using by matlab code
- 2023-03-25 16:05:03下载
- 积分:1
-
关于id3算法的实现
加深数据挖掘中分类(决策树)的认识,其经典算法为Id3算法,了解影响Id3算法性能的因素,掌握基于Id3算法理论的分类分析的原理和方法。并亲手实现id3算法。 并有详尽的报告文档帮助使用者了解id3的原理以及实现方法。
- 2022-03-29 04:16:38下载
- 积分:1
-
多维度的K-mean均值聚类算法
1、运行前设置args[]参数为文件名2、采用欧氏距离作为度量3、支持多维度的点聚类4、导入工程,设好参数即可运行。5、作者原创。欢迎交流。
- 2022-03-02 03:23:52下载
- 积分:1