MCPcopy Create free account
hub / github.com/MIT-SPARK/Kimera-VIO / read_values

Function read_values

scripts/plotting/python_plotter.py:22–28  ·  view source on GitHub ↗

readValues

(file_path)

Source from the content-addressed store, hash-verified

20 return theta
21
22def read_values(file_path):
23 "readValues"
24 with open(file_path, "r") as filehandle:
25 matrix = [x.strip().split('\t') for x in filehandle]
26 # Remove first line, which might contain only column definitions
27 matrix = matrix[1:-1]
28 return matrix
29
30def main():
31 "Main"

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected