代码搜索:constructs
找到约 1,240 项符合「constructs」的源代码
代码结果 1,240
www.eeworm.com/read/191434/8429735
java serverexception.java
/*
* @(#)ServerException.java 1.12 01/12/03
*
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package java.rmi;
www.eeworm.com/read/386050/8768519
m setfiles.m
%SETFILES Set files (directory names) for datafile
%
% A = SETFILES(A,DIRNAMES)
%
% INPUT
% A - Datafile
% DIRNAMES - Character array with directory (or file) names
%
% OUTPUT
% A
www.eeworm.com/read/362941/9974178
c bccstack.c
/*
* this is the only way to tell the linker we need a large stack size
* with the 16-bit borland package. Note by the way that this is one
* of those constructs my compiler doesn't know how to
www.eeworm.com/read/362900/9977070
readme
This is the original documentation for the C++ interface in Meep. It
is somewhat out of date. (All of the code in this manual still works,
but some of it uses obsolete constructs, etcetera.)
We now
www.eeworm.com/read/166573/10015851
c bccstack.c
/*
* this is the only way to tell the linker we need a large stack size
* with the 16-bit borland package. Note by the way that this is one
* of those constructs my compiler doesn't know how to
www.eeworm.com/read/359548/10139703
java dataformatexception.java
/**
* This exception is thrown when malformed data is detected while
* a file being parsed.
*
* @author author name
* @version 1.0.0
*/
public class DataFormatException extends Exception
www.eeworm.com/read/355417/10267163
c bccstack.c
/*
* this is the only way to tell the linker we need a large stack size
* with the 16-bit borland package. Note by the way that this is one
* of those constructs my compiler doesn't know how to
www.eeworm.com/read/419036/10888974
java dataformatexception.java
/**
* This exception is thrown when malformed data is detected while
* a file being parsed.
*
* @author iCarnegie
* @version 1.0.0
*/
public class DataFormatException extends Exception {
www.eeworm.com/read/427515/7095576
m recserp.m
function y=recserp(x,z)
% RECSERP
% RECSERP(x,z) constructs a recursive time series based on product
% x: N*K z: N*K
% y(1)=x(1)+z(1)
% y(t)=y(t-1)*x(t)+z(t) for t=2,..N
y=[];
y(1,:)=x(1,:)
www.eeworm.com/read/427515/7095577
m recserar.m
function y=recserar(x,y0,a)
% RECSERAR
% RECSERAR(x,y0,a) constructs a recursive time series
% x: N*K y0: P*K a: P*K y: N*K
% y(t)=x(t)+a(1)y(t-1)+...a(p)y(t-p) for t=p+1,..N
% y(t)=y0(t) f