代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/433726/7912430
m newton_2.m
%适用Newton法计算下面函数的极小点:(带步长因子的牛顿法)
% x1^2+4*x2^2+9*x3^2-2*x1+18*x3,
%初始点任取
clc;
clear;
syms x1 x2 x3 alfa a b c;
fx=x1^2+4*x2^2+9*x3^2-2*x1+18*x3;
f=subs(fx,{x1,x2,x3},{a,b,c});
g=
www.eeworm.com/read/398836/7916376
c getargs.c
/* GETARGS.C Command line processor for C programs
*
* -- added long integer parameter -- EFC 26 Feb 1990
* -- added toggle boolean (switch) -- EFC 27 June 1988
* -- with reals (doubl
www.eeworm.com/read/398826/7917499
c deverror.c
Under no circumstances is this software to be copied, distributed,
or altered in any way without prior permission from the DEVise
Development Group.
*/
/*
Implementation of DevError cla
www.eeworm.com/read/398826/7917776
c show.c
/*
========================================================================
DEVise Data Visualization Software
(c) Copyright 1992-1996
By the DEVise Development Group
Madison, Wisconsin
www.eeworm.com/read/398819/7919193
m tffilter.m
function y = tffilter(tfr,x,t,trace);
%TFFILTER Time frequency filtering of a signal.
% Y=TFFILTER(TFR,X,T,TRACE) filters the signal X
% with a non stationary filter.
%
%
% X : input sign
www.eeworm.com/read/198616/7922992
c testerror.c
#include "apue.h"
#include
int
main(int argc, char *argv[])
{
fprintf(stderr, "EACCES: %s\n", strerror(EACCES));
errno = ENOENT;
perror(argv[0]);
exit(0);
}
www.eeworm.com/read/198616/7923037
13 figc.13
#include "apue.h"
int
main(void)
{
FILE *fp;
char *p;
daemonize("getlog");
p = getlogin();
fp = fopen("/tmp/getlog.out", "w");
if (fp != NULL) {
if (p == NULL)
fprintf(fp, "no login name\
www.eeworm.com/read/198616/7923071
c getlogin.c
#include "apue.h"
int
main(void)
{
FILE *fp;
char *p;
daemonize("getlog");
p = getlogin();
fp = fopen("/tmp/getlog.out", "w");
if (fp != NULL) {
if (p == NULL)
fprintf(fp, "no login name\
www.eeworm.com/read/198616/7923604
8 fig1.8
#include "apue.h"
#include
int
main(int argc, char *argv[])
{
fprintf(stderr, "EACCES: %s\n", strerror(EACCES));
errno = ENOENT;
perror(argv[0]);
exit(0);
}
www.eeworm.com/read/298907/7924318
c testfor.c
/*
** Author: Tapas Kanungo, kanungo@cfar.umd.edu
** Date: 4 May 1999
** File: testfor.c
** Purpose: driver for testing the Forward, ForwardWithScale code.
** Organizatio