当前位置:网站首页>【MATLAB】通信信号调制通用函数 — 傅里叶变换
【MATLAB】通信信号调制通用函数 — 傅里叶变换
2022-07-04 03:55:00 【嵌入式职场】
目录
傅里叶变换
function [f,sf] = T2F(t,st)
%This is a function using the FFT function to calculate a signal's Fourier Translation
%Input is the time and the signal vectors,the length of time must greater than 2
%Output is the frequency and the signal spectrum
dt = t(2)-t(1);
T = t(end);
df = 1/T;
N = length(st);
f = (-(N/2)*df):df:((N/2)*df-df);
sf = fft(st);
sf = T/N*fftshift(sf);
边栏推荐
- [cloud native] those lines of code that look awesome but have a very simple principle
- 【MATLAB】通信信号调制通用函数 — 低通滤波器
- 附件二:攻防演练保密协议.docx
- Technology Management - learning / practice
- LeetCode136+128+152+148
- 红队视角下的防御体系突破之第一篇介绍、阶段、方法
- Deep understanding of redis -- bloomfilter
- Eig launched Grupo Cerro, a renewable energy platform in Chile
- 沃博联结束战略评估,决定保留表现优异的博姿业务
- Unity 接入天气系统
猜你喜欢
Unity中RampTex介绍和应用: 溶解特效优化
leetcode:1314. 矩阵区域和【二维前缀和模板】
Select function variable column name in dplyr of R language
MySQL indexes and transactions
[Yugong series] go teaching course 001 in July 2022 - Introduction to go language premise
Change the background color of Kivy tutorial (tutorial includes source code)
Architecture practice camp - graduation project of module 9 of phase 6
RAC delete damaged disk group
附件六:防守工作簡報.docx
Statistical genetics: Chapter 3, population genetics
随机推荐
EventBridge 在 SaaS 企业集成领域的探索与实践
Solve the problem of failed to load property source from location 'classpathapplication YML 'problem
Kivy教程之 更改背景颜色(教程含源码)
【云原生】那些看起来很牛X,原理却很简单的一行代码
Sample template of software design document - learning / practice
Redis: order collection Zset type data operation command
【Go】数据库框架gorm
【愚公系列】2022年7月 Go教学课程 001-Go语言前提简介
Operate the server remotely more gracefully: the practice of paramiko Library
附件六:防守工作簡報.docx
[cloud native] those lines of code that look awesome but have a very simple principle
6-5 vulnerability exploitation SSH weak password cracking and utilization
软件设计文档示例模板 - 学习/实践
[go] database framework Gorm
测试 CS4344 立体声DA转换器
How do good test / development programmers practice? Where to go
Test cs4344 stereo DA converter
Architecture training graduation design + summary
1. Mx6u-alpha development board (LED drive experiment in C language version)
两万字带你掌握多线程