代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/345167/11834444

cpp le_totalchoicegauss.cpp

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

cpp le_totalchoicegaussjordan.cpp

//LE_TotalChoiceGaussJordan.cpp 全选主元高斯-约当消去法 #include //输入输出流头文件 #include "LinearEquation.h" //线性方程(组)求解头文件 void main() { int i; double a[4][4] = //实系数矩阵 { {1.0,
www.eeworm.com/read/155761/11850440

bas mainmodule.bas

Attribute VB_Name = "MainModule" Sub Main() Dim cpxZ As Complex Dim dblM As Double Dim i As Integer, n As Integer Dim sComplex As String, sMsg As String Dim cpxZR() As Comple
www.eeworm.com/read/344551/11873044

m plotc.m

%PLOTC plots a complex signal in 2D projection with variable projection angle. %The angle can be modified at any time using the slider: % slider at bottom: angle=0 the projection is the real part of
www.eeworm.com/read/344551/11873193

c cio.c

/* * G. Rilling, last modification: 3.2007 * gabriel.rilling@ens-lyon.fr * * code based on a student project by T. Boustane and G. Quellec, 11.03.2004 * supervised by P. Chainais (ISIMA - LIMOS - Univ
www.eeworm.com/read/258131/11882763

m demod2d.m

% Demod2D transforms received symbol values into log-likelihoods % % The calling syntax is: % [output] = Demod2D( input, S_matrix, EsNo, [fade_coef] ) % % output = M by N matrix of symbol
www.eeworm.com/read/155163/11892925

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/155163/11892950

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/256510/11992472

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/256510/11993238

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