forked from JD-Kidd/7_DataAnalysisSuite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalyzeTest.m
More file actions
43 lines (40 loc) · 1.84 KB
/
AnalyzeTest.m
File metadata and controls
43 lines (40 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
function [ r, err ] = AnalyzeTest( Truth, Test )
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% Author: Marshall Herr
%%%
%%% Purpose: To analyse the performace of the VANTAGE system in a test
%%%
%%% Inputs:
%%% - Truth: A struct containing the following truth data:
%%% > t: A time vector corresponding to the x, y, z data
%%% > x: A cell containing vectors corresponding to the x component
%%% of the position vector for each CubeSat: x{i} = x position
%%% of CubeSat i
%%% > y: A cell containing vectors corresponding to the y component
%%% of the position vector for each CubeSat: y{i} = y position
%%% of CubeSat i
%%% > z: A cell containing vectors corresponding to the z component
%%% of the position vector for each CubeSat: z{i} = z position
%%% of CubeSat i
%%%
%%% - Test: A struct containing the following VANTAGE data:
%%% > t: A time vector corresponding to the x, y, z data
%%% > x: A cell containing vectors corresponding to the x component
%%% of the position vector for each CubeSat: x{i} = x position
%%% of CubeSat i
%%% > y: A cell containing vectors corresponding to the y component
%%% of the position vector for each CubeSat: y{i} = y position
%%% of CubeSat i
%%% > z: A cell containing vectors corresponding to the z component
%%% of the position vector for each CubeSat: z{i} = z position
%%% of CubeSat i
%%%
%%% Output:
%%% - r: A range vector
%%% - err: The error at each range data point in r
%%% - Graphs detailing the performance of the system
%%%
%%% Date Created: 24 March 2019
%%% Last Editted: 24 March 2019
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
end