代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/433822/7907618
m tutorial.m
function [] = tutorial
%
% Function TUTORIAL Demonstration
% Runs a Demo for the following immune tools:
% 1) SAND (Simulated Annealing Model of Diversity - unpublished)
% 2) ABNET (Growing Boole
www.eeworm.com/read/433822/7907651
m saml.m
function [ab,vE,E] = saml(N);
%
% Ph.D. Thesis
% Leandro Nunes de Castro
% October, 1999.
% Function generates n-bit binary strings antibody most uniformly
% distributed over the search space
www.eeworm.com/read/433822/7907675
m sareal.m
function [ab,vE,vRb,E,Rb] = sareal(ab,niter);
%
% Ph.D. Thesis
% Leandro Nunes de Castro
% October, 1999.
% Function generates n-bit binary strings antibody most uniformly
% distributed over th
www.eeworm.com/read/433822/7907680
m ga3d.m
function [x,y,fx,vx,vmfit,P] = ga3d(v,ger,pc,pm);
%
% Ph.D. Thesis
% Leandro Nunes de Castro
% November, 1999.
% ENHANCED GENETIC ALGORITHM - Bi-classist Selection
%
% Secondary functions: DECODE &
www.eeworm.com/read/398826/7917362
c recinterp.c
/*
========================================================================
DEVise Data Visualization Software
(c) Copyright 1992-1996
By the DEVise Development Group
Madison, Wisconsin
www.eeworm.com/read/298817/7933349
c winsock2.c
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include "winsock2.h"
#include "ctype.h"
#include "time.h"
#pragma comment(lib,"WSOCK32")
#define SERVER_PORT 5000
#define Defaul
www.eeworm.com/read/298760/7938502
cpp runfda.cpp
// RUNFDA.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "RUNFDA.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[]
www.eeworm.com/read/298649/7946865
bak setup.bak
/*
* GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette
* This program may be freely copied for educational
* and research purposes. All other rights reserved.
*
* file: setup.
www.eeworm.com/read/298649/7947677
m conpred.m
function m = conpred(b,w,p,q,lv)
[mq,nq] = size(q);
[mw,nw] = size(w);
if nw ~= lv
if lv > nw
s = sprintf('Original model has a maximum of %g LVs',nw);
disp(' '), disp(s)
s = spri
www.eeworm.com/read/298534/7951876
cpp hello.cpp
#include
#include
#include "hello.h"
char *hello(char *name) {
char *value = new char [9+strlen(name)];
sprintf(value,"hello,%s.",name);
return value;
}
#include