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

📄 display.m

📁 There are numerous MATLAB m-files included in this software package. Thus, the the authors have bund
💻 M
字号:
function display(b)
for i = 1 : size(b.iPRN,2)
    fprintf('Epoch \n');
    b.dTime(i)
    for j = 1 : size(b.iPRN,1)
        if b.iPRN(j,i) == 0
            continue;
        end
        fprintf('Satellite number %d\n', b.iPRN(j,i));
        fprintf('X-coordinate [m]: %11.3f\n', b.dX(j,i));
        fprintf('Y-coordinate [m]: %11.3f\n', b.dY(j,i));
        fprintf('Z-coordinate [m]: %11.3f\n', b.dZ(j,i));
        fprintf('Clock correction: %g\n', b.dDts(j,i));
    end
end

⌨️ 快捷键说明

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