代码搜索:相差法

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

代码结果 10,000
www.eeworm.com/read/114599/15046463

m rkone.m

function y=RKone(h,A,B,C,U,N,n) %应用一阶龙格库塔算法(即欧拉法)计算 X=zeros(N,1); y(1)=input('请给出y的初值y(0)的值:') for i=1:n y(i+1)=y(i)+h*(A*X+B*U) end
www.eeworm.com/read/215702/15052458

h 9_14.h

//9_14.h #ifndef SEARCH_METHODS #define SEARCH_METHODS //用顺序查找法在数组list中查找值为key的元素 //若找到,返回该元素下标,否则返回-1 template int SeqSearch(T list[], int n, T key) { for(int i=0;i < n;i++)
www.eeworm.com/read/214783/15088759

cpp lagrangenewton.cpp

#include #include #include typedef struct data { float x; float y; }Data;//变量x和函数值y的结构 Data d[20];//最多二十组数据 float f(int s,int t)//牛顿插值法,用以返回插商 { if(t==s+1)
www.eeworm.com/read/114100/15110102

txt 如何播放背景音乐(midi).txt

你 使 用 的 是 VB 6.0, 可 你 调 用 的 API函 数 却 都 是 16位 的 , 当 然 不 会 成 功 。 正 确 的 方 法 如 下 : 实 现 加 入 如 下 声 明 : Private Declare Function mciSendString Lib "winmm.dll" Alias _ "mciSendStringA" (ByV
www.eeworm.com/read/114100/15110654

txt 怎样修改控件的recordsource属性.txt

RecordSource属 性 可 以 在 设 计 时 修 改 , 也 可 以 在 运 行 时 修 改 。 如 果 在 运 行 时 修 改 , 必 须 在 修 改 后 调 用 Refresh方 法 , 如 : datPrimaryRS.RecordSource = "Select * From Sales Where Price>50" datPrimaryRS.Refre
www.eeworm.com/read/114100/15110878

txt 如何让两个窗口同时移动.txt

VB缺 乏 一 个 事 件 来 检 测 用 户 是 否 移 动 窗 口 , 你 可 以 参 考 “在msgblst中如何处理指向结构变量的地址”所 介 绍 的 方 法 获 得 WM_WINDOWPOSCHANGING来 同 时 移 动 窗 口 。
www.eeworm.com/read/114100/15111244

txt 如何创建数据库的表格.txt

如 果 创 建 Access数 据 库 的 表 , 应 该 使 用 CreateTableDef方 法 。 如 果 创 建 SQL Server等 数 据 库 的 表 , 需 要 使 用 CREATE TABLE查 询 。 1) 创 建 Access数 据 库 的 表 Dim dbs As Database, tdf As TableDef, fld As Field
www.eeworm.com/read/114100/15111324

txt 如何向表中增加一个字段.txt

在 你 使 用 OpenDataBase打 开 一 个 数 据 库 后 , 可 以 通 过 TableDefs("表 2").Fields访 问 表 的 字 段 结 构 , 利 用 CreateField可 以 建 立 一 个 字 段 , 使 用 Append方 法 可 以 加 入 表 中 。
www.eeworm.com/read/114100/15111584

txt 使用shlwapi库压缩长文件名.txt

SHLWAPI中 的 PathCompactPath函 数 提 供 了 一 种 简 单 的 压 缩 长 文 件 名 的 方 法 。 它 使 用 省 略 号 (...)代 替 部 分 文 件 名 。 这 个 函 数 的 声 明 如 下 : Private Declare Function _ PathCompactPath Lib "shlwapi"_ Alia
www.eeworm.com/read/114100/15112384

txt 如何把listbox中的全部选中.txt

Style属 性 无 法 动 态 改 变 。 如 果 确 有 需 要 可 以 考 虑 我 编 写 的 控 件 CheckListBox(http://www.zealsoftstudio.com/cn/checklistbox/)。 全 部 选 中 可 以 这 样 做 : For i = 0 To List1.ListCount -1 List1.Select