代码搜索:diff
找到约 8,375 项符合「diff」的源代码
代码结果 8,375
www.eeworm.com/read/179705/9341519
c diff.c
/* multimin/diff.c
*
* Copyright (C) 2000 David Morrison
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as publi
www.eeworm.com/read/179705/9342093
out diff.out
f(x) = x^(3/2)
x = 2.0
f'(x) = 2.1213203120 +/- 0.0000004064
exact = 2.1213203436
x = 0.0
f'(x) = 0.0000000160 +/- 0.0000000339
exact = 0.0000000000
www.eeworm.com/read/179705/9342132
c diff.c
#include
#include
#include
double f (double x, void * params)
{
return pow (x, 1.5);
}
int
main (void)
{
gsl_function F;
double result, abserr;
www.eeworm.com/read/179705/9342355
texi diff.texi
@cindex differentiation of functions, numeric
@cindex functions, numerical differentiation
@cindex derivatives, calculating numerically
@cindex numerical derivatives
@cindex slope, see numerical deriv
www.eeworm.com/read/179705/9344503
c diff.c
/* diff/diff.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 David Morrison
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Pub
www.eeworm.com/read/374163/9418813
diff mkminix.diff
48a49,51
> * 09.29.98 - Modified to compile under DJGPP (minus mount-checking, etc.).
> * (wjblack@yahoo.com)
> *
69a73,78
>
> /* DJGPP's IOCTL interface should probably not be trus
www.eeworm.com/read/177852/9430662
gif diff.gif
www.eeworm.com/read/177852/9430700
tcl diff.tcl
proc comparediff {args} {
#
# This diffs a file with the repository.
#
global cvscfg
gen_log:log T "ENTER ($args)"
set filelist [join $args]
if {$filelist == ""} {
cvsfail "Ple
www.eeworm.com/read/373036/9477014
c diff.c
#include "tdestr.h"
#include "common.h"
#include "define.h"
#include "tdefunc.h"
int define_diff( WINDOW *window )
{
int rc;
char temp[MAX_COLS];
int num1;
int let1;
int num2;
www.eeworm.com/read/371680/9542405
m diff.m
function x = diff(x)
% Differentiate Taylor series.
% [x_0, x_1, ..., x_p] becomes [x_1, 2*x_2, ..., p*x_p, 0]
[m,n,p1] = size(x.tc);
p = p1-1;
x.tc = reshape(x.tc,m*n,p1);
x.tc = [x.tc(:,2:end)