搜索结果
找到约 11,203 项符合
n-to-default 的查询结果
金融证券系统 code to price a n-to-default basket CDS. It takes as input hazard rate coefficients and uses T-copul
code to price a n-to-default basket CDS. It takes as input hazard rate coefficients and uses T-copula model to calculate fair rate of CDS
VC书籍 This section contains a brief introduction to the C language. It is intended as a tutorial on the la
This section contains a brief introduction to the C language. It is intended as a tutorial on the language, and aims at getting a reader new to C started as quickly as possible. It is certainly not intended as a substitute for any of the numerous textbooks on C. 2. write a recursive function FIB (n) ...
数值算法/人工智能 The Window Design Method The basic idea behind the design of linear-phase FIR filters using the win
The Window Design Method
The basic idea behind the design of linear-phase FIR filters using the window
method is to choose a proper ideal frequency-selective filter [which always has
a noncausal, infinite duration impulse response] and then truncate its impulse
response hd[n] to obtain a linear-phas ...
源码 二叉树子系统
#include<stdio.h>
#define TREEMAX 100
typedef struct&nbsp; BT
{
char data;
BT *lchild;
BT *rchild;
}BT;
BT *CreateTree();
void Preorder(BT *T);
void Postorder(BT *T);
void Inorder(BT *T);
void Leafnum(BT *T);
void Nodenum(BT *T);
int TreeDepth(BT *T);
int count=0;
void main()
{
BT *T=NULL;
char ...
嵌入式Linux Embest S3C44B0X Evaluation Board RTC Test Example RTC Check(Y/N)? y Set Default Time at 2004
Embest S3C44B0X Evaluation Board
RTC Test Example
RTC Check(Y/N)? y
Set Default Time at 2004-12-31 FRI 23:59:59
Set Alarm Time at 2005-01-01 00:00:01
... RTC Alarm Interrupt O.K. ...
Current Time is 2005-01-01 SAT
00:00:01
RTC Working now. To set date(Y/N)? y
Current date is (2005,01,01, ...
数值算法/人工智能 QR ALGORITHM To obtain the eigenvalues of a symmetric, tridiagonal n by n matrix
QR ALGORITHM To obtain the eigenvalues of a symmetric, tridiagonal n by n matrix
汇编语言 用汇编语言,并且递归求菲波那契函数FIB(N)---(N from 1 to 24) (huangyujie)
用汇编语言,并且递归求菲波那契函数FIB(N)---(N from 1 to 24) (huangyujie)
数据结构 著名的n皇后问题。实现结果为 请输入这是一个几皇后问题:4 4皇后问题有解为: 2 4 1 3 4皇后问题有解为: 3 1 4 2 Press any key to continue
著名的n皇后问题。实现结果为
请输入这是一个几皇后问题:4
4皇后问题有解为:
2 4 1 3
4皇后问题有解为:
3 1 4 2
Press any key to continue
数值算法/人工智能 Routine mampres: To obtain amplitude response from h(exp(jw)). input parameters: h :n dimensione
Routine mampres: To obtain amplitude response from h(exp(jw)).
input parameters:
h :n dimensioned complex array. the frequency response is stored
in h(0) to h(n-1).
n :the dimension of h and amp.
fs :sampling frequency (Hz).
iamp:If iamp=0: The Amplitude Res. amp(k)=abs(h(k))
If iamp=1: The ...
matlab例程 工程计算MATLAB code to calculate the reorthogonalized sine tapers input: N = the length of the time se
工程计算MATLAB code to calculate the reorthogonalized sine tapers
input: N = the length of the time series data to be tapered
p = the number of tapers requested
I = the gap structure a vector of length N
I(t) = 1 if there is data at time t, t=1, ..., N
I(t) = 0 if there is a gap at time t
...