readsignal.m
来自「《 software Defined GPS and Galilleo Rece」· M 代码 · 共 11 行
M
11 行
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 + =
减小字号Ctrl + -
显示快捷键?