필터 지우기
필터 지우기

GPS GUI in Matlab

조회 수: 2 (최근 30일)
Ugue Halden
Ugue Halden 2016년 4월 25일
답변: Vaibhav Awale 2016년 5월 2일
I need to design a GUI which has to show 2 plots ( plot1=gps coordinates with plot_google_maps function, plot2=accelerometer values with respect to time. )
Here is the GUI i designed:
When i run the .m file, it automatically plots the gps data to axes3, but i need it to plot axes 1 and acc_z values to axes3. Are there anyways to do that?
Here is the picture after i press Run Google_Maps:
P.s: I uploaded my .m file, i didn't intended to copy-paste the code to here because it is kinda long.
Any kind of help is appreciated.

채택된 답변

Vaibhav Awale
Vaibhav Awale 2016년 5월 2일
Hi Ugue,
You need to specify the axes where you want to plot the figure. Right now, since you have not specified any axes to plot to, it plots to the "current axes" and current axes in your case is "axes3". Hence it plots both accelerometer data and GPS data in same plot. To rectify this, you can specify the axes that you want to plot to in the "scatter" function and in plot_google_map function.
The axes can be specified by making use of "handles" structure in the GUI. I have attached an example in which I am using following syntax to plot to a specific axes:
scatter(handles.axes1, sin(0:0.1:2*pi),cos(0:0.1:2*pi)); %To plot to axes1
plot(handles.axes2, cos(0:0.1:2*pi)); % To plot to axes2
I hope this answers your question.
Regards,
Vaibhav

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Performance에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by