Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

MatLab Code: Develop a GUI Calculator to perform the following conversion of GPS

ID: 3875027 • Letter: M

Question

MatLab Code:

Develop a GUI Calculator to perform the following conversion of GPS coordinates

function varargout = DMS2DD_GUI_LDA(varargin)

% DMS2DD_GUI_LDA M-file for DMS2DD_GUI_LDA.fig

% DMS2DD_GUI_LDA, by itself, creates a new DMS2DD_GUI_LDA or raises the existing

% singleton*.

%

% H = DMS2DD_GUI_LDA returns the handle to a new DMS2DD_GUI_LDA or the handle to

% the existing singleton*.

%

% DMS2DD_GUI_LDA('CALLBACK',hObject,eventData,handles,...) calls the local

% function named CALLBACK in DMS2DD_GUI_LDA.M with the given input arguments.

%

% DMS2DD_GUI_LDA('Property','Value',...) creates a new DMS2DD_GUI_LDA or raises the

% existing singleton*. Starting from the left, property value pairs are

% applied to the GUI before DMS2DD_GUI_LDA_OpeningFcn gets called. An

% unrecognized property name or invalid value makes property application

% stop. All inputs are passed to DMS2DD_GUI_LDA_OpeningFcn via varargin.

%

% *See GUI Options on GUIDE's Tools menu. Choose "GUI allows only one

% instance to run (singleton)".

%

% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help DMS2DD_GUI_LDA

% Last Modified by GUIDE v2.5 05-Jan-2018 13:14:03

% Begin initialization code - DO NOT EDIT

gui_Singleton = 1;

gui_State = struct('gui_Name', mfilename, ...

'gui_Singleton', gui_Singleton, ...

'gui_OpeningFcn', @DMS2DD_GUI_LDA_OpeningFcn, ...

'gui_OutputFcn', @DMS2DD_GUI_LDA_OutputFcn, ...

'gui_LayoutFcn', [] , ...

'gui_Callback', []);

if nargin && ischar(varargin{1})

gui_State.gui_Callback = str2func(varargin{1});

end

if nargout

[varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});

else

gui_mainfcn(gui_State, varargin{:});

end

% End initialization code - DO NOT EDIT

% --- Executes just before DMS2DD_GUI_LDA is made visible.

function DMS2DD_GUI_LDA_OpeningFcn(hObject, eventdata, handles, varargin)

% This function has no output args, see OutputFcn.

% hObject handle to figure

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% varargin command line arguments to DMS2DD_GUI_LDA (see VARARGIN)

% Choose default command line output for DMS2DD_GUI_LDA

handles.output = hObject;

% Update handles structure

guidata(hObject, handles);

% UIWAIT makes DMS2DD_GUI_LDA wait for user response (see UIRESUME)

% uiwait(handles.figure1);

% --- Outputs from this function are returned to the command line.

function varargout = DMS2DD_GUI_LDA_OutputFcn(hObject, eventdata, handles)

% varargout cell array for returning output args (see VARARGOUT);

% hObject handle to figure

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Get default command line output from handles structure

varargout{1} = handles.output;

% --- Executes on selection change in popupmenu1.

function popupmenu1_Callback(hObject, eventdata, handles)

% hObject handle to popupmenu1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns popupmenu1 contents as cell array

% contents{get(hObject,'Value')} returns selected item from popupmenu1

% --- Executes during object creation, after setting all properties.

function popupmenu1_CreateFcn(hObject, eventdata, handles)

% hObject handle to popupmenu1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

set(hObject, 'String', {'N', 'S'});

% --- Executes on button press in pushbutton1.

function pushbutton1_Callback(hObject, eventdata, handles)

% hObject handle to pushbutton1 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% 1. USE THE GET COMMAND TO OBTAIN USER INPUT DATA

degLAT = get(handles.degLAT, 'Value');

% 2. THIS IS YOUR CODE

% 3. USE THE SET COMMAND TO SHOW THE OUTPUT

set(handels.DDLAT,'String',num2str(DDLAT))

function degLAT_Callback(hObject, eventdata, handles)

% hObject handle to degLAT (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of degLAT as text

% str2double(get(hObject,'String')) returns contents of degLAT as a double

% --- Executes during object creation, after setting all properties.

function degLAT_CreateFcn(hObject, eventdata, handles)

% hObject handle to degLAT (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

function minLAT_Callback(hObject, eventdata, handles)

% hObject handle to minLAT (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of minLAT as text

% str2double(get(hObject,'String')) returns contents of minLAT as a double

% --- Executes during object creation, after setting all properties.

function minLAT_CreateFcn(hObject, eventdata, handles)

% hObject handle to minLAT (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

function secLAT_Callback(hObject, eventdata, handles)

% hObject handle to secLAT (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of secLAT as text

% str2double(get(hObject,'String')) returns contents of secLAT as a double

% --- Executes during object creation, after setting all properties.

function secLAT_CreateFcn(hObject, eventdata, handles)

% hObject handle to secLAT (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

% --- Executes on selection change in popupmenu2.

function popupmenu2_Callback(hObject, eventdata, handles)

% hObject handle to popupmenu2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: contents = cellstr(get(hObject,'String')) returns popupmenu2 contents as cell array

% contents{get(hObject,'Value')} returns selected item from popupmenu2

% --- Executes during object creation, after setting all properties.

function popupmenu2_CreateFcn(hObject, eventdata, handles)

% hObject handle to popupmenu2 (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: popupmenu controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

set(hObject, 'String', {'W', 'E'});

function degLON_Callback(hObject, eventdata, handles)

% hObject handle to degLON (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of degLON as text

% str2double(get(hObject,'String')) returns contents of degLON as a double

% --- Executes during object creation, after setting all properties.

function degLON_CreateFcn(hObject, eventdata, handles)

% hObject handle to degLON (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

function minLON_Callback(hObject, eventdata, handles)

% hObject handle to minLON (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of minLON as text

% str2double(get(hObject,'String')) returns contents of minLON as a double

% --- Executes during object creation, after setting all properties.

function minLON_CreateFcn(hObject, eventdata, handles)

% hObject handle to minLON (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

function secLON_Callback(hObject, eventdata, handles)

% hObject handle to secLON (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'String') returns contents of secLON as text

% str2double(get(hObject,'String')) returns contents of secLON as a double

% --- Executes during object creation, after setting all properties.

function secLON_CreateFcn(hObject, eventdata, handles)

% hObject handle to secLON (see GCBO)

% eventdata reserved - to be defined in a future version of MATLAB

% handles empty - handles not created until after all CreateFcns called

% Hint: edit controls usually have a white background on Windows.

% See ISPC and COMPUTER.

if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))

set(hObject,'BackgroundColor','white');

end

Explanation / Answer

Few enhancements to the above code will work: