代码搜索:fprintf

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

代码结果 10,000
www.eeworm.com/read/366144/9828157

m gmviz_vrmlplot.m

function gmviz_vrmlplot(handle1, bbox, pts, simps, cols, vizdim, thickness) channel = handle1(1); multiplier = handle1(2); if vizdim == 0 if thickness(1)
www.eeworm.com/read/169910/9833197

m fir.m

% % FIR filter design using Hamming window % ORD1=511; F=8000; N=128; x=(0:127)/256*F; % Nth order Lowpass f1=1200; Wn=f1/F*2; blp=fir1(ORD1,Wn); BLP=blp*32767; m=freqz(blp,1,N); plot(x
www.eeworm.com/read/365954/9838230

m pcamat.m

function [E, D] = pcamat(vectors, firstEig, lastEig, s_interactive, ... s_verbose); %PCAMAT - Calculates the pca for data % % [E, D] = pcamat(vectors, firstEig, lastEig, ... % int
www.eeworm.com/read/365844/9844793

m report.m

function report(fname,chr,a,time) aprint(a); [n m]=size(chr); if (n==1) print('Generation 1',fname,chr,a); else fid=fopen(strcat(fname,'.html'),'w'); fprintf(fid,'
www.eeworm.com/read/365844/9844812

m export.m

function export(chr,fname) % EXPORT - export the data from the GA to file % Exports the data in the GA in a tab separated fashion i.e. % des_name % id % gen_name_001 gen_name_002 et
www.eeworm.com/read/169718/9845162

asv wavsave.asv

function wavsave(filename,singalval,pulse) % wavsave(filename,segoffset,len,singalval,pulse) % File save,Optional choosing l=length(pulse); if l>3 fp=fopen([filename,'_.txt'],'w'); fpri
www.eeworm.com/read/169718/9845190

m waveread.m

function [y,len]=waveread(filename) % [y,len]=waveread(filename) % This function read *.fld files f1=fopen(filename,'rb'); y=fread(f1,'float'); len=length(y); fclose(f1); if(f1~=0) fprint
www.eeworm.com/read/169718/9845207

m wavsave.m

function wavsave(filename,singalval,pulse) % wavsave(filename,segoffset,len,singalval,pulse) % File save,Optional choosing l=length(pulse); if l>3 fp=fopen([filename,'.txt'],'w'); fprin
www.eeworm.com/read/365809/9845769

c brctl_cmd.c

/* * Copyright (C) 2000 Lennert Buytenhek * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fre
www.eeworm.com/read/365783/9847418

c menu3.c

#include #include char *menu[] = { "a - add new record", "d - delete record", "q - quit", NULL, }; int getchoice(char *greet, char *choices[], FILE *in, FILE *ou