My .mat files contains data tested on a vehicle which includes latitudes, longitudes, speed etc.

2 views (last 30 days)
I want to plot GPS Trace data which is Latitude Vs longitude which is stored as Signal_82 and Signal_81 respectively in columns in the .mat file. How do I access the file and plot the data ?

Answers (1)

dpb
dpb on 14 Oct 2023
load yourfile.mat
plot(Signal_82,Signal_81)
just maybe????

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!