⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 l1psd.m

📁 一个关于射频的matlab程序.希望对大家有所帮助.
💻 M
字号:
% L1PSD Script to plot the theoretical power spectrum of the GPS L1 signal

% Set the reference level
ref = -130;

%Set the thermal noise level
noise = -111;

f = 1500:0.01:1650;
CA = sinc((1575.42 - f)/1.023).^2./1.023;
P = sinc((1575.42 - f)/10.23).^2./10.23;

L1 = (CA + P/2);

plot(f, dbP(L1) + ref, 'b', f, noise*ones(1,length(f)), 'r');

axis ([1550 1600 ref-50 noise+5]);
title('Theoretical GPS L1 Signal Spectrum');
xlabel('Frequency (MHz)');
ylabel('Received Power dBm');
grid;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -