搜索资源列表
bofeng
- 给出式子:y=ax^3+bx^2+cx+d.a,b,c,d是随机变量,可以根据不同的波形来计算波峰的值。-given formula : y = ax ^ 3 bx ^ 2 cx d.a, b, c, d, random variables that can be different waveform to calculate peak value.
hostcode
- 在windows2003下建CGI环境,将nictex.exe放在cgi-bin目录,并打开此目录的执行权限,即可测试。如在浏览器地址栏输入:http://....../cgi-bin/nictex.exe?\\blue \\large y=ax^2+bx+c 就可显示对应公式!-under construction in Windows2003 CGI environment, nictex.exe on cgi-bin directory, and open the Contents of
spgs
- 用途:用向量(稀疏存储)形式的Gauss-Seidel迭代解线性方程组Ax=b % 格式: x=spgs(A,b,x0,e,N),A为系数矩阵,b为右端向量,x返回解向量。 % x0为初值向量(默认原点),e为精度(默认1e-4),设置迭代次数上限以防发散(默 % 认500)。 -purposes : with Vector (sparse storage) form of Gauss - Seidel iterative solution of linear equations
Turkay_Tv
- The DirectShow TV tuning architecture is based on pre-defined frequency tables, and the TV Tuner filter (kstvtune.ax) has an internal list of frequency tables. Each frequency table contains a list of frequencies, and corresponds to the broadcast or c
gauss-C
- * 高斯列主元素消去法求解矩阵方程AX=B,其中A是N*N的矩阵,B是N*M矩阵 * 输入: n----方阵A的行数 * a----矩阵A * m----矩阵B的列数 * b----矩阵B * 输出: det----矩阵A的行列式值 * a----A消元后的上三角矩阵 * b----矩阵方程的解X -out the main elements of Gaussian elimination method for solving matrix equ
xIEctrl
- IE,ax控件的使用例子-IE, ax control the use of examples.
mathvalue
- 编写一个用SOR法解方程组Ax=b的计算机程序,其中 要求程序中不存系数A,分别对不同的阶数(例如n=15,80)取w=1.7,1.8,1.9,进行迭代,记录近似解 达到 时所用迭代次数k,观察松弛因子对收敛速度的影响。
sum
- code segment assume cs:code sum_p proc near jcxz exit add ax,cx dec cx call sum_p exit: ret sum_p endp start: mov ax,2000h mov ds,ax mov ax,0 mov si,0 mov cx,7 call sum_p mov [si],ax mov ah,4ch int 21h
mpg_ss
- VOD实用工具,可以从MPG文件之中, 分离视频和音频, 视频直接压缩保存DIV5格式, 音频直接保存为WAV格式, 支持双音轨 必须预先安装DSHOW组件 (AX文件:REGSVR32 /C /S [FILENAME].AX) -VOD practical tool that can MPG document, separate video and audio, video compression preservation DIV5 direct format, audio stored di
逐次超松弛迭代法
- 解线性方程组Ax=b的SOR方法的通用程序-solution of linear equations Ax = b SOR method of common procedures
WebIrDav.Rar
- AX控件,可以内嵌入IE中,学习IE与AX控件的传参很有用
Microsoft-Dynamics-AX-introduction
- Group还对Microsoft Dynamics AX与微软技术的紧密集成深感欣慰,因为这意味着可以轻松使用和拥有人们所熟悉的微软产品的外观和体验,降低了培训成本。 Microsoft Dynamics AX的实施过程与在Windows服务器上实施其他微软程序包的过程十分相似
C++程序设计语言实验一
- 实验一:C++编程入门 1. 设计一个程序,其中实现两个函数,分别要求: 1. 解一元二次方程 求解一元二次方程Ax²+Bx+C=0的根。用户输入A、B、C的值,输出方程根x1和x2。(使用引用) 2. 求三角形面积 输入三角形的三边长a、b、c(边长可以是小数),求三角形面积area,并输出。如果输入的三边构不成三角形,应给出“data error”的信息提示。注:根据“海伦”公式,area*area=p(p-a)(p-b)(p-c),其中p=(a+b+c)/2。 2. 设计一
最小二乘法拟合
- 输入几个点的横坐标和纵坐标,用最小二乘法拟合出直线(类似y=ax+b).并把这个方程计算并显示出来。
hxvdec(2007-8-2).rar
- 基于ffdshow改的简化视频解码filter(包含.ax和libavcodec.dll源码),Based on the simplified change ffdshow video decoder filter (contains. Ax and libavcodec.dll source)
Cap_Wav
- 采用DirctX (DSpack) 的 Filter 方式录音(保存为WAV格式) 源代码 注意:使用前请注册filter文件 "Wavdest.ax" 编程工具:CodeGear RAD Delphi 2010 编程语言:Object Pascal 运行环境:Windows XP/20003 -Using DirctX (DSpack) recording the Filter mode (saved as WAV format) sour
polyadd
- 多项式相加--使用降序排列输入两个格式为ax^b的多项式相加 -Polynomial sum- in descending order of use of the two input formats for the polynomial ax ^ b add
filter_ax
- 用Delphi开发的directshow 过滤器(filter)的源码,带已编释AX的档案。 功能:可实现现时的edge detection过滤。-Developed by Delphi DirectShow filter (filter) the source, has been released with AX files. Function: to achieve the edge detection filter.
AX200_datasheet
- 主要是ax-2000的芯片资料和使用说明。(Mainly ax-2000 chip information and instructions for use)
高斯-赛德尔迭代法求线性方程组Ax=b的解
- 该程序主要是利用高斯-赛德尔迭代法求线性方程组Ax=b的解(The program mainly uses the Gauss-Seidel iteration to solve the solution of the linear system Ax = b)