代码搜索:插值优化
找到约 10,000 项符合「插值优化」的源代码
代码结果 10,000
www.eeworm.com/read/396169/8121696
txt 插值软件.vbproj.filelist.txt
obj\Debug\插值软件.exe
obj\Debug\插值软件.xml
obj\Debug\插值软件.pdb
bin\Debug\插值软件.exe
bin\Debug\插值软件.pdb
bin\Debug\插值软件.xml
obj\Debug\ResolveAssemblyReference.cache
obj\Debug\插值软件.Form1.resources
obj\De
www.eeworm.com/read/247321/12665711
doc 曲线拟合与插值.doc
www.eeworm.com/read/145861/12699182
cpp 第一型样条插值.cpp
/*
第一型样条插值,边界条件为两端的一阶导数值已知
*/
#include
#include
#include
#include "zhuigang.h"
#include "conio.h"//_getch()
using namespace std;
void main()
{
vector
www.eeworm.com/read/145861/12699187
cpp 第二型样条插值.cpp
/*
第一型样条插值,边界条件为两端的二阶导数值已知
*/
#include
#include
#include
#include "zhuigang.h"
#include "conio.h"//_getch()
using namespace std;
void main()
{
vector
www.eeworm.com/read/145237/12744195
doc 三个插值公式.doc
www.eeworm.com/read/140909/13053051
frx 曲线_插值f2.frx
www.eeworm.com/read/140909/13053059
frm 曲线_插值f1.frm
VERSION 5.00
Begin VB.Form frmFileName
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "曲线_插值"
ClientHeight = 5190
ClientLeft = 60
www.eeworm.com/read/140909/13053062
bas 曲线_插值m1.bas
Attribute VB_Name = "modParameter"
'曲线_插值
Option Explicit
Public strFileName As String '原始数据文件
Public strRes_Name As String '结果数据文件
Public strLabelName As String '标题
Public P
www.eeworm.com/read/140909/13053066
bas 曲线_插值m3.bas
Attribute VB_Name = "modCall"
'曲线_插值
'检验插值结果的备用模块,使用时需要设定为启动模块
Option Explicit
Sub Main()
Dim X(1 To 10) As Double, Y(1 To 10) As Double
Dim F As Double, T As Double, C As Double
C
www.eeworm.com/read/140909/13053072
bas 曲线_插值m2.bas
Attribute VB_Name = "modMethod"
'曲线_插值
Option Explicit
'线性插值
'X:数据点数组
'Y:函数值数组
'T:插值点
'F:插值点函数值
Public Sub LIP(X() As Double, Y() As Double, T As Double, F As Double)
Dim I As Integer,