当前位置:网站首页>【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);边栏推荐
- Leetcode 121 best time to buy and sell stock (simple)
- First knowledge of batch processing
- Change the background color of Kivy tutorial (tutorial includes source code)
- Main applications of TDK lambda power supply
- Asahi Kasei participated in the 5th China International Import Expo (5th ciie) for the first time
- NFT new opportunity, multimedia NFT aggregation platform okaleido will be launched soon
- 博朗与Virgil Abloh于2021年为纪念博朗品牌100周年而联合打造的“功能性艺术”将在博物馆展出Abloh作品期间首次亮相
- 【愚公系列】2022年7月 Go教学课程 001-Go语言前提简介
- @Feignclient comments and parameters
- LeetCode136+128+152+148
猜你喜欢
随机推荐
Talking about JVM
Talking about what a high-quality little red book copy needs to have
Distributed cap theory
What is the difference between Western Digital Green disk, blue disk, black disk, red disk and purple disk
Acwing game 58
浅谈JVM的那些事
Balloon punching and Boolean operation problems (extremely difficult)
Architecture training graduation design + summary
Definition of DCDC power supply current
RPC - grpc simple demo - learn / practice
更优雅地远程操作服务器:Paramiko库的实践
6-5 vulnerability exploitation SSH weak password cracking and utilization
MySQL JDBC programming
红队视角下的防御体系突破之第二篇案例分析
Redis: operation command for collecting set type data
What should a novice pay attention to when looking for an escort
Binary search tree
The five pictures tell you: why is there such a big gap between people in the workplace?
C language one-way linked list exercise
分布式CAP理论








