代码搜索:fprintf

找到约 10,000 项符合「fprintf」的源代码

代码结果 10,000
www.eeworm.com/read/198944/7903362

m kisomap_demo.m

% kisomap_demo.m % % Kernel Isomap Demo % % by hychoi@postech.ac.kr, http://home.postech.ac.kr/~hychoi/ % Heeyoul Choi % Dept. of Computer Science % POSTECH, Korea % % June 4, 2004
www.eeworm.com/read/198944/7903430

asv kisomap_demo.asv

% kisomap_demo.m % % Kernel Isomap Demo % % by hychoi@postech.ac.kr, http://home.postech.ac.kr/~hychoi/ % Heeyoul Choi % Dept. of Computer Science % POSTECH, Korea % % June 4, 2004
www.eeworm.com/read/198923/7903790

cpp n(-2,1).cpp

#define N 100000 #define DIV 35 /*从-8.7到+9.3等分45个区间,间距为0.4*/ #define SPACING DIV*0.4 #define MEAN -2 #define VARIANCE 1 #include "math.h" #include "stdio.h" main() {
www.eeworm.com/read/198923/7903793

cpp n(0,3.6).cpp

#define N 100000 #define DIV 45 /*从-9到+5等分35个区间,间距为0.4*/ #define SPACING DIV*0.4 #define MEAN 0 #define VARIANCE 1.8974 #include "math.h" #include "stdio.h" main() {
www.eeworm.com/read/198871/7905328

c twoptfile.c

/********************************************************* WRITE FLUENCE DATA TO DISK Returns non-zero on error 1 -> File error (can't open file, unexpected EOF, etc.)
www.eeworm.com/read/198849/7907092

c gdparttopng.c

#ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include /* For atoi */ #include "gd.h" /* A short program which converts a .png file into a .gd file, for your con
www.eeworm.com/read/198849/7907379

c giftogd2.c

#include #include #include "gd.h" /* A short program which converts a .gif file into a .gd file, for your convenience in creating images on the fly from a basis image that mus
www.eeworm.com/read/198849/7907452

c pngtogd2.c

#ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include "gd.h" /* A short program which converts a .png file into a .gd2 file, for your convenience in cre
www.eeworm.com/read/198849/7907514

c circletexttest.c

#ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include "gd.h" /* 2.0.22: oops, we need config.h */ #include "config.h" int main (int argc, char *argv[]) { /* 2.0.22: can't de
www.eeworm.com/read/433726/7912425

m newton.m

%适用Newton法计算下面函数的极小点: % x1^2+4*x2^2+9*x3^2-2*x1+18*x3, %初始点任取 clc; clear; syms x1 x2 x3; fx=x1^2+4*x2^2+9*x3^2-2*x1+18*x3; g=[diff(fx,x1);diff(fx,x2);diff(fx,x3)]; G=[diff(g(1),x