代码搜索:usage
找到约 10,000 项符合「usage」的源代码
代码结果 10,000
www.eeworm.com/read/157074/11741297
m larval.m
function ypred = LARval(K,solution)
% USAGE
%
% ypred = LARval(K,solution)
if size(K,2)==size(solution.Beta,2);
ypred = K *solution.Beta'+solution.b;
else
yp
www.eeworm.com/read/259932/11757026
asm intel.asm
PAGE 66,132
;
;
;
;
;
;
;
;
; intel - convert intel bigendian
;
;
; (c) 1990 Erick Engelke
;
;
;
include masmdefs.hsm
include model.hsm
codedef intel
datadef
cstart
www.eeworm.com/read/156614/11788553
c cmd_cache.c
/*
* (C) Copyright 2000
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you
www.eeworm.com/read/345066/11841298
cpp decoder.cpp
#include
#include "jpegdeco.h"
#include "bitimage.h"
#include "bmpencod.h"
using namespace std ;
#pragma argsused
void Progress (BitmapImageCoder &coder,
void *data
www.eeworm.com/read/345059/11841754
c bootpcmd.c
/*************************************************/
/* Center for Information Technology Integration */
/* The University of Michigan */
/*
www.eeworm.com/read/344953/11850520
err main.err
>>> Warning 203 "main.c" Line 32(1,1): Condition always TRUE
Memory usage: ROM=1% RAM=0% - 2%
0 Errors, 1 Warnings.
www.eeworm.com/read/258434/11864230
c touch.c
/*----------------------------------------------------------------------*
* Program: touch *
* Programmer: Ray L. McVay
www.eeworm.com/read/258191/11877609
cpp progvals.cpp
//: C20:ProgVals.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
#include "ProgVals.h"
using n
www.eeworm.com/read/344239/11894311
java randombounds.java
//: containers/RandomBounds.java
// Does Math.random() produce 0.0 and 1.0?
// {RunByHand}
import static net.mindview.util.Print.*;
public class RandomBounds {
static void usage() {
prin
www.eeworm.com/read/154878/11921007
lua doall.lua
-- emulate the command line behaviour of Lua 4.0
-- usage: lua doall.lua f1.lua f2.lua f3.lua ...
for i=1,table.getn(arg) do
dofile(arg[i])
end