代码搜索:Multiple
找到约 9,501 项符合「Multiple」的源代码
代码结果 9,501
www.eeworm.com/read/274807/10851470
java adventure.java
//: c08:Adventure.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Multiple interfaces.
import java.util.*;
interface Can
www.eeworm.com/read/273788/10901122
m dwtmult1.m
% dwtmult1.m
%
% Performs multiple levels of the discrete wavelet transform (using
% dwtlevel1). Lines up stuff for "tree" structure
% Usage : w = dwtmult1(x, h0, h1, L)
%
% Written by : Justin Rombe
www.eeworm.com/read/453350/7422215
h toast.h
#ifndef TOAST_H
#define TOAST_H /* Guard against multiple includes */
#include "config.h"
#include
#include
#include
#include
#include
www.eeworm.com/read/435132/7796955
m dwtmult1.m
% dwtmult1.m
%
% Performs multiple levels of the discrete wavelet transform (using
% dwtlevel1). Lines up stuff for "tree" structure
% Usage : w = dwtmult1(x, h0, h1, L)
%
% Written by : Justin Rombe
www.eeworm.com/read/197650/7982812
m aux_sub2ind.m
function ndx = aux_sub2ind (siz, varargin)
% FUNCTION ndx = aux_sub2ind (siz,varargin)
%
% Linear index from multiple subscripts.
% This is same as Matlab's own sub2ind, but without checking for
% ze
www.eeworm.com/read/328267/13036738
h wince_time.h
#ifndef __WINCE_TIME_H__
#define __WINCE_TIME_H__
#ifndef _TIME_T_DEFINED
typedef unsigned time_t; /* time value */
#define _TIME_T_DEFINED /* avoid multiple def's of time_t */
#endi
www.eeworm.com/read/136879/13356310
h time1.h
// Fig. 6.5: time1.h
// Declaration of the Time class.
// Member functions are defined in time1.cpp
// prevent multiple inclusions of header file
#ifndef TIME1_H
#define TIME1_H
// Time abst
www.eeworm.com/read/322856/13363709
conf miniupnpd.conf
# WAN network interface
#ext_ifname=eth0
ext_ifname=xl1
# if the WAN interface has several IP addresses, you
# can specify the one to use below
#ext_ip=
# there can be multiple listening ips for SSDP
www.eeworm.com/read/314474/13566691
gawk compute-best-rover-mix.gawk
#!/usr/local/bin/gawk -f
#
# compute-best-rover-mix --
# Compute the best mixture weight for combining multiple sausages
#
# usage: compute-best-rover-mix [lambda="l1 l2 ..."] [precision=p] nbest-rove
www.eeworm.com/read/305575/13765524
m vzeros.m
function[varargout]=vzeros(varargin)
%VZEROS Initializes multiple variables to arrays of zeros or nans.
%
% [X1,X2, ... XN]=VZEROS(M,N) is equivalent to
%
% X1=ZEROS(M,N); X2=ZEROS(M,N); .