代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/132994/14063761
c utils.c
/*
* Author: Christopher G. Phillips
* Copyright (C) 1994 All Rights Reserved
*
* NOTICE
*
* Permission to use, copy, modify, and distr
www.eeworm.com/read/132994/14063802
c inst2.c
/*
* Author: Christopher G. Phillips
* Copyright (C) 1994 All Rights Reserved
*
* NOTICE
*
* Permission to use, copy, modify, and distr
www.eeworm.com/read/205036/15329011
m tt_size2str.m
function s = tt_size2str(sz)
%TT_SIZE2STR Convert size to a string that can be printed.
%
%MATLAB Tensor Toolbox.
%Copyright 2007, Sandia Corporation.
% This is the MATLAB Tensor Toolbox by Br
www.eeworm.com/read/204362/15340839
cpp mini ftpserver.cpp
// Mini FtpServer.cpp : Defines the entry point for the console application.
#include "stdafx.h"
#include
#include
#include
#define WSA_RECV 0
#defin
www.eeworm.com/read/203482/15357973
m saveinr.m
%SAVEINR Write an INRIMAGE format file
%
% SAVEINR(filename, im)
%
% Saves the specified image array in a INRIA image format file.
%
% SEE ALSO: loadinr
%
% Copyright (c) Peter Corke, 1999 Machine Vi
www.eeworm.com/read/203212/15363970
c jffs2map2.c
/*
* jffs2map2.c: export all jffs2_raw_inode and jffs2_raw_dirent of a file
*
* shrek2@www.linuxforum.net, 2005-12
*/
#ifndef _KERNEL_ /* We are part of the kernel, */
#define _KERNEL_
#e
www.eeworm.com/read/202876/15370731
m saveinr.m
%SAVEINR Write an INRIMAGE format file
%
% SAVEINR(filename, im)
%
% Saves the specified image array in a INRIA image format file.
%
% SEE ALSO: loadinr
%
% Copyright (c) Peter Corke, 1999 Ma
www.eeworm.com/read/202824/15372058
m saveinr.m
%SAVEINR Write an INRIMAGE format file
%
% SAVEINR(filename, im)
%
% Saves the specified image array in a INRIA image format file.
%
% SEE ALSO: loadinr
%
% Copyright (c) Peter Corke, 1999 Machine Vi
www.eeworm.com/read/202680/15375933
m goldfract.m
function goldfract(n)
%GOLDFRACT Golden ratio continued fraction.
% GOLDFRACT(n) displays n terms.
p = '1';
for k = 1:n
p = ['1+1/(' p ')'];
end
p
p = 1;
q = 1;
for k = 1:n
s = p;
p = p
www.eeworm.com/read/202203/15389480
m sor.m
%Successive Over Relaxation迭代程序
function [x,sp]=sor(a,b,n,x1,w)
%误差
e=ones(n,1);
%迭代的解向量
x2=zeros(n,1);
%迭代的次数
k=0;
%当误差没有满足要求时继续迭代
while norm(e,2)>1e-6
%每隔5步显示迭代结果
if (rem(k,5)==0)