代码搜索:信号功率
找到约 10,000 项符合「信号功率」的源代码
代码结果 10,000
www.eeworm.com/read/386028/8770931
m dft法求周期信号功率谱.m
clf;
Fs=1000;
N=256;
Nfft=256;
n=0:N-1;
t=n/Fs;
xn=sin(2*pi*50*t)+2*sin(2*pi*120*t)+randn(1,N);
Pxx=10*log10(abs(fft(xn,Nfft).^2)/(N+1));
f=(0:length(Pxx)-1)*Fs/length(Pxx);
subplot(211)
plo
www.eeworm.com/read/138251/13247590
doc 实验五 随机信号功率谱分析.doc
www.eeworm.com/read/264066/11330949
m x_power.m
x1=xcorr(x); %求x的自相关函数x1
x1=fft(x1); %求x的一阶傅立叶变换
subplot(2,1,1);
plot(abs(x1))
title('数字基带信号功率谱密度')
www.eeworm.com/read/302266/13838277
txt 2psk信号波形及其功率谱.txt
%2PSK
clear all;
close all;
A=1;
fc=3; %3Hz
N_sample=8; %取样数
N=500; %码元数
Ts=1; %1Baud/s
dt=Ts/fc/N_sample; %波形采样间隔
t=0:dt:N*Ts-dt;
Lt=length(t);
%产生二进制信源
d=sign(randn(1,N));
dd=sige
www.eeworm.com/read/302246/13838453
txt 2psk信号波形及其功率谱.txt
%2PSK
clear all;
close all;
A=1;
fc=3; %3Hz
N_sample=8; %取样数
N=500; %码元数
Ts=1; %1Baud/s
dt=Ts/fc/N_sample; %波形采样间隔
t=0:dt:N*Ts-dt;
Lt=length(t);
%产生二进制信源
d=sign(randn(1,N));
dd=sige
www.eeworm.com/read/264066/11331061
asv sx2.asv
%随机数字基带信号
x=round(rand(1,30));%随机产生的1行100列数字基带信号
%数字基带信号功率谱密度
x1=xcorr(x); %求x的自相关函数x1
x1=fft(x1); %求x的一阶傅立叶变换
pl
www.eeworm.com/read/296501/8098412
msm 功率表测量负载功率.msm
www.eeworm.com/read/34198/1039677