代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/414760/11103233
f90 mcerror.f90
MODULE cerror_func
! From the book "Computation of Special Functions"
! by Shanjie Zhang and Jianming Jin
! Copyright 1996 by John Wiley & Sons, Inc.
! The authors state:
! "However,
www.eeworm.com/read/413253/11160975
h matrix.h
#ifndef _MATRIX_H
#define _MATRIX_H
#include "complex.h"
enum Fill_Way{crs,row,col,all};
void printArray(int,Complex *);
class Matrix{ //仅为方阵!!
private:
int dimension;
int cross;
Complex **
www.eeworm.com/read/266116/11239735
cpp demo_operator_01_b.cpp
//************************************************
// 运算符函数重载为非成员,非友元的普通函数.
//************************************************
# include
class Complex
{
public:
Complex(){re
www.eeworm.com/read/266102/11240324
m z2s.m
%MATLAB function z2s.m converts a network's impedance
%matrix, Z, into the appertaining generalized S matrix.
%The function is called up by S = z2s(Z0, Z). It needs
%as its input arguments not only
www.eeworm.com/read/266102/11240333
m y2s.m
%MATLAB function y2s.m converts a network's admittance
%matrix, Y, into the appertaining generalized S matrix.
%The function is called up by S = y2s(Z0, Y). It needs
%as its input arguments not onl
www.eeworm.com/read/335822/12495711
txt fft.txt
void CMyvirtualDlg::FFT(COMPLEX *x,int m)
{
static COMPLEX *w;
static int mstore = 0;
static double n= 1;
COMPLEX u,temp,tm;
COMPLEX *xi,*xip,*xj,*wptr;
int i,j,k,l,le,windex;
dou
www.eeworm.com/read/248715/12544963
c pse.c
/*********************************************************************
PSE.C - 用FFT实现功率谱估计
程序输入一个加入噪声的正弦信号, 采用周期图法来实现功率谱分析
参数如下:
slice = 每次FFT的长度,缺省为256;
numav = FFT取平均的组数,缺省为16;
ovlap
www.eeworm.com/read/248715/12544970
c fastcor.c
/***********************************************************************
FASTCOR.C - 使用FFT实现快速相关
该程序利用FFT实现快速相关运算.
输入序列为两个具有相关性的信号,一个输入信号
为两个不同频率的信号迭加而成,另一个输入信号
为其中一个频率的单频信号.若两个输入信号相同
则为自相关.
www.eeworm.com/read/248715/12544972
c rad4fft.c
/**********************************************************************
rad4fft 基4 DIT FFT
rad4ifft 基4 DIT IFFT
draw_image 绘图子程序
**********************************************************
www.eeworm.com/read/248715/12544973
c fsample.c
/**********************************************************************
FSAMPLE.C - 取样混迭演示程序
dft 离散傅里叶变换函数
idft IDFT 函数
draw_image 绘图子程序
************************************