-
矩阵快速求逆算法
// 矩阵求逆在3D程序中很常见,主要应用于求Billboard矩阵。按照定义的计算方法乘法运算,严重影响了性能。在需要大量Billboard矩阵运算时,矩阵求逆的优化能极大提高性能。这里要介绍的矩阵求逆算法称为全选主元高斯-约旦法。// // 高斯-约旦法(全选主元)求逆的步骤如下:// // 首先,对于 k 从 0 到 n - 1 作如下几步:// // 从第 k 行、第 k 列开始的右下角子阵中选取绝对值最大的元素,并记住次元素所在的行号和列号,在通过行交换和列交换将它交换到主元素位置上。这一步称为全选主元。// m(k, k) = 1 / m(k, k)// m(k, j) = m(k, j) * m(k, k),j = 0, 1, ..., n-1;j != k// m(i, j) = m(i, j) - m(i, k) * m(k, j),i, j = 0, 1, ..., n-1;i, j != k// m(i, k) = -m(i, k) * m(k, k),i = 0, 1, ..., n-1;i != k// 最后,根据在全选主元过程中所记录的行、列交换的信息进行恢复,恢复的原则如下:在全选主元过程中,先交换的行(列)后进行恢复;原来的行(列)交换用列(行)交换来恢复。// // 实现(4阶矩阵)
- 2022-02-20 01:24:12下载
- 积分:1
-
Freescale_image_capture_host_computer_program
我自己写的一个程序,能够显示“飞思卡尔”智能车通过串口传送回来的图像,支持设置图像大小等功能。(I wrote a program, it will show " Freescale" smart car through the serial port to send back images to support functions such as image size settings.)
- 2009-09-26 18:24:11下载
- 积分:1
-
AACDecTest
描述如何将AAC转换成PCM文件,很实用,也很基础,所以分享(it is a process about how to convert a aac file to a pcm file. it is my codes.)
- 2011-11-04 13:00:02下载
- 积分:1
-
划痕canny
说明: 可以用于图像的canny滤波处理,直接输入图像,可以保存下来处理后的canny图像(It can be used for canny filtering of images, directly inputting images, and preserving processed canny images.)
- 2019-05-21 17:17:57下载
- 积分:1
-
iecariants-strategy-best
埃特金等距插值,geidingn个等距节点的函数值及精度要求,很好(Aitken equidistant interpolation, geidingn equidistant node function value and precision requirement, is very good)
- 2017-07-22 23:57:33下载
- 积分:1
-
按键 步进电机
步进电机是将电脉冲信号转变为角位移或线位移的开环控制电机,是现代数字程序控制系统中的主要执行元件,应用极为广泛。。在非超载的情况下,电机的转速、停止的位置只取决于脉冲信号的频率和脉冲数,而不受负载变化的影响,当步进驱动器接收到一个脉冲信号,它就驱动步进电机按设定的方向转动一个固定的角度,称为“步距角”,它的旋转是以固定的角度一步一步运行的。可以通过控制脉冲个数来控制角位移量,从而达到准确定位的目的;同时可以通过控制脉冲频率来控制电机转动的速度和加速度,从而达到调速的目的。(Stepper motor is an open loop control motor which transforms electrical pulse signal into angular displacement or linear displacement. It is the main executive element in modern digital control system, and is widely applied. In the case of non overloaded, the motor speed and stop position depends only on the pulse frequency and pulse number, regardless of load changes, when the stepper driver receives a pulse signal, it drives stepper motor to set the direction of rotation of a fixed angle, called "step", it is the rotation of the fixed point of the operation step by step. We can control the angular displacement by controlling the number of pulses, so as to achieve the goal of accurate positioning. At the same time, we can control the speed and acceleration of motor rotation by controlling the pulse frequency, so as to achieve the purpose of speed regulation.)
- 2018-01-29 13:24:17下载
- 积分:1
-
wenlitezheng_tuxiangshibie
纹理特征的图像分类识别,个人感觉还不错,做作业时候用上了(Texture image classification and recognition, personal feeling pretty good, spend the time doing homework)
- 2010-12-15 14:44:40下载
- 积分:1
-
MS Dos 6.0 源代码完整的 rar
MS Dos 6.0 源代码完整的 rar
卷-11.6 mb
所有系统程序 andutils
包含 QBASIC 源
用于编译和部分编译后的代码的工具
dos shell 包括
外部命令源
驱动程序源
已编译的对象文件
所有资源和原始文档
开发人员有用的意见和提示
使全部和部分编译的文件
等等
- 2022-01-22 11:37:06下载
- 积分:1
-
MuEditorS16
说明: MuEditorS16目前支持到S16后续将继续更新(MuEditorS16Will continue to support S16 updates until now)
- 2021-02-05 00:29:57下载
- 积分:1
-
linux_socket
linux sokcet程序,简单实现了客户端和服务器端的通讯过程(linux sokcet procedures, simple implementation of the client and server communication process)
- 2010-06-10 16:16:34下载
- 积分:1