代码搜索:信号失真
找到约 10,000 项符合「信号失真」的源代码
代码结果 10,000
www.eeworm.com/read/204642/15335830
m exa010102.m
%---------------------------------------------------------------------------------------
% exa010102.m, for example 1.1.2
% 说明 Chirp 信号的傅里叶变换和时频分析;
% 注:在该程序中,用到了子程序 tfstft.m, 还要用到显示程序 tfrqv
www.eeworm.com/read/200620/15428467
m f3_13.m
%产生信号
sig=fmlin(128,0.05,0.3,50);
%显示
plot(real(sig),'LineWidth',2);
hold on;
plot(imag(sig),'ro--','LineWidth',1);
legend('实部','虚部');
xlabel('时间 t');
ylabel('幅值 A');
www.eeworm.com/read/200352/15435094
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/200352/15435118
m exa010102.m
%---------------------------------------------------------------------------------------
% exa010102.m, for example 1.1.2
% 说明 Chirp 信号的傅里叶变换和时频分析;
% 注:在该程序中,用到了子程序 tfstft.m, 还要用到显示程序 tfrqv
www.eeworm.com/read/391734/8384042
c sensor_read.c
//读入HALL信号的值
#include "sfr.h"
#include "port.h"
extern unchar hall_value;
void sensor_read (void)
{
hall_value = sensor_in;
hall_value &= 0x07;
}
www.eeworm.com/read/192305/8388402
m exa010501.m
%---------------------------------------------------------------------------------------
% exa010501a.m, for example 1.5.1 and fig 1.5.1
% 给出两个chirp信号相加后,由瞬时频率定义求出的瞬时频率曲线,说明瞬时频率的不确切性;
% 注:在
www.eeworm.com/read/291584/8408615
m emd1.m
% EMD: Emprical mode decomposition(对信号进行EMD分解,并将各个imf绘出,以矩阵形式返回各个imf)
%
% imf = emd(x)
%
% x - input signal (must be a column vector or a row vector)
%
% This version will calculate all the i
www.eeworm.com/read/389451/8519332
m exa010501.m
%---------------------------------------------------------------------------------------
% exa010501a.m, for example 1.5.1 and fig 1.5.1
% 给出两个chirp信号相加后,由瞬时频率定义求出的瞬时频率曲线,说明瞬时频率的不确切性;
% 注:在
www.eeworm.com/read/188087/8573171
c queen.c
#include
#include
#define QUEENS 8
#define MAX_SOLUTIONS 92
typedef int bool;
const int true = 1;
const int false = 0;
/*枚举信号*/
enum msg_content
{
READY,
ACCOMPLISHED,
www.eeworm.com/read/383744/8921913
m tt.m
目录
tt1 SIN曲线
tt2 矩阵的基本概念
tt3 数组的基本概念
tt4 不连续信号的表示
tt10 for循环举例