代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/289221/8568187

cpp fft.cpp

#include #include #include #include #include #include /* COMPLEX STRUCTURE */ typedef struct { float real, imag; } COMPL
www.eeworm.com/read/187574/8623372

m qpsk.m

clear all; clc; num=100; %原始信息序列长度 samp=100; %采样点数 delta_T=1/samp; %采样间隔 N=samp*num;
www.eeworm.com/read/187542/8626554

cpp pgm0a_05.cpp

// // This file contains the C++ code from Program A.5 of // "Data Structures and Algorithms // with Object-Oriented Design Patterns in C++" // by Bruno R. Preiss. // // Copyright (c) 1998
www.eeworm.com/read/237367/8626680

asm freqflt.asm

; ; freqflt.asm - Routine to perform frequency domain filtering ; ; Protptye: void freqflt(complex *, complex *, unsigned int); ; ; Entry: arg0: AR0 is the pointer to X[] ; ar
www.eeworm.com/read/187542/8627483

cpp pgm0a_06.cpp

// // This file contains the C++ code from Program A.6 of // "Data Structures and Algorithms // with Object-Oriented Design Patterns in C++" // by Bruno R. Preiss. // // Copyright (c) 1998
www.eeworm.com/read/187542/8627621

cpp pgm0a_04.cpp

// // This file contains the C++ code from Program A.4 of // "Data Structures and Algorithms // with Object-Oriented Design Patterns in C++" // by Bruno R. Preiss. // // Copyright (c) 1998
www.eeworm.com/read/187542/8627675

cpp pgm0a_03.cpp

// // This file contains the C++ code from Program A.3 of // "Data Structures and Algorithms // with Object-Oriented Design Patterns in C++" // by Bruno R. Preiss. // // Copyright (c) 1998
www.eeworm.com/read/287520/8684253

c fft.c

/* fft.c -- in-place decimation-in-time FFT */ #include void shuffle(), dftmerge(); void fft(N, X) complex *X; int N; { shuffle(N, X); dftmerge(N, X); }
www.eeworm.com/read/287520/8684263

c shuffle.c

/* shuffle.c - in-place shuffling (bit-reversal) of a complex array */ #include void swap(); int bitrev(); void shuffle(N, X) complex *X; int N; /* \(N\
www.eeworm.com/read/384265/8884663

cpp le_totalchoicegauss.cpp

//LE_TotalChoiceGauss.cpp 全选主元高斯消去法 #include //输入输出流头文件 #include "LinearEquation.h" //线性方程(组)求解头文件 void main() { int i; double a[4][4] = //实系数矩阵 { {0.2368, 0.2471,