代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/203939/15348578
h fftwrap.h
/* Copyright (C) 2005 Jean-Marc Valin
File: fftwrap.h
Wrapper for various FFTs
Redistribution and use in source and binary forms, with or without
modification, are permitted provided t
www.eeworm.com/read/203170/15364490
c fft_shuffling.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/203170/15364503
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/202129/15390389
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/112799/15476500
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/112799/15476515
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/107918/15598086
txt fft算法.txt
http://www.vchelp.net/cndevforum/subject_view.asp?subject_id=105642&forum_id=47
正在学数字信号处理,感觉上学期信号与系统学得不扎实,因为当时只是死记公式,这学期数信老师提倡动手实践,觉得自己在编程中对公式理解得更加深刻了。
以下是我写的FFT,欢迎指教。
/*时间抽选基2FFT及IFFT算
www.eeworm.com/read/104456/15691887
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/103612/15727996
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/103612/15728035
cpp le_totalchoicegaussjordan.cpp
//LE_TotalChoiceGaussJordan.cpp 全选主元高斯-约当消去法
#include //输入输出流头文件
#include "LinearEquation.h" //线性方程(组)求解头文件
void main()
{
int i;
double a[4][4] = //实系数矩阵
{
{1.0,