14 lines
269 B
Python
14 lines
269 B
Python
from examples import gps_measurement as gps
|
|
from examples import second_order_system as sos
|
|
from examples import gps_fusion
|
|
|
|
|
|
def main():
|
|
#gps.run(LinearKalmanFilter)
|
|
#sos.run(LinearKalmanFilter)
|
|
gps_fusion.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|