代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/476738/6749093
c request.c
#include "calld.h"
int /* return 0 if OK, -1 on error */
request(Client *cliptr)
{
pid_t pid;
/*
* Position where this client left off last (or rewind).
*/
errmsg[0] = 0;
sys_posn(clip
www.eeworm.com/read/476848/6751811
c ctlstr.c
#include "calld.h"
/* Make a printable string of the character "c", which may be a
* control character. Works only with ASCII. */
char *
ctl_str(char c)
{
static char tempstr[6]; /* biggest is "
www.eeworm.com/read/476848/6751818
c request.c
#include "calld.h"
int /* return 0 if OK, -1 on error */
request(Client *cliptr)
{
pid_t pid;
errmsg[0] = 0;
/* position where this client left off last (or rewind) */
sys_posn(cliptr->sy
www.eeworm.com/read/264377/11317455
c ctlstr.c
#include "calld.h"
/*
* Make a printable string of the character "c", which may be a
* control character. Works only with ASCII.
*/
char *
ctl_str(unsigned char c)
{
static char tempstr[6]; /*
www.eeworm.com/read/264377/11317470
c request.c
#include "calld.h"
int /* return 0 if OK, -1 on error */
request(Client *cliptr)
{
pid_t pid;
/*
* Position where this client left off last (or rewind).
*/
errmsg[0] = 0;
sys_posn(clip
www.eeworm.com/read/409626/11317606
m testmyg.m
% Script testmyg.m
format long
disp(' t mygamma gamma')
disp(sprintf('\n _____________________________________________________'))
s = [];
for t=1:.1:2
s1
www.eeworm.com/read/409626/11317654
m testmyg.m
% Script testmyg.m
format long
disp(' t mygamma gamma')
disp(sprintf('\n _____________________________________________________'))
s = [];
for t=1:.1:2
s1
www.eeworm.com/read/264291/11322965
cpp physic.cpp
#include "h/physic.h"
#include
//define the sting that define the host display
Define_Module(Physic);
cNeighbour::cNeighbour(){};
cNeighbour::~cNeighbour(){};
void Physic::initialize(
www.eeworm.com/read/408917/11365261
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)
www.eeworm.com/read/408917/11365288
m jac.m
%Jacobian迭代程序
function [x,sp]=jac(a,b,n,x1)
%误差
e=ones(n,1);
%迭代的解向量
x2=zeros(n,1);
%迭代的次数
k=0;
%当误差没有满足要求时继续迭代
while norm(e,2)>1e-6
%每隔5步显示迭代结果
if (rem(k,5)==0)
str=sprintf('X