Plot from external function to GUI axes in Matlab









up vote
-1
down vote

favorite












I need to show the function I created "LinearOpticalElement.m" file into the GUI I created with axes in it. How should I go about it?



I have implemented cases just in case I need to add in more functions later on. How should I do it?



enter image description hereenter image description here



I have trouble with the GUI function calling another function which is LinearOpticalElementsGUI.m



function varargout = GUITest(varargin)
% GUITEST MATLAB code for GUITest.fig
% GUITEST, by itself, creates a new GUITEST or raises the existing
% singleton*.
%
% H = GUITEST returns the handle to a new GUITEST or the handle to
% the existing singleton*.
%
% GUITEST('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUITEST.M with the given input arguments.
%
% GUITEST('Property','Value',...) creates a new GUITEST or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GUITest_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUITest_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 GUITest

% Last Modified by GUIDE v2.5 26-Oct-2018 18:51:49

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @GUITest_OpeningFcn, ...
'gui_OutputFcn', @GUITest_OutputFcn, ...
'gui_LayoutFcn', , ...
'gui_Callback', );
if nargin && ischar(varargin1)
gui_State.gui_Callback = str2func(varargin1);
end

if nargout
[varargout1:nargout] = gui_mainfcn(gui_State, varargin:);
else
gui_mainfcn(gui_State, varargin:);
end
% End initialization code - DO NOT EDIT

% --- Executes just before GUITest is made visible.
function GUITest_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 GUITest (see VARARGIN)

% Choose default command line output for GUITest
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% This sets up the initial plot - only do when we are invisible
% so window can get raised using GUITest.
if strcmp(get(hObject,'Visible'),'off')
%plot(rand(5));
end

% UIWAIT makes GUITest wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = GUITest_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
varargout1 = handles.output;

% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

axes(LinearOpticalElementsGUI);


end


% ----------------------------------------------------------------- ---
function FileMenu_Callback(hObject, eventdata, handles)
% hObject handle to FileMenu (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function OpenMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to OpenMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
file = uigetfile('*.fig');
if ~isequal(file, 0)
open(file);
end

% --------------------------------------------------------------------
function PrintMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to PrintMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
printdlg(handles.figure1)

% --------------------------------------------------------------------
function CloseMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to CloseMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
selection = questdlg(['Close ' get(handles.figure1,'Name') '?'],...
['Close ' get(handles.figure1,'Name') '...'],...
'Yes','No','Yes');
if strcmp(selection,'No')
return;
end

delete(handles.figure1)


% --- 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 = get(hObject,'String') returns popupmenu1 contents as cell array
% contentsget(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', 'RH Circular');


And this is the LinearOpticalElementsGUI.m file



clear
clc
theta=0:2*pi/1000:2*pi;
x=cos(theta);
y=sin(theta);
x1(1)=0;
y1(1)=0;
xaxx=[-1;1];
xaxy=[0;0];
yaxx=[0;0];
yaxy=[-1;1];
figure('color','white');
for i=1:1:size(x')
x1(2)=x(i);
y1(2)=y(i);
xcompx(1)=x(i);
xcompy(1)=y(i);
xcompy(2)=0;
xcompx(2)=sqrt(x(i)^2+y(i)^2)*cos(theta(i));
ycompx(1)=x(i);
ycompy(1)=y(i);
ycompx(2)=0;
ycompy(2)=sqrt(x(i)^2+y(i)^2)*sin(theta(i));
plot(xaxx,xaxy,'b',yaxx,yaxy,'g',x,y,'r',xcompx,xcompy,'- b',ycompx,ycompy,'-g',x1,y1,'-ro')
axis square;
title('Right-Handed Circular polarization')
getframe();


end










share|improve this question























  • Please copy and paste the code rather than uploading images. It makes it easier for others to copy and paste your code.
    – Laurenz Albe
    Nov 8 at 20:19










  • You don't show the code for the optical element file so it is impossible to advise how to do this. Does it return any data?
    – scotty3785
    Nov 8 at 23:07










  • Sorry my bad, I will upload the code up
    – Alvin Lee
    Nov 9 at 9:13














up vote
-1
down vote

favorite












I need to show the function I created "LinearOpticalElement.m" file into the GUI I created with axes in it. How should I go about it?



I have implemented cases just in case I need to add in more functions later on. How should I do it?



enter image description hereenter image description here



I have trouble with the GUI function calling another function which is LinearOpticalElementsGUI.m



function varargout = GUITest(varargin)
% GUITEST MATLAB code for GUITest.fig
% GUITEST, by itself, creates a new GUITEST or raises the existing
% singleton*.
%
% H = GUITEST returns the handle to a new GUITEST or the handle to
% the existing singleton*.
%
% GUITEST('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUITEST.M with the given input arguments.
%
% GUITEST('Property','Value',...) creates a new GUITEST or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GUITest_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUITest_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 GUITest

% Last Modified by GUIDE v2.5 26-Oct-2018 18:51:49

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @GUITest_OpeningFcn, ...
'gui_OutputFcn', @GUITest_OutputFcn, ...
'gui_LayoutFcn', , ...
'gui_Callback', );
if nargin && ischar(varargin1)
gui_State.gui_Callback = str2func(varargin1);
end

if nargout
[varargout1:nargout] = gui_mainfcn(gui_State, varargin:);
else
gui_mainfcn(gui_State, varargin:);
end
% End initialization code - DO NOT EDIT

% --- Executes just before GUITest is made visible.
function GUITest_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 GUITest (see VARARGIN)

% Choose default command line output for GUITest
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% This sets up the initial plot - only do when we are invisible
% so window can get raised using GUITest.
if strcmp(get(hObject,'Visible'),'off')
%plot(rand(5));
end

% UIWAIT makes GUITest wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = GUITest_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
varargout1 = handles.output;

% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

axes(LinearOpticalElementsGUI);


end


% ----------------------------------------------------------------- ---
function FileMenu_Callback(hObject, eventdata, handles)
% hObject handle to FileMenu (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function OpenMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to OpenMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
file = uigetfile('*.fig');
if ~isequal(file, 0)
open(file);
end

% --------------------------------------------------------------------
function PrintMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to PrintMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
printdlg(handles.figure1)

% --------------------------------------------------------------------
function CloseMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to CloseMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
selection = questdlg(['Close ' get(handles.figure1,'Name') '?'],...
['Close ' get(handles.figure1,'Name') '...'],...
'Yes','No','Yes');
if strcmp(selection,'No')
return;
end

delete(handles.figure1)


% --- 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 = get(hObject,'String') returns popupmenu1 contents as cell array
% contentsget(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', 'RH Circular');


And this is the LinearOpticalElementsGUI.m file



clear
clc
theta=0:2*pi/1000:2*pi;
x=cos(theta);
y=sin(theta);
x1(1)=0;
y1(1)=0;
xaxx=[-1;1];
xaxy=[0;0];
yaxx=[0;0];
yaxy=[-1;1];
figure('color','white');
for i=1:1:size(x')
x1(2)=x(i);
y1(2)=y(i);
xcompx(1)=x(i);
xcompy(1)=y(i);
xcompy(2)=0;
xcompx(2)=sqrt(x(i)^2+y(i)^2)*cos(theta(i));
ycompx(1)=x(i);
ycompy(1)=y(i);
ycompx(2)=0;
ycompy(2)=sqrt(x(i)^2+y(i)^2)*sin(theta(i));
plot(xaxx,xaxy,'b',yaxx,yaxy,'g',x,y,'r',xcompx,xcompy,'- b',ycompx,ycompy,'-g',x1,y1,'-ro')
axis square;
title('Right-Handed Circular polarization')
getframe();


end










share|improve this question























  • Please copy and paste the code rather than uploading images. It makes it easier for others to copy and paste your code.
    – Laurenz Albe
    Nov 8 at 20:19










  • You don't show the code for the optical element file so it is impossible to advise how to do this. Does it return any data?
    – scotty3785
    Nov 8 at 23:07










  • Sorry my bad, I will upload the code up
    – Alvin Lee
    Nov 9 at 9:13












up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I need to show the function I created "LinearOpticalElement.m" file into the GUI I created with axes in it. How should I go about it?



I have implemented cases just in case I need to add in more functions later on. How should I do it?



enter image description hereenter image description here



I have trouble with the GUI function calling another function which is LinearOpticalElementsGUI.m



function varargout = GUITest(varargin)
% GUITEST MATLAB code for GUITest.fig
% GUITEST, by itself, creates a new GUITEST or raises the existing
% singleton*.
%
% H = GUITEST returns the handle to a new GUITEST or the handle to
% the existing singleton*.
%
% GUITEST('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUITEST.M with the given input arguments.
%
% GUITEST('Property','Value',...) creates a new GUITEST or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GUITest_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUITest_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 GUITest

% Last Modified by GUIDE v2.5 26-Oct-2018 18:51:49

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @GUITest_OpeningFcn, ...
'gui_OutputFcn', @GUITest_OutputFcn, ...
'gui_LayoutFcn', , ...
'gui_Callback', );
if nargin && ischar(varargin1)
gui_State.gui_Callback = str2func(varargin1);
end

if nargout
[varargout1:nargout] = gui_mainfcn(gui_State, varargin:);
else
gui_mainfcn(gui_State, varargin:);
end
% End initialization code - DO NOT EDIT

% --- Executes just before GUITest is made visible.
function GUITest_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 GUITest (see VARARGIN)

% Choose default command line output for GUITest
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% This sets up the initial plot - only do when we are invisible
% so window can get raised using GUITest.
if strcmp(get(hObject,'Visible'),'off')
%plot(rand(5));
end

% UIWAIT makes GUITest wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = GUITest_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
varargout1 = handles.output;

% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

axes(LinearOpticalElementsGUI);


end


% ----------------------------------------------------------------- ---
function FileMenu_Callback(hObject, eventdata, handles)
% hObject handle to FileMenu (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function OpenMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to OpenMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
file = uigetfile('*.fig');
if ~isequal(file, 0)
open(file);
end

% --------------------------------------------------------------------
function PrintMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to PrintMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
printdlg(handles.figure1)

% --------------------------------------------------------------------
function CloseMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to CloseMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
selection = questdlg(['Close ' get(handles.figure1,'Name') '?'],...
['Close ' get(handles.figure1,'Name') '...'],...
'Yes','No','Yes');
if strcmp(selection,'No')
return;
end

delete(handles.figure1)


% --- 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 = get(hObject,'String') returns popupmenu1 contents as cell array
% contentsget(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', 'RH Circular');


And this is the LinearOpticalElementsGUI.m file



clear
clc
theta=0:2*pi/1000:2*pi;
x=cos(theta);
y=sin(theta);
x1(1)=0;
y1(1)=0;
xaxx=[-1;1];
xaxy=[0;0];
yaxx=[0;0];
yaxy=[-1;1];
figure('color','white');
for i=1:1:size(x')
x1(2)=x(i);
y1(2)=y(i);
xcompx(1)=x(i);
xcompy(1)=y(i);
xcompy(2)=0;
xcompx(2)=sqrt(x(i)^2+y(i)^2)*cos(theta(i));
ycompx(1)=x(i);
ycompy(1)=y(i);
ycompx(2)=0;
ycompy(2)=sqrt(x(i)^2+y(i)^2)*sin(theta(i));
plot(xaxx,xaxy,'b',yaxx,yaxy,'g',x,y,'r',xcompx,xcompy,'- b',ycompx,ycompy,'-g',x1,y1,'-ro')
axis square;
title('Right-Handed Circular polarization')
getframe();


end










share|improve this question















I need to show the function I created "LinearOpticalElement.m" file into the GUI I created with axes in it. How should I go about it?



I have implemented cases just in case I need to add in more functions later on. How should I do it?



enter image description hereenter image description here



I have trouble with the GUI function calling another function which is LinearOpticalElementsGUI.m



function varargout = GUITest(varargin)
% GUITEST MATLAB code for GUITest.fig
% GUITEST, by itself, creates a new GUITEST or raises the existing
% singleton*.
%
% H = GUITEST returns the handle to a new GUITEST or the handle to
% the existing singleton*.
%
% GUITEST('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUITEST.M with the given input arguments.
%
% GUITEST('Property','Value',...) creates a new GUITEST or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before GUITest_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to GUITest_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 GUITest

% Last Modified by GUIDE v2.5 26-Oct-2018 18:51:49

% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @GUITest_OpeningFcn, ...
'gui_OutputFcn', @GUITest_OutputFcn, ...
'gui_LayoutFcn', , ...
'gui_Callback', );
if nargin && ischar(varargin1)
gui_State.gui_Callback = str2func(varargin1);
end

if nargout
[varargout1:nargout] = gui_mainfcn(gui_State, varargin:);
else
gui_mainfcn(gui_State, varargin:);
end
% End initialization code - DO NOT EDIT

% --- Executes just before GUITest is made visible.
function GUITest_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 GUITest (see VARARGIN)

% Choose default command line output for GUITest
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% This sets up the initial plot - only do when we are invisible
% so window can get raised using GUITest.
if strcmp(get(hObject,'Visible'),'off')
%plot(rand(5));
end

% UIWAIT makes GUITest wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = GUITest_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
varargout1 = handles.output;

% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

axes(LinearOpticalElementsGUI);


end


% ----------------------------------------------------------------- ---
function FileMenu_Callback(hObject, eventdata, handles)
% hObject handle to FileMenu (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)


% --------------------------------------------------------------------
function OpenMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to OpenMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
file = uigetfile('*.fig');
if ~isequal(file, 0)
open(file);
end

% --------------------------------------------------------------------
function PrintMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to PrintMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
printdlg(handles.figure1)

% --------------------------------------------------------------------
function CloseMenuItem_Callback(hObject, eventdata, handles)
% hObject handle to CloseMenuItem (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
selection = questdlg(['Close ' get(handles.figure1,'Name') '?'],...
['Close ' get(handles.figure1,'Name') '...'],...
'Yes','No','Yes');
if strcmp(selection,'No')
return;
end

delete(handles.figure1)


% --- 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 = get(hObject,'String') returns popupmenu1 contents as cell array
% contentsget(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', 'RH Circular');


And this is the LinearOpticalElementsGUI.m file



clear
clc
theta=0:2*pi/1000:2*pi;
x=cos(theta);
y=sin(theta);
x1(1)=0;
y1(1)=0;
xaxx=[-1;1];
xaxy=[0;0];
yaxx=[0;0];
yaxy=[-1;1];
figure('color','white');
for i=1:1:size(x')
x1(2)=x(i);
y1(2)=y(i);
xcompx(1)=x(i);
xcompy(1)=y(i);
xcompy(2)=0;
xcompx(2)=sqrt(x(i)^2+y(i)^2)*cos(theta(i));
ycompx(1)=x(i);
ycompy(1)=y(i);
ycompx(2)=0;
ycompy(2)=sqrt(x(i)^2+y(i)^2)*sin(theta(i));
plot(xaxx,xaxy,'b',yaxx,yaxy,'g',x,y,'r',xcompx,xcompy,'- b',ycompx,ycompy,'-g',x1,y1,'-ro')
axis square;
title('Right-Handed Circular polarization')
getframe();


end







matlab






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 9 at 9:24

























asked Nov 8 at 20:09









Alvin Lee

83




83











  • Please copy and paste the code rather than uploading images. It makes it easier for others to copy and paste your code.
    – Laurenz Albe
    Nov 8 at 20:19










  • You don't show the code for the optical element file so it is impossible to advise how to do this. Does it return any data?
    – scotty3785
    Nov 8 at 23:07










  • Sorry my bad, I will upload the code up
    – Alvin Lee
    Nov 9 at 9:13
















  • Please copy and paste the code rather than uploading images. It makes it easier for others to copy and paste your code.
    – Laurenz Albe
    Nov 8 at 20:19










  • You don't show the code for the optical element file so it is impossible to advise how to do this. Does it return any data?
    – scotty3785
    Nov 8 at 23:07










  • Sorry my bad, I will upload the code up
    – Alvin Lee
    Nov 9 at 9:13















Please copy and paste the code rather than uploading images. It makes it easier for others to copy and paste your code.
– Laurenz Albe
Nov 8 at 20:19




Please copy and paste the code rather than uploading images. It makes it easier for others to copy and paste your code.
– Laurenz Albe
Nov 8 at 20:19












You don't show the code for the optical element file so it is impossible to advise how to do this. Does it return any data?
– scotty3785
Nov 8 at 23:07




You don't show the code for the optical element file so it is impossible to advise how to do this. Does it return any data?
– scotty3785
Nov 8 at 23:07












Sorry my bad, I will upload the code up
– Alvin Lee
Nov 9 at 9:13




Sorry my bad, I will upload the code up
– Alvin Lee
Nov 9 at 9:13












1 Answer
1






active

oldest

votes

















up vote
0
down vote













The problem seems to be, that "LinearOpticalElementsGUI" is a script not a function. Scripts do not have a return value. So you could try to simply call the script instead of passing its non-existent return value to a function.



% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

LinearOpticalElementsGUI;


end


This might show a new axes. So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)




But it would actually be a better style to convert the script "LinearOpticalElementsGUI" to a function that has the axes handle as an argument.



function LinearOpticalElementsGUI(ax)

% "clc" and "clear" not useful
% ...
% "figure(...)" is not needed anymore
% ...

plot(ax, xaxx, ...)

% ...
end





share|improve this answer




















  • Hi, I'm not too sure what do you mean by that? "So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)" Which means I need to write this code under the GUI file?
    – Alvin Lee
    Nov 9 at 15:57










  • @AlvinLee ...In "LinearOpticalElementsGUI" add the first argument to the function call. Sorry for being a little unclear.
    – Sven Krüger
    Nov 9 at 17:58










  • Sorry for my little knowledge. Could you share on how or where should I place the code in?
    – Alvin Lee
    Nov 9 at 18:44










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53215399%2fplot-from-external-function-to-gui-axes-in-matlab%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
0
down vote













The problem seems to be, that "LinearOpticalElementsGUI" is a script not a function. Scripts do not have a return value. So you could try to simply call the script instead of passing its non-existent return value to a function.



% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

LinearOpticalElementsGUI;


end


This might show a new axes. So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)




But it would actually be a better style to convert the script "LinearOpticalElementsGUI" to a function that has the axes handle as an argument.



function LinearOpticalElementsGUI(ax)

% "clc" and "clear" not useful
% ...
% "figure(...)" is not needed anymore
% ...

plot(ax, xaxx, ...)

% ...
end





share|improve this answer




















  • Hi, I'm not too sure what do you mean by that? "So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)" Which means I need to write this code under the GUI file?
    – Alvin Lee
    Nov 9 at 15:57










  • @AlvinLee ...In "LinearOpticalElementsGUI" add the first argument to the function call. Sorry for being a little unclear.
    – Sven Krüger
    Nov 9 at 17:58










  • Sorry for my little knowledge. Could you share on how or where should I place the code in?
    – Alvin Lee
    Nov 9 at 18:44














up vote
0
down vote













The problem seems to be, that "LinearOpticalElementsGUI" is a script not a function. Scripts do not have a return value. So you could try to simply call the script instead of passing its non-existent return value to a function.



% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

LinearOpticalElementsGUI;


end


This might show a new axes. So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)




But it would actually be a better style to convert the script "LinearOpticalElementsGUI" to a function that has the axes handle as an argument.



function LinearOpticalElementsGUI(ax)

% "clc" and "clear" not useful
% ...
% "figure(...)" is not needed anymore
% ...

plot(ax, xaxx, ...)

% ...
end





share|improve this answer




















  • Hi, I'm not too sure what do you mean by that? "So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)" Which means I need to write this code under the GUI file?
    – Alvin Lee
    Nov 9 at 15:57










  • @AlvinLee ...In "LinearOpticalElementsGUI" add the first argument to the function call. Sorry for being a little unclear.
    – Sven Krüger
    Nov 9 at 17:58










  • Sorry for my little knowledge. Could you share on how or where should I place the code in?
    – Alvin Lee
    Nov 9 at 18:44












up vote
0
down vote










up vote
0
down vote









The problem seems to be, that "LinearOpticalElementsGUI" is a script not a function. Scripts do not have a return value. So you could try to simply call the script instead of passing its non-existent return value to a function.



% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

LinearOpticalElementsGUI;


end


This might show a new axes. So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)




But it would actually be a better style to convert the script "LinearOpticalElementsGUI" to a function that has the axes handle as an argument.



function LinearOpticalElementsGUI(ax)

% "clc" and "clear" not useful
% ...
% "figure(...)" is not needed anymore
% ...

plot(ax, xaxx, ...)

% ...
end





share|improve this answer












The problem seems to be, that "LinearOpticalElementsGUI" is a script not a function. Scripts do not have a return value. So you could try to simply call the script instead of passing its non-existent return value to a function.



% --- 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)
axes(handles.axes1);
cla;

popup_sel_index = get(handles.popupmenu1, 'Value');
switch popup_sel_index
case 1

LinearOpticalElementsGUI;


end


This might show a new axes. So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)




But it would actually be a better style to convert the script "LinearOpticalElementsGUI" to a function that has the axes handle as an argument.



function LinearOpticalElementsGUI(ax)

% "clc" and "clear" not useful
% ...
% "figure(...)" is not needed anymore
% ...

plot(ax, xaxx, ...)

% ...
end






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 9 at 9:49









Sven Krüger

523312




523312











  • Hi, I'm not too sure what do you mean by that? "So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)" Which means I need to write this code under the GUI file?
    – Alvin Lee
    Nov 9 at 15:57










  • @AlvinLee ...In "LinearOpticalElementsGUI" add the first argument to the function call. Sorry for being a little unclear.
    – Sven Krüger
    Nov 9 at 17:58










  • Sorry for my little knowledge. Could you share on how or where should I place the code in?
    – Alvin Lee
    Nov 9 at 18:44
















  • Hi, I'm not too sure what do you mean by that? "So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)" Which means I need to write this code under the GUI file?
    – Alvin Lee
    Nov 9 at 15:57










  • @AlvinLee ...In "LinearOpticalElementsGUI" add the first argument to the function call. Sorry for being a little unclear.
    – Sven Krüger
    Nov 9 at 17:58










  • Sorry for my little knowledge. Could you share on how or where should I place the code in?
    – Alvin Lee
    Nov 9 at 18:44















Hi, I'm not too sure what do you mean by that? "So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)" Which means I need to write this code under the GUI file?
– Alvin Lee
Nov 9 at 15:57




Hi, I'm not too sure what do you mean by that? "So you could also try to call the plot function within your script like this: plot(gca(), xaxx, ...)" Which means I need to write this code under the GUI file?
– Alvin Lee
Nov 9 at 15:57












@AlvinLee ...In "LinearOpticalElementsGUI" add the first argument to the function call. Sorry for being a little unclear.
– Sven Krüger
Nov 9 at 17:58




@AlvinLee ...In "LinearOpticalElementsGUI" add the first argument to the function call. Sorry for being a little unclear.
– Sven Krüger
Nov 9 at 17:58












Sorry for my little knowledge. Could you share on how or where should I place the code in?
– Alvin Lee
Nov 9 at 18:44




Sorry for my little knowledge. Could you share on how or where should I place the code in?
– Alvin Lee
Nov 9 at 18:44

















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53215399%2fplot-from-external-function-to-gui-axes-in-matlab%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

How do I collapse sections of code in Visual Studio Code for Windows?

Node.js puppeteer - Use values from array in a loop to cycle through pages