代码搜索:Dim
找到约 10,000 项符合「Dim」的源代码
代码结果 10,000
www.eeworm.com/read/372592/9501996
txt f1dim.txt
Function F1DIM(X)
Dim XT(50)
For J = 1 To NCOM
XT(J) = PCOM(J) + X * XICOM(J)
Next J
F1DIM = FUNC2(XT(), NCOM)
Erase XT
End Function
www.eeworm.com/read/371578/9547461
lib d3dim.lib
www.eeworm.com/read/371578/9548042
inc d3dim.inc
; ===========================================
; d3dim.inc copyright MASM32 1998 - 2003
; ===========================================
Direct3DCreate PROTO :DWORD,:DWORD,:DWORD
Direct3D_HALC
www.eeworm.com/read/365689/9851125
m df1dim.m
function [df1] = df1dim(x)
% Must accompany dlinmin.
% Defined in dlinmin.
global pcom
global xicom;
global nrdfun;
df = feval(nrdfun, pcom + x.*xicom);
df1 = sum(df.*xicom);
www.eeworm.com/read/365689/9851128
m f1dim.m
% Move pcom (x units in xicom direction), and then evaluate the function there.
function [f] = f1dim(x)
% Must accompany linmin.
global pcom; % Defned in linmin.
global xicom;
global nrfun
www.eeworm.com/read/354084/10391315
dim tk-dos11.dim
www.eeworm.com/read/278154/10562123
c xdf1dim.c
/* Driver for routine df1dim */
#include
#define NRANSI
#include "nr.h"
#include "nrutil.h"
#define NDIM 3
int ncom; /* defining declarations */
float *pcom,*xicom;
void (*nr
www.eeworm.com/read/278154/10562172
c xf1dim.c
/* Driver for routine f1dim */
#include
#define NRANSI
#include "nr.h"
#include "nrutil.h"
float func(float x[])
{
int i;
float f=0.0;
for (i=1;i
www.eeworm.com/read/278154/10562678
c df1dim.c
#define NRANSI
#include "nrutil.h"
extern int ncom;
extern float *pcom,*xicom,(*nrfunc)(float []);
extern void (*nrdfun)(float [], float []);
float df1dim(float x)
{
int j;
float df1=0.0