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

📄 readsignal.m

📁 《 software Defined GPS and Galilleo Receiver》源码
💻 M
字号:
function ReadSignal (Tint)
Tint=1; 
% System RF parameters
Fs = 38192000;              % Sampling frequency [Hz]
IF = 9548000;               % Intermediate frequency [Hz]
Ns = Fs * (Tint/1000);      % Number of samples per integration time Tint

% Opening the signal and storing Tint ms in the variable Data
[fid, message] = fopen('GPSdata-DiscreteComponents-fs38_192-if9_55.bin', 'rb');
Data = fread(fid, Ns, 'int8')';
fclose(fid);

⌨️ 快捷键说明

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