代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/124341/6965321
c dpid_common.c
#include
#include
#include
#include
#include "dpid_common.h"
/*
* Send a verbose error message.
*/
void errmsg(char *caller, char *called, int errornum, cha
www.eeworm.com/read/469623/6972070
c report.c
/*----------------------------------------------------------------------------*/
/* report.c - generation report files */
/*------------------------------------
www.eeworm.com/read/469623/6972087
c initial.c
/*----------------------------------------------------------------------------*/
/* initial.c - functions to get things set up and initialized */
/*------------------------------------
www.eeworm.com/read/469623/6972089
c main.c
/*******************************************/
/* Simple Genetic Algorithm - SGA */
/* Haploid Version */
/* (c) David Edward Goldberg 1986 */
/* All
www.eeworm.com/read/469330/6973286
asv zeditdata.asv
function zeditdata(fn1)
%change the following line according to the data
fn1=uigetfile({'*.out'},'Open data file');%fn1='b5050_01.out'
numline=4001;%numline=100;
%fn1 column
%col1head='t';
c
www.eeworm.com/read/469330/6973290
m zsimnver.m
% net ==> the network name
% fntest ==> the test data file
% ofntest ==> desired output file
% output ===> desired output variable
% sfntest ==> simulation result
% hlfntest => simulation resul
www.eeworm.com/read/469330/6973296
m zeditdata.m
function zeditdata(fn1)
%change the following line according to the data
fn1=uigetfile({'*.out'},'Open data file');%fn1='b5050_01.out'
numline=6501;%numline=100;
%fn1 column
%col1head='t';
c
www.eeworm.com/read/469370/6973794
cpp dijkstra.cpp
//Giai thuat tham lam
// Thuat toan Dijkstra
// Tim duong di ngan nhat
#include
#include
#include
#define filein "Dijkstra.inp"
#define fileout "Dijkstra.out"
#defin
www.eeworm.com/read/469169/6978618
m writefile.m
function fun=writefile(filename,data,n)
fid=fopen(filename,'w');
strformat='';
nIndex=0;
for i=1:n
strformat=strcat(strformat,'%2d ');
end
strformat=strcat(strformat,'\n');
n=fprintf(f
www.eeworm.com/read/469180/6978668
txt text1.txt
FILE *fp;
fp = fopen("c:\temp\test.csv","wt");
fprintf(fp, "%s,%s,%s", f1,f2,f3);
flcose(fp);
CFile