代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/144351/12801129
m q45.m
%《MATLAB在电子信息课程中的应用》第四章第五节演示程序q45
% 字符串函数库
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
clear, echo on
s='abyzABYZ0189'
size(s)
abs(s)
setstr(abs(s))
dec2hex(abs(s))
s1=[' welcome ',s]
s2 =['a=5
www.eeworm.com/read/331180/12840933
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/331180/12840967
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/143706/12850347
m svm_learn.m
function status = svm_learn(options, examples, model)
% SVM_LEARN - Interface to SVM light, learning module
%
% STATUS = SVM_LEARN(OPTIONS, EXAMPLES, MODEL)
% Call the training program 'svm_learn
www.eeworm.com/read/143706/12850355
m svmlwrite.m
function svmlwrite(fname, X, Y, floatformat)
% SVMLWRITE - Write matrix into data file for SVM light
%
% SVMLWRITE(FNAME, X) writes out matrix X into file FNAME, in the format
% needed for SVM li
www.eeworm.com/read/142273/12953715
c wfmt.c
#include "../inc/screen.h"
/*
* 金额格式输出
*
* 例: arg->in = 1543785.23, arg->out = " 1,543,785.23".
* 若 arg->in 超过 14 位数字(不包括'.'), arg->out = " ***,***,***,***.**".
*
*/
wdfmt(arg)
struct df
www.eeworm.com/read/142034/12968861
m simulate.m
function [PAR, FLO, STA, AVG, MSE, VAR, BIQ, EInfo]= simulate(exp, N, SNR, par, E, re_im, MM, MAR, LAR, MMA, LMA)
%function [PAR, FLO, STA, AVG, MSE, VAR, BIQ, EInfo]= simulate(exp, N, SNR, par, E, re
www.eeworm.com/read/142034/12968955
m tfpm_channel.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
clear;tfpm
mm= 1;
%MEASURED= 1;MM= 64;load updown_h_rusk.mat;texx
www.eeworm.com/read/141692/12990932
m flame.m
function flame
% FLAME A stiff ordinary differential equation.
% A ball of fire grows until its radius is just large enough that all of
% the oxygen available through the surface is consumed by co
www.eeworm.com/read/141692/12991069
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 =