当前位置:网站首页>【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);边栏推荐
- Solve the problem of failed to load property source from location 'classpathapplication YML 'problem
- Talking about what a high-quality little red book copy needs to have
- MIN_ RTO dialog
- 自动化测试selenium基础篇——webdriverAPI
- Correct the classpath of your application so that it contains a single, compatible version of com.go
- [wechat applet] good looking carousel map component
- Flutter 调用高德地图APP实现位置搜索、路线规划、逆地理编码
- The five pictures tell you: why is there such a big gap between people in the workplace?
- YoloV6实战:手把手教你使用Yolov6进行物体检测(附数据集)
- Utiliser des unités de mesure dans votre code pour une vie meilleure
猜你喜欢

Utiliser des unités de mesure dans votre code pour une vie meilleure

DCDC电源电流定义

Intersection traffic priority, illustration of intersection traffic rules

MySQL indexes and transactions

Annex VI: defense work briefing docx

Senior developers tell you, how to write excellent code?

在代码中使用度量单位,从而生活更美好

leetcode:1314. 矩阵区域和【二维前缀和模板】

通过dd创建asm disk

Rhcsa 04 - process management
随机推荐
Rhcsa 01 - create partitions and file systems
Annex VI: defense work briefing docx
技术管理 - 学习/实践
EIG在智利推出可再生能源平台Grupo Cerro
DCDC电源电流定义
CRS-4013: This command is not supported in a single-node configuration.
Beipiao programmer, 20K monthly salary, 15W a year, normal?
RPC - gRPC简单的demo - 学习/实践
Redis: operation command for collecting set type data
【Go】数据库框架gorm
Application scheme of Puyuan ds1000z series digital oscilloscope in communication principle experiment
分布式CAP理论
MIN_ RTO dialog
附件四:攻击方评分标准.docx
Kivy教程之 自定义字体(教程含源码)
Architecture training graduation design + summary
Acwing game 58
Leetcode 121 best time to buy and sell stock (simple)
Rhcsa 06 - suid, sgid, sticky bit (to be added)
深入解析结构化异常处理(SEH) - by Matt Pietrek