资源简介
用C#实现的FFT和IFFT类,方便初学者进行学习,也可直接在代码里使用
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FFT
{
///
/// 复数类
///
class Complex
{
///
/// 默认构造函数
///
public Complex()
: this(0 0)
{
}
///
/// 只有实部的构造函数
///
/// 实部
public Complex(double real)
: this(real 0) { }
///
/// 由实部和虚部构造
///
/// 实部
/// 虚部
public Complex(double real double image)
{
this.real = real;
this.image = image;
}
private double real;
///
/// 复数的实部
///
public double Real
{
get { return real; }
set { real = value; }
}
private double image;
///
/// 复数的虚部
///
public double Image
{
get { return image; }
set { image = value; }
}
///重载加法
public static Complex operator +(Complex c1 Complex c2)
{
return new Complex(c1.real + c2.real c1.image + c2.image);
}
///重载减法
public static Complex operator -(Complex c1 Complex c2)
{
return new Complex(c1.real - c2.real c1.image - c2.image);
}
///重载乘法
public static Complex operator *(Complex c1 Complex c2)
{
return new Complex(c1.real * c2.real - c1.image * c2.image c1.image * c2.real + c1.real * c2.image);
}
///
/// 求复数的模
///
/// 模
public double ToModul()
{
return Math.Sqrt(real * real + image * image);
}
///
/// 重载ToString方法
///
/// 打印字符串
public override string ToString()
{
if (Real == 0 && Image == 0)
{
return string.Format(“{0}“ 0);
}
if (Real == 0 && (Image != 1 && Image != -1))
{
return string.Format(“{0} i“ Image);
}
if (Image == 0)
{
return string.Format(“{0}“ Real);
}
if (Image == 1)
{
return string.Format(“i“);
}
if (Image == -1)
{
return string.Format(“- i“);
}
if (Image < 0)
{
return string.Format(“{0} - {1} i“ Real -Image);
}
return string.Format(“{0} + {1} i
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 187 2014-12-02 20:29 FFT\FFT\App.config
文件 8192 2014-12-02 21:54 FFT\FFT\bin\Debug\FFT.exe
文件 187 2014-12-02 20:29 FFT\FFT\bin\Debug\FFT.exe.config
文件 24064 2014-12-02 21:54 FFT\FFT\bin\Debug\FFT.pdb
文件 22984 2014-12-02 21:58 FFT\FFT\bin\Debug\FFT.vshost.exe
文件 187 2014-12-02 20:29 FFT\FFT\bin\Debug\FFT.vshost.exe.config
文件 3180 2014-12-02 20:36 FFT\FFT\Complex.cs
文件 2624 2014-12-02 21:15 FFT\FFT\FFT.csproj
文件 1799 2014-12-02 21:44 FFT\FFT\FFTMain.cs
文件 4502 2014-12-02 21:38 FFT\FFT\FFT_IFFT.cs
文件 6442 2014-12-02 21:15 FFT\FFT\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 217 2014-12-02 21:58 FFT\FFT\obj\Debug\FFT.csproj.FileListAbsolute.txt
文件 8192 2014-12-02 21:54 FFT\FFT\obj\Debug\FFT.exe
文件 24064 2014-12-02 21:54 FFT\FFT\obj\Debug\FFT.pdb
文件 0 2014-12-02 20:29 FFT\FFT\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
文件 0 2014-12-02 20:29 FFT\FFT\obj\Debug\TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
文件 0 2014-12-02 20:29 FFT\FFT\obj\Debug\TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
文件 1326 2014-12-02 20:29 FFT\FFT\Properties\AssemblyInfo.cs
文件 1377 2014-12-02 21:46 FFT\FFT.sln
..A..H. 39936 2014-12-02 22:52 FFT\FFT.v11.suo
文件 187 2014-12-02 21:45 FFT\FFT_Form\App.config
文件 523 2014-12-02 21:46 FFT\FFT_Form\AppMain.cs
文件 9728 2014-12-02 22:37 FFT\FFT_Form\bin\Debug\FFT_Form.exe
文件 187 2014-12-02 21:45 FFT\FFT_Form\bin\Debug\FFT_Form.exe.config
文件 24064 2014-12-02 22:37 FFT\FFT_Form\bin\Debug\FFT_Form.pdb
文件 22984 2014-12-02 22:37 FFT\FFT_Form\bin\Debug\FFT_Form.vshost.exe
文件 187 2014-12-02 21:45 FFT\FFT_Form\bin\Debug\FFT_Form.vshost.exe.config
文件 3810 2014-12-02 21:54 FFT\FFT_Form\FFT_Form.csproj
文件 2736 2014-12-02 22:52 FFT\FFT_Form\MainForm.cs
文件 5163 2014-12-02 22:02 FFT\FFT_Form\MainForm.Designer.cs
............此处省略37个文件信息
- 上一篇:C#服装仓库管理系统
- 下一篇:新生报到管理系统
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论