Skip to content

Commit 0c7c1ce

Browse files
committed
local ENU WIP
1 parent 91c06fc commit 0c7c1ce

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

utils/solplot/octplotRTKtraj3d.m

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
function result = octplotRTKtraj3d(pos)
2+
3+
plot3(pos(0, :), pos(1, :), pos(2, :));
4+
result = 55;
5+
6+
endfunction

utils/solplot/plot/octplotRTKtraj3d.m

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function [resultState] = octplotRTKtraj3d(pos)
2+
3+
plot3(pos(0, :), pos(1, :), pos(2, :));
4+
resultState = 0;
5+
6+
disp("ssss");
7+
8+
endfunction

utils/solplot/plot/plot.h

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#ifndef PLOT_H
2+
#define PLOT_H
3+
4+
#include "rtklib.h"
5+
6+
void plotRTKtraj3d(solbuf_t *);
7+
8+
#endif

0 commit comments

Comments
 (0)