代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/140162/13101653
c ccout.c
/* CCOUT.C - Output pseudo-code to assembler file
**
** (c) Copyright Ken Harrenstien 1989
** All changes after v.259, 11-Aug-1988
** (c) Copyright Ken Harrenstien, SRI International 1985, 1986
www.eeworm.com/read/138798/13212428
m demopt1.m
function demopt1(xinit)
%DEMOPT1 Demonstrate different optimisers on Rosenbrock's function.
%
% Description
% The four general optimisers (quasi-Newton, conjugate gradients,
% scaled conjugate gr
www.eeworm.com/read/137285/13334969
c mnc.c
/*
mnc.c (c) DJCM 94 07 04
94 10 26
94 10 31
95 01 02
- free energy minimizat
www.eeworm.com/read/137285/13335011
c ms.c
/*
ms.c (c) DJCM 94 07 04
94 10 26
- free energy minimization for inferring state of shift register -
www.eeworm.com/read/137285/13335145
c msb.c
/*
msb.c (c) DJCM 94 07 04
94 10 26
94 10 31
- free energy minimization for inferring sta
www.eeworm.com/read/321972/13391636
m test_break.m
for ii = 1:5
if ii == 3
break;
end
fprintf('ii = %d\n',ii);
end
disp(['End of loop!']);
www.eeworm.com/read/315010/13554282
c objcmp.c
/*******************************************************/
/* "C" Language Integrated Production System */
/* */
/*
www.eeworm.com/read/305700/13763075
m twist.m
function [x,x_debias,objective,times,debias_start,mses,max_svd] = ...
TwIST(y,A,tau,varargin)
%
% Usage:
% [x,x_debias,objective,times,debias_start,mses] = TwIST(y,A,tau,varargin)
%
% This fu
www.eeworm.com/read/304826/13786182
txt 10-16.txt
%例10-16 break语句的使用。
%该程序用于求解经典的鸡兔同笼问题。
%鸡兔同笼,头36,脚100。
%求鸡兔各几只。
i=1;
while i>0
if rem(100-i*2,4)==0&(i+(100-i*2)/4)==36
break;
end
i=i+1;
n1=i;
n2=(100-2*i)/4
www.eeworm.com/read/301555/13857180
c writef.c
#include
int main()
{
FILE *file;
file = fopen("/dev/lcd16207","w");
fprintf(file,"%s","--001---This is just an example :)"); /*writes*/
fprintf(file,"%s","--001---This is just an example :)