代码搜索:快速傅里叶
找到约 10,000 项符合「快速傅里叶」的源代码
代码结果 10,000
www.eeworm.com/read/165890/10047879
cpp 快速排序.cpp
#include
typedef int InfoType;
#define n 10 //假设的文件长度,即待排序的记录数目
typedef int KeyType; //假设的关键字类型
typedef struct { //记录类型
KeyType key; //关键字项
InfoType otherinfo; //其它数据
www.eeworm.com/read/360487/10090292
java 快速排序.java
public class qsort {
//private int m,n;
//private int array[] = new int[n];
public static void sort (int array1[], int m, int n )
{ int splitpoint;
int low = m;
www.eeworm.com/read/358203/10193837
doc 快速排序.doc
www.eeworm.com/read/355726/10249265
txt 快速排序.txt
///////////////////////////////////////////////
// 作者:03031A班 李戬 //
// //
// 2003年 12月 28日 晚 //
///////////////////////////////////////////////
#include
#i
www.eeworm.com/read/162336/10313225
ncb 快速排序.ncb
www.eeworm.com/read/162336/10313229
dsp 快速排序.dsp
# Microsoft Developer Studio Project File - Name="快速排序" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/162336/10313233
plg 快速排序.plg
Build Log
--------------------Configuration: 快速排序 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\颜骏\LOCAL
www.eeworm.com/read/162336/10313236
opt 快速排序.opt
www.eeworm.com/read/162336/10313239
dsw 快速排序.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/424027/10506049
m 快速变换.m
function fdct = fast_dct2D(img)
%快速DCT变换,其根据文献《一中简便快速的DCT算法及其硬件实现》
%文献中提到这种DCT变换可以将复杂的乘法计算分解为简单的移位和加法计算
%从而提升计算速度 程序表示式为
% fdct = T .* img .* T’
%% 程序
T = dctmtx(8);