当前位置:网站首页>matlab 风速模型 小波滤波
matlab 风速模型 小波滤波
2022-08-01 05:25:00 【studyer_domi】
1、内容简介
略
469-可以交流、咨询、答疑
2、内容说明
任务要求
设A为函数A=3+ 2sin32t+ 1/5sin*(1/10π)te
N序列是为噪声,模型为大气的阵风模型,在网上csdn能找到4
wwww
任务要求:其实就是在A模型.上叠加一-个噪音,然后把这个噪音用滤波的方法滤掉,但是这
个噪音的模型必须是阵风的模型,阵风的模型最好能调整到32赫兹。A函数是-个连续的
解析函数,基本构成就是一-个定值加一-个高阶的三角函数。
要求:有A的图像
有N的图像小
有A+N的图像
和滤波后的图像
以及差值图像
全套程序代码等相关文件。
3、仿真分析
clc
close all
clear
rng default
fs = 200; %采样频率
t = 0:1/fs:50; %时间信号
A = 3+2*sin(20*t)+sin(2*pi*t); %A模型数据
figure
plot(t,A)
xlabel 时间/s
ylabel 幅值
title A信号
% 0.5*sin(80*t) + 0.5*cos(60*t)+
N = 0.5*sin(40*t) + 0.5*cos(60*t)+0.1*rand(1,length(t)); %随机信号
figure
plot(t,N)
xlabel 时间/s
ylabel 幅值
title N信号
signal = A + N; %加入噪音的模型数据;
figure
plot(t,signal)
xlabel 时间/s
ylabel 幅值
title A+N信号
[xd,cxd,lxd] = wden(signal,'sqtwolog','s','one',2,'db3');
figure
plot(t,xd,t,A); %Mix_Signal_1 小波滤波后信号


4、参考论文
略
边栏推荐
猜你喜欢

DL-31/6电流继电器

零序电流继电器器JL-8C-12-2-2

PAT serie b write the number 1002

2022.7.26 Mock Competition

MySQL-Data Definition Language-DDLdatebase define language

Induction jian hai JustFE 2022/07/29 team, I learned the efficient development summary (years)

pytorch、tensorflow对比学习—张量

2022/07/29 入职健海JustFE团队,我学到了高效开发(年中总结)

(2022 Niu Ke Duo School IV) K-NIO's Sword (Thinking)

剑指 Offer 68 - II. 二叉树的最近公共祖先
随机推荐
Robot_Framework:常用内置关键字
pytroch、tensorflow对比学习—使用GPU训练模型
WebSocket implements chat function
NUMPY
Error: AttributeError: module 'matplotlib' has no attribute 'figure'
About making a progress bar for software initialization for Qt
Selenium: JS operation
leetcode43 字符串相乘
第6章——数据库的安全性
(2022牛客多校四)A-Task Computing (排序+动态规划)
Selenium: element positioning
leetcode125 Verify palindrome string
Jupyter shortcuts
(Codeforce 757) E. Bash Plays with Functions
2022年超全的Android面经(附含面试题|进阶资料)
Selenium:简介
剑指 Offer 68 - II. 二叉树的最近公共祖先
Asynchronous reading and writing of files
pytorch、tensorflow对比学习—张量
可持久化线段树