代码搜索:相差法

找到约 10,000 项符合「相差法」的源代码

代码结果 10,000
www.eeworm.com/read/252582/12274550

m sordiedai.m

function [x, k]=sordiedai(w, diecimax) % 求解线性方程组的松弛(SOR)迭代法,其中 % A --- 方程组的系数矩阵 % b --- 方程组的右端项 % ep --- 精度要求 % w --- 松弛因子,省缺为1 % diecimax --- 最大迭代次数,省缺为50 % x --- 方程组的解 % k ---
www.eeworm.com/read/252270/12289986

txt linux系统命令(x-windows) (转).txt

作者:dio email: hao@peng.com.cn 日期:8/23/2001 10:07:05 AM xlsfonts 功能说明:列出X Server使用的字体。 语  法:xlsfonts [-1Clmou][-display:][-fn][-ll][-lll][-n][-w]
www.eeworm.com/read/252270/12290245

txt linux系统命令(系统设置) (转二).txt

作者:dio email: hao@peng.com.cn 日期:8/23/2001 1:40:24 PM modprobe(module probe) 功能说明:自动处理可载入模块。 语  法:modprobe [-acdlrtvV][--help][模块文件][符号名称 = 符号值] 补充说明:modprobe可载入指定的个别模块,或是载入一组相依的模块。modp
www.eeworm.com/read/252270/12290358

txt word perfect 8.0 for linux 安 装 指 南.txt

作者:sonymusic email: sonymusic@china.com 日期:2000-9-28 23:56:04 Word Perfect 8.0 for Linux 安 装 指 南 2000-09-29 1:25 [hr] 看 download.com 的 安 装 指 南 只 会 让 你 恶 心。 所 有 我 把 自 己 安 装 Word Perfect 8.0 的 方 法
www.eeworm.com/read/252270/12290770

txt linux系统命令(系统设置) (转一).txt

作者:dio email: hao@peng.com.cn 日期:8/23/2001 1:37:58 PM apmd(advanced power management BIOS daemon) 功能说明:进阶电源管理服务程序。 语  法:apmd [-u v V W][-p ][-w ] 补充说明:apmd负责BIOS进阶电源管理(A
www.eeworm.com/read/337107/12390774

m myfft.m

% 用matlab编的fft变换程序 % % % 用蝶形算法和码位倒置法编写的fft变换程序,并验证之,有兴趣的可以看看。 function data=myfft(datat,nn,isign) datat=mybitrevorder(datat,nn); %这个地方也可以用matlab自带的bitrevorder,有兴趣的还是自己编一下 for i=
www.eeworm.com/read/336808/12414818

txt locate.txt

locate 語法: [root @test /root ]# locate [目錄名稱] 參數說明: 範例: [root @test /root]# locate root ……一大堆跟 root 有關字眼的檔案都出來了 @_@ [root @test /root]# updatedb
www.eeworm.com/read/130817/14173532

m func7p1.m

%func7p1.m二分法解方程 %(1) s=1;f=3;tol=0.01;i=0 difference=1 while(abs(difference)>tol) if(sub7p11((s+f)/2)>0) f=(s+f)/2; else s=(s+f)/2; end difference=sub7p11((s
www.eeworm.com/read/127960/14325182

cpp bubble1.cpp

//这个程序在本书所带软盘中。文件名为BUBBLE1.CPP //这个程序利用冒泡排序法将数组单元值从小到大排列。 #include #include //这个头文件支持随机函数rand() #define max 10 void main(void) { void initialize(int[], int);
www.eeworm.com/read/124343/14572717

html 972.html

linux知识宝库/杂项工具/ext2文件系统下恢复误删除的文件另一方法