资源简介
分形高斯噪声完整版.zip

代码片段和文件信息
%
% Author: Stilian Stoev (C) sstoev@math.bu.edu
%
% This function computes the discrete convolution of the vectors
% a and b efficiently by using the FFT algorithm.
%
% input:
% a <- a vector
% b <- a vector with the same dimensions as a
% force <- if force == 1 then the FFT‘s are “forced“ to be
% of dyadic complexity.
%
% output:
% c <- the discrete convolution of a and b that is
% (a(1)*b(1) a(1)*b(2)+a(2)*b(1) ...)
%
% usage:
% c = fftconv(abforce);
%
% Written by sstoev@math.bu.edu
%
function c = fftconv(abforce);
na = length(a);
nb = length(b);
if force
n = 2^(fix(log2(na+nb))+1);
else
n=na+nb;
end;
A = fft(an);
B = fft(bn);
c = ifft(A.*Bn);
c = real(c(1:na+nb-1));
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 760 2018-04-03 10:36 分形高斯噪声\fftconv.m
文件 3135 2018-04-02 21:19 分形高斯噪声\fftfgn.m
目录 0 2018-04-03 10:37 分形高斯噪声\
- 上一篇:NPinyin.dll
- 下一篇:LabVIEW通过串口通信与单片机通信程序
相关资源
- PID_AutoTune_v0.rar
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
评论
共有 条评论