代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/358669/10182370
m saveppm.m
%SAVEPPM Write a PPM format file
%
% SAVEPPM(filename, I)
%
% Saves the specified red, green and blue planes in a binary (P6)
% format PPM image file.
%
% SEE ALSO: loadppm
%
% Copyright (c)
www.eeworm.com/read/358669/10182470
m savepgm.m
%SAVEPGM Write a PGM format file
%
% SAVEPGM(filename, im)
%
% Saves the specified image array in a binary (P5) format PGM image file.
%
% SEE ALSO: loadpgm
%
% Copyright (c) Peter Corke, 199
www.eeworm.com/read/358609/10183952
m ex4_2.m
% 输入文本文件名
qname=input('Enter file containing questions : ','s');
ip=fopen(qname,'rt'); % 打开该文本文件
if (ip
www.eeworm.com/read/358185/10194796
c gpspipe.c
/* $Id: gpspipe.c 4315 2007-03-24 22:03:17Z ckuethe $ */
/*
* gpspipe
*
* a simple program to connect to a gpsd daemon and dump the received data
* to stdout
*
* This will dump the raw NMEA from
www.eeworm.com/read/357617/10204859
txt 13-08.txt
>> x = 0:.1:1;
>> y = [x; exp(x)];
>> fid = fopen('exp.txt', 'wt');
>> fprintf(fid, '%6.2f %12.8f\n', y);
>> fclose(fid)
>> type exp.txt
www.eeworm.com/read/357559/10206640
c segycc.c
//将程序中的数据存为SEGY格式
#include
#include
#define M1 1500//采样点数
#define us 6000//采样间隔
#define ap 5//振幅
#define nsp 3//炮数
#define nl 2//层数
main()
{
FILE *fpo,*fpi,*t
www.eeworm.com/read/357227/10213377
c test_gold.c
/*
* $Log: test_gold.c,v $
* Revision 1.1 2000/05/03 14:30:04 bjc97r
* Initial revision
*
*/
char *id = "$Id: test_gold.c,v 1.1 2000/05/03 14:30:04 bjc97r Exp $";
#include
#include
www.eeworm.com/read/357227/10213387
c test_ogold.c
/*
* $Log: test_ogold.c,v $
* Revision 1.1 2000/05/03 14:30:04 bjc97r
* Initial revision
*
*/
char *id = "$Id: test_ogold.c,v 1.1 2000/05/03 14:30:04 bjc97r Exp $";
#include
#include
www.eeworm.com/read/357108/10216012
c check_error.c
#include "config.h"
#include
#include
#include
#include
#include
#include "check_error.h"
void eprintf (const char *fmt, const char *file, int
www.eeworm.com/read/356995/10218083
txt text1.txt
FILE *fp;
fp = fopen("c:\temp\test.csv","wt");
fprintf(fp, "%s,%s,%s", f1,f2,f3);
flcose(fp);
CFile