function varargout = EZviewGui_export(varargin) % EZVIEWGUI_EXPORT MATLAB code for EZviewGui_export.fig % EZVIEWGUI_EXPORT, by itself, creates a new EZVIEWGUI_EXPORT or raises the existing % singleton*. % % H = EZVIEWGUI_EXPORT returns the handle to a new EZVIEWGUI_EXPORT or the handle to % the existing singleton*. % % EZVIEWGUI_EXPORT('CALLBACK',hObject,eventData,handles,...) calls the local % function named CALLBACK in EZVIEWGUI_EXPORT.M with the given input arguments. % % EZVIEWGUI_EXPORT('Property','Value',...) creates a new EZVIEWGUI_EXPORT or raises the % existing singleton*. Starting from the left, property value pairs are % applied to the GUI before EZviewGui_export_OpeningFcn gets called. An % unrecognized property name or invalid value makes property application % stop. All inputs are passed to EZviewGui_export_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 EZviewGui_export % Last Modified by GUIDE v2.5 04-Oct-2023 13:19:21 % Begin initialization code - DO NOT EDIT gui_Singleton = 0; gui_State = struct('gui_Name', mfilename, ... 'gui_Singleton', gui_Singleton, ... 'gui_OpeningFcn', @EZviewGui_export_OpeningFcn, ... 'gui_OutputFcn', @EZviewGui_export_OutputFcn, ... 'gui_LayoutFcn', @EZviewGui_export_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 try gui_mainfcn(gui_State, varargin{:}); catch end end % End initialization code - DO NOT EDIT % --- Executes just before EZviewGui_export is made visible. function EZviewGui_export_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 EZviewGui_export (see VARARGIN) % Choose default command line output for EZviewGui_export 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 EZviewGui_export. if strcmp(get(hObject,'Visible'),'off') %plot(rand(5)); end %NOTE!!! special disabling of version for this later install of Matlab 2011a: %The ver output changed and no longer works for the simple code that %follows %{ % MatLab Version detection qv=ver; mlver=qv(17).Version mlRel=qv(17).Release if str2double(mlver)>8.3 newMLgraph=1 else newMLgraph=0 end %} %MYCODE load experiment data .... newMLgraph=0; if newMLgraph==0 clear Exp Exp=[]; EZvInitLoad else end %************************************************************** %***Func Call setup for @myupdatfcn****************************8 dcm_obj=datacursormode(gcf); %datacursormode on; set(dcm_obj,'DisplayStyle','window') set(dcm_obj,'UpdateFcn', @myupdatefcn); % UIWAIT makes EZviewGui_export wait for user response (see UIRESUME) % uiwait(handles.figure1); %global MPsel %MPsel=50; % --- Outputs from this function are returned to the command line. function varargout = EZviewGui_export_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; %******************************************************************************** %>>>>>>>>>>>>>>>>MENU BAR >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> % -------------------------------------------------------------------- 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 mouse press over figure background. function figure1_ButtonDownFcn(hObject, eventdata, handles) % hObject handle to figure1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) %+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ % BEGIN USER Code ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ %*********************************************************************************** %********************************************************************************** %++++++++++++++++++++++myupdatefcn(obj,event_obj)+++++++++++++++++++++++++++++++++++++++++++++++++++++++ %+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ function [output_txt]= myupdatefcn(obj,event_obj) global ghandles global Exp [output_txt]=datatipp(obj,event_obj); %datatipp is a Matlab function gcf= Exp(4).guiFig; %gcf= ghandles.figure1 Mathworks Provided this line for Apple issue clkPos=getCursorInfo(datacursormode(gcf)); cpos=clkPos.Position; htargetAxes= clkPos.Target; %datacursormode(gcf) if ghandles.Iaxes1==get(htargetAxes,'Parent')||... ghandles.Iaxes2==get(htargetAxes,'Parent')||... ghandles.Iaxes3==get(htargetAxes,'Parent')||... ghandles.OLaxes1==get(htargetAxes,'Parent')||... ghandles.OLaxes2==get(htargetAxes,'Parent')||... ghandles.OLaxes3==get(htargetAxes,'Parent')||... ghandles.HtMap1==get(htargetAxes,'Parent')||... ghandles.HtMap2==get(htargetAxes,'Parent')||... ghandles.HtMap3==get(htargetAxes,'Parent'), EZvDatatip %datacursormode off %datacursormode on %waitforbuttonpress %[output_txt]=output_txt; %datatipp(obj,event_obj); end prntHt=0; %Added 210205 for Print Heatmap buttons [P] %++++++++++++++++++++++++++++++++++++END myupdatefcn(obj,event_obj)++++++++++++++++++++++++++++++++++++ %+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ %***********************111111111111111111111111111111111111111111111111111********* %11111111111111111111111111111111111111111111111111111111111111111111111111111111 %Migration edits 230814 % --- Executes on slider movement. function MPsldr1_Callback(hObject, eventdata, handles) % hObject handle to MPsldr1 (see GCBO) global Exp expN=1; input=floor(get(hObject,'value')); display(input) set(handles.MPed1,'string',num2str(round(input))); EZVimDisplay % --- Executes during object creation, after setting all properties. %{ %Migration edits 230814 function MPsldr1_CreateFcn(hObject, eventdata, handles) % Hint: slider controls usually have a light gray background. if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function MPed1_Callback(hObject, eventdata, handles) % hObject handle to MPed1 (see GCBO) global Exp global zonePB expN=1; zonePB=expN; input=get(hObject,'String'); Max=floor(get(handles.MPsldr1,'max')); Min=floor(get(handles.MPsldr1,'min')); if str2num(input) >= Min && str2num(input) <= Max display(input) set(handles.MPsldr1,'value',str2double(input)); else if str2double(input) >= Max, set(handles.MPsldr1,'value',Max); set(handles.MPed1,'string',num2str(Max));end if str2double(input) <= Min, set(handles.MPsldr1,'value',Min),set(handles.MPed1,'string',num2str(Min));end end EZVimDisplay %------Adapt for AppDesigner 230821----------- global ghandles %global Exp ghandles.guiFig= gcf; Exp(4).guiFig=gcf; if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %------------------- % --- Executes during object creation, after setting all properties. % %Migration edits 230814 %{ function MPed1_CreateFcn(hObject, eventdata, handles) global ghandles global Exp ghandles.guiFig= gcf; Exp(4).guiFig=gcf; if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} %-------------------------------------------------------------------------- % --- Executes on slider movement. function DMsldr1_Callback(hObject, eventdata, handles) % hObject handle to DMsldr1 (see GCBO) global Exp expN=1; input=floor(get(hObject,'value')); display(input) set(handles.DMed1,'string',num2str(round(input))) EZVimDisplay % --- Executes during object creation, after setting all properties. %{ %Migration edits 230814 function DMsldr1_CreateFcn(hObject, eventdata, handles) % hObject handle to DMsldr1 (see GCBO) global Exp if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function DMed1_Callback(hObject, eventdata, handles) % hObject handle to DMed1 (see GCBO) global Exp expN=1; Max=floor(get(handles.DMsldr1,'max')); Min=floor(get(handles.DMsldr1,'min')); input=get(hObject,'String') if str2num(input) >= Min && str2num(input) <= Max display(input) set(handles.DMsldr1,'value',str2double(input)) else if str2num(input) >= Max, set(handles.DMsldr1,'value',Max); set(handles.DMed1,'string',num2str(Max));end if str2num(input) <= Min, set(handles.DMsldr1,'value',Min),set(handles.DMed1,'string',num2str(Min));end end EZVimDisplay % --- Executes during object creation, after setting all properties. % %Migration edits 230814 function DMed1_CreateFcn(hObject, eventdata, handles) % hObject handle to DMed1 (see GCBO) % See ISPC and COMPUTER. if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} % --- Executes on slider movement. function Tptsldr1_Callback(hObject, eventdata, handles) % hObject handle to Tptsldr1 (see GCBO) global Exp expN=1; input=floor(get(hObject,'value')); display(input) set(handles.Tpted1,'string',num2str(floor(input))) prntHt= 0; EZVimDisplay % --- Executes during object creation, after setting all properties. %{ %Migration edits 230814 function Tptsldr1_CreateFcn(hObject, eventdata, handles) % hObject handle to Tptsldr1 (see GCBO) if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function Tpted1_Callback(hObject, eventdata, handles) % hObject handle to Tpted1 (see GCBO) global Exp expN=1; input=get(hObject,'String') Max=floor(get(handles.Tptsldr1,'max')); Min=floor(get(handles.Tptsldr1,'min')); if str2double(input) >= Min && str2double(input) <= Max display(input) set(handles.Tptsldr1,'value',str2double(input)) else if str2num(input) >= Max, set(handles.Tptsldr1,'value',Max); set(handles.Tpted1,'string',num2str(Max));end if str2num(input) <= Min, set(handles.Tptsldr1,'value',Min),set(handles.Tpted1,'string',num2str(Min));end end EZVimDisplay % --- Executes during object creation, after setting all properties. % %Migration edits 230814 function Tpted1_CreateFcn(hObject, eventdata, handles) % hObject handle to Tpted1 (see GCBO) if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} % --- Executes on button press in expSelPB1. function expSelPB1_Callback(hObject, eventdata, handles) % hObject handle to expSelPB1 (see GCBO) w=pwd; global Exp expN=1; prntHt=0; %************************************************************* EZexpSel cd(w) %************************************************************* % --- Executes on button press in rotPB1. function rotPB1_Callback(hObject, eventdata, handles) % hObject handle to rotPB1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global ghandles ghandles=handles; % --- Executes on button press in clrOlay1. function clrOlay1_Callback(hObject, eventdata, handles) % hObject handle to clrOlay1 (see GCBO) global Exp global ghandles set(ghandles.OLay1,'string',{' '}) set(ghandles.OLexp1,'string',{''}) cla(ghandles.OLaxes1) Exp(1).traceN= 0; %Exp(1).cTraceN= 0; Exp(1).hOL =[]; Exp(1).hOLb=[]; Exp(1).hOLname = {}; Exp(1).hOLexpNm={}; Exp(1).hOLresDir={}; Exp(1).hOLplateNum=[]; Exp(1).hOLresDir= {}; cla(ghandles.Dlaxes1); cla(ghandles.Dkaxes1); cla(ghandles.Draxes1); cla(ghandles.DNLaxes1); Exp(1).hL =[]; Exp(1).hLb=[]; Exp(1).hLRF1=[]; Exp(1).hLRF2=[]; Exp(1).hK =[]; Exp(1).hKb=[]; Exp(1).hKRF1=[]; Exp(1).hKRF2=[]; Exp(1).hr =[]; Exp(1).hrb=[]; Exp(1).rRF1=[]; Exp(1).hrRF2=[]; Exp(1).hintL =[]; Exp(1).hintLb=[]; % 2016_0222 Exp(1).hintLadj =[]; Exp(1).hintLadjb=[]; % 2016_0222 %reset Composite Overlay plot to initialization values Exp(1).cTraceN= 1; Exp(1).ll= []; Exp(1).rr= []; Exp(1).kk= []; Exp(1).cLmean= []; Exp(1).cRmean= []; Exp(1).cKmean= []; Exp(1).cTraceIndx= 1; Exp(1).hCmean=[]; Exp(1).hBound1= []; Exp(1).hBound2= []; Exp(1).CompositPlot=0; Exp(1).Trace= []; %added for Trend BoxPlot data 17_1114 %*********************************************************************************** %***********************222222222222222222222222222222222222222222222222222********* % --- Executes on slider movement. function MPsldr2_Callback(hObject, eventdata, handles) % hObject handle to MPsldr2 (see GCBO) global Exp expN=2; input=floor(get(hObject,'value')); display(input) set(handles.MPed2,'string',num2str(round(input))); EZVimDisplay % --- Executes during object creation, after setting all properties. %{ %Migration edits 230814 function MPsldr2_CreateFcn(hObject, eventdata, handles) % hObject handle to MPsldr2 (see GCBO) if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function MPed2_Callback(hObject, eventdata, handles) % hObject handle to MPed2 (see GCBO) global Exp global zonePB expN=2; zonePB=expN; input=get(hObject,'String'); Max=floor(get(handles.MPsldr2,'max')); Min=floor(get(handles.MPsldr2,'min')); if str2num(input) >= Min && str2num(input) <= Max display(input) set(handles.MPsldr2,'value',str2double(input)); else if str2num(input) >= Max, set(handles.MPsldr2,'value',Max); set(handles.MPed2,'string',num2str(Max));end if str2num(input) <= Min, set(handles.MPsldr2,'value',Min),set(handles.MPed2,'string',num2str(Min));end end EZVimDisplay %-------Adapt for AppDesigner 230821 global ghandles %global Exp ghandles.guiFig= gcf; Exp(4).guiFig=gcf; if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %--------------- % --- Executes during object creation, after setting all properties. % %Migration edits 230814 %{ function MPed2_CreateFcn(hObject, eventdata, handles) % hObject handle to MPed2 (see GCBO) global ghandles global Exp ghandles.guiFig= gcf; Exp(4).guiFig=gcf; if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} %-------------------------------------------------------------------------- % --- Executes on slider movement. function DMsldr2_Callback(hObject, eventdata, handles) % hObject handle to DMsldr2 (see GCBO) global Exp expN=2; input=floor(get(hObject,'value')); display(input) set(handles.DMed2,'string',num2str(round(input))) EZVimDisplay % --- Executes during object creation, after setting all properties. %{ %Migration edits 230814 function DMsldr2_CreateFcn(hObject, eventdata, handles) % hObject handle to DMsldr2 (see GCBO) global Exp if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function DMed2_Callback(hObject, eventdata, handles) % hObject handle to DMed2 (see GCBO) global Exp expN=2; Max=floor(get(handles.DMsldr2,'max')); Min=floor(get(handles.DMsldr2,'min')); input=get(hObject,'String') if str2double(input) >= Min && str2double(input) <= Max display(input) set(handles.DMsldr2,'value',str2double(input)) else if str2double(input) >= Max, set(handles.DMsldr2,'value',Max); set(handles.DMed2,'string',num2str(Max));end if str2double(input) <= Min, set(handles.DMsldr2,'value',Min),set(handles.DMed2,'string',num2str(Min));end end EZVimDisplay % --- Executes during object creation, after setting all properties. % %Migration edits 230814 function DMed2_CreateFcn(hObject, eventdata, handles) % hObject handle to DMed2 (see GCBO) % 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 slider movement. function Tptsldr2_Callback(hObject, eventdata, handles) % hObject handle to Tptsldr2 (see GCBO) global Exp expN=2; input=floor(get(hObject,'value')); display(input) set(handles.Tpted2,'string',num2str(floor(input))) prntHt= 0; EZVimDisplay % --- Executes during object creation, after setting all properties. %{ function Tptsldr2_CreateFcn(hObject, eventdata, handles) % hObject handle to Tptsldr2 (see GCBO) if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function Tpted2_Callback(hObject, eventdata, handles) % hObject handle to Tpted2 (see GCBO) global Exp expN=2; input=get(hObject,'String') Max=floor(get(handles.Tptsldr2,'max')); Min=floor(get(handles.Tptsldr2,'min')); if str2double(input) >= Min && str2double(input) <= Max display(input) set(handles.Tptsldr2,'value',str2double(input)) else if str2num(input) >= Max, set(handles.Tptsldr2,'value',Max); set(handles.Tpted2,'string',num2str(Max));end if str2num(input) <= Min, set(handles.Tptsldr2,'value',Min),set(handles.Tpted2,'string',num2str(Min));end end EZVimDisplay % --- Executes during object creation, after setting all properties. % %Migration edits 230814 function Tpted2_CreateFcn(hObject, eventdata, handles) % hObject handle to Tpted2 (see GCBO) if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} % --- Executes on button press in expSelPB2. function expSelPB2_Callback(hObject, eventdata, handles) % hObject handle to expSelPB2 (see GCBO) w=pwd; global Exp expN=2; prntHt= 0; %************************************************************* EZexpSel %************************************************************* % --- Executes on button press in rotPB2. function rotPB2_Callback(hObject, eventdata, handles) % hObject handle to rotPB2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global ghandles ghandles=handles; % --- Executes on button press in clrOlay2. function clrOlay2_Callback(hObject, eventdata, handles) % hObject handle to clrOlay2 (see GCBO) global ghandles global Exp set(ghandles.OLay2,'string',{''}) set(ghandles.OLexp2,'string',{''}) cla(ghandles.OLaxes2) Exp(2).traceN= 0; %Exp(2).cTraceN= 0; Exp(2).hOL =[]; Exp(2).hOLb=[]; Exp(2).hOLname = {}; Exp(2).hOLexpNm={}; Exp(2).hOLresDir={} Exp(2).hOLplateNum=[]; Exp(2).hOLresDir= {}; cla(ghandles.Dlaxes2); cla(ghandles.Dkaxes2); cla(ghandles.Draxes2); cla(ghandles.DNLaxes2); % 2016_0222 Exp(2).hL =[]; Exp(2).hLb=[]; Exp(2).LRF1=[]; Exp(2).hLRF2=[]; Exp(2).hK =[]; Exp(2).hKb=[]; Exp(2).hKRF1=[]; Exp(2).hKRF2=[]; Exp(2).hr =[]; Exp(2).hrb=[]; Exp(2).rRF1=[]; Exp(2).hrRF2=[]; %reset Composite Overlay plot to initialization values Exp(2).cTraceN= 1; Exp(2).ll= []; Exp(2).rr= []; Exp(2).kk= []; Exp(2).cLmean= []; Exp(2).cRmean= []; Exp(2).cKmean= []; Exp(2).cTraceIndx= 1; Exp(2).hCmean=[]; Exp(2).hBound1= []; Exp(2).hBound2= []; Exp(2).CompositPlot=0; Exp(2).Trace= []; %added for Trend BoxPlot data 17_1114 %*********************************************************************************** %***********************333333333333333333333333333333333333333333333333333********* % --- Executes on slider movement. function MPsldr3_Callback(hObject, eventdata, handles) % hObject handle to MPsldr3 (see GCBO) global Exp expN=3; input=floor(get(hObject,'value')); display(input) set(handles.MPed3,'string',num2str(round(input))); EZVimDisplay % --- Executes during object creation, after setting all properties. %{ %Migration edits 230814 function MPsldr3_CreateFcn(hObject, eventdata, handles) % hObject handle to MPsldr3 (see GCBO) if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function MPed3_Callback(hObject, eventdata, handles) % hObject handle to MPed3 (see GCBO) global Exp global zonePB expN=3; zonePB=expN; input=get(hObject,'String'); Max=floor(get(handles.MPsldr3,'max')); Min=floor(get(handles.MPsldr3,'min')); if str2num(input) >= Min && str2num(input) <= Max display(input) set(handles.MPsldr3,'value',str2double(input)); else if str2num(input) >= Max, set(handles.MPsldr3,'value',Max); set(handles.MPed3,'string',num2str(Max));end if str2num(input) <= Min, set(handles.MPsldr3,'value',Min),set(handles.MPed3,'string',num2str(Min));end end EZVimDisplay %-----------Adapt for AppDesigner 230821-------- global ghandles %global Exp ghandles.guiFig= gcf; Exp(4).guiFig=gcf; if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %------------ % --- Executes during object creation, after setting all properties. % %Migration edits 230814 %{ function MPed3_CreateFcn(hObject, eventdata, handles) global ghandles global Exp ghandles.guiFig= gcf; Exp(4).guiFig=gcf; if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} %-------------------------------------------------------------------------- % --- Executes on slider movement. function DMsldr3_Callback(hObject, eventdata, handles) % hObject handle to DMsldr3 (see GCBO) global Exp expN=3; input=floor(get(hObject,'value')); display(input) set(handles.DMed3,'string',num2str(round(input))) EZVimDisplay % --- Executes during object creation, after setting all properties. %{ %Migration edits 230814 function DMsldr3_CreateFcn(hObject, eventdata, handles) % hObject handle to DMsldr3 (see GCBO) global Exp if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function DMed3_Callback(hObject, eventdata, handles) % hObject handle to DMed3 (see GCBO) global Exp expN=3; Max=floor(get(handles.DMsldr3,'max')); Min=floor(get(handles.DMsldr3,'min')); input=get(hObject,'String') if str2num(input) >= Min && str2num(input) <= Max display(input) set(handles.DMsldr3,'value',str2double(input)) else if str2num(input) >= Max, set(handles.DMsldr3,'value',Max); set(handles.DMed3,'string',num2str(Max));end if str2num(input) <= Min, set(handles.DMsldr3,'value',Min),set(handles.DMed3,'string',num2str(Min));end end EZVimDisplay % --- Executes during object creation, after setting all properties. % function DMed3_CreateFcn(hObject, eventdata, handles) % hObject handle to DMed3 (see GCBO) % See ISPC and COMPUTER. if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} % --- Executes on slider movement. function Tptsldr3_Callback(hObject, eventdata, handles) % hObject handle to Tptsldr3 (see GCBO) global Exp expN=3; input=floor(get(hObject,'value')); display(input) set(handles.Tpted3,'string',num2str(floor(input))) prntHt= 0; EZVimDisplay % --- Executes during object creation, after setting all properties. %{ function Tptsldr3_CreateFcn(hObject, eventdata, handles) % hObject handle to Tptsldr3 (see GCBO) if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor',[.9 .9 .9]); end %} function Tpted3_Callback(hObject, eventdata, handles) % hObject handle to Tpted3 (see GCBO) global Exp expN=3; input=get(hObject,'String') Max=floor(get(handles.Tptsldr3,'max')); Min=floor(get(handles.Tptsldr3,'min')); if str2double(input) >= Min && str2double(input) <= Max display(input) set(handles.Tptsldr3,'value',str2double(input)) else if str2num(input) >= Max, set(handles.Tptsldr3,'value',Max); set(handles.Tpted3,'string',num2str(Max));end if str2num(input) <= Min, set(handles.Tptsldr3,'value',Min),set(handles.Tpted3,'string',num2str(Min));end end EZVimDisplay % --- Executes during object creation, after setting all properties. % %Migration edits 230814 function Tpted3_CreateFcn(hObject, eventdata, handles) % hObject handle to Tpted3 (see GCBO) if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end %} % --- Executes on button press in expSelPB3. function expSelPB3_Callback(hObject, eventdata, handles) % hObject handle to expSelPB3 (see GCBO) w=pwd; global Exp expN=3; prntHt= 0; %************************************************************* EZexpSel cd(w) %************************************************************* % --- Executes on button press in rotPB3. function rotPB3_Callback(hObject, eventdata, handles) % hObject handle to rotPB3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global ghandles ghandles=handles; % --- Executes on button press in clrOlay3. function clrOlay3_Callback(hObject, eventdata, handles) % hObject handle to clrOlay3 (see GCBO) global ghandles global Exp set(ghandles.OLay3,'string',{''}) set(ghandles.OLexp3,'string',{''}) cla(ghandles.OLaxes3); Exp(3).traceN= 0; %Exp(3).cTraceN= 0; Exp(3).hOL =[]; Exp(3).hOLb=[]; Exp(3).hOLname = {}; Exp(3).hOLexpNm={}; Exp(3).hOLresDir={} Exp(3).hOLplateNum=[]; Exp(3).hOLresDir= {}; cla(ghandles.Dlaxes3); cla(ghandles.Dkaxes3); cla(ghandles.Draxes3); cla(ghandles.DNLaxes3);% 2016_0222 Exp(3).hL =[]; Exp(3).hLb=[]; Exp(3).hLRF1=[]; Exp(3).hLRF2=[]; Exp(3).hK =[]; Exp(3).hKb=[]; Exp(3).hKRF1=[]; Exp(3).hKRF2=[]; Exp(3).hr =[]; Exp(3).hrb=[]; Exp(3).rRF1=[]; Exp(3).hrRF2=[]; %reset Composite Overlay plot to initialization values Exp(3).cTraceN= 1; Exp(3).ll= []; Exp(3).rr= []; Exp(3).kk= []; Exp(3).cLmean= []; Exp(3).cRmean= []; Exp(3).cKmean= []; Exp(3).cTraceIndx= 1; Exp(3).hCmean=[]; Exp(3).hBound1= []; Exp(3).hBound2= []; Exp(3).CompositPlot=0; Exp(3).Trace= []; %added for Trend BoxPlot data 17_1114 %**************************************************************************** %**************************************************************************** %set(handles.expName3,'string',char(Exp(expN).resDir)); % --- Executes during object creation, after setting all properties. function Paxes1_CreateFcn(hObject, eventdata, handles) % hObject handle to Paxes1 (see GCBO) % --- Executes on selection change in listboxGnOrf. function listboxGnOrf_Callback(hObject, eventdata, handles) global Exp global ghandles global zonePB %orfLstSel=0; datacursormode off; zoneSel=1; %{ if get(handles.zonePB1,'value')==1, zoneSel=1; elseif get(handles.zonePB2,'value')==1, zoneSel=2; elseif get(handles.zonePB3,'value')==1 zoneSel=3; end %} zoneSel= zonePB orfLstSel=get(handles.GeneOrfTog,'value') %zoneSel=get(handles.zonePB1,'value') expN=zoneSel; OLay=zoneSel usrInxSel=get(hObject,'Value'); %selGnOrf=Exp(zoneSel).Dexp(DexpN).srtGnLst(usrInxSel); %selGnOrf=Exp(zoneSel).srtGnLst(usrInxSel); listboxGnOrf=get(handles.listboxGnOrf,'string'); selGnOrf=listboxGnOrf(usrInxSel); tempLB= str2mat(selGnOrf) if isequal(tempLB(4:6),'cmp')||isequal(tempLB(3:6),'cmpG') lstBoxCmpFlg=1; EZlstBoxCmpExt %Added for RF composite behavior 17_1010 else LBdlims=strfind(selGnOrf,':') LBmp=str2num(selGnOrf{1}((LBdlims{:,:}(1))+1:(LBdlims{:,:}(2))-1)) LBr=str2num(selGnOrf{1}((LBdlims{:,:}(2))+1:(LBdlims{:,:}(3))-1)) LBc=str2num(selGnOrf{1}((LBdlims{:,:}(3))+1:end)) lstBoxCmpFlg=0; EZlstBoxExt end datacursormode on; % --- Executes during object creation, after setting all properties. function listboxGnOrf_CreateFcn(hObject, eventdata, handles) % hObject handle to listboxGnOrf (see GCBO) if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end % --- Executes on button press in GeneOrfTog. function GeneOrfTog_Callback(hObject, eventdata, handles) global Exp orfLstSel=get(hObject,'value') %zoneSel=get(handles.zonePB1,'value') zoneSel=1; if get(handles.zonePB1,'value')==1, zoneSel=1; elseif get(handles.zonePB2,'value')==1, zoneSel=2; elseif get(handles.zonePB3,'value')==1 zoneSel=3; end orfLstSel=get(handles.GeneOrfTog,'value'); %zoneSel=get(handles.zonePB1,'value') expN=zoneSel; if zoneSel==1,DexpN= (get(handles.DN1,'value')); cmpTog= get(handles.CompositeTog1,'value'); end if zoneSel==2,DexpN= (get(handles.DN2,'value')); cmpTog= get(handles.CompositeTog2,'value'); end if zoneSel==3,DexpN= (get(handles.DN3,'value')); cmpTog= get(handles.CompositeTog3,'value'); end if orfLstSel==1 && cmpTog~=1 set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(zoneSel).Dexp(DexpN).srtOrfLst) %set(handles.listboxGnOrf,'string',Exp(zoneSel).srtOrfLst) else set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(zoneSel).Dexp(DexpN).srtGnLst) %set(handles.listboxGnOrf,'string',Exp(zoneSel).srtGnLst) end % --- Executes on button press in InfoToggle. function InfoToggle_Callback(hObject, eventdata, handles) % --- Executes on button press in zonePB1. %******************************************************************************* % --- Executes on button press in semiLog. function semiLog_Callback(hObject, eventdata, handles) global Exp semiLog=get(handles.semiLog,'value') if semiLog==1 set(handles.semiLog,'BackgroundColor',[1.0 0.6 0.6]) set(handles.semiLog,'ForegroundColor',[1.0 0.0, 0.0]) set(handles.Paxes1,'YScale','log') set(handles.Paxes2,'YScale','log') set(handles.Paxes3,'YScale','log') set(handles.OLaxes1,'YScale','log') set(handles.OLaxes2,'YScale','log') set(handles.OLaxes3,'YScale','log') else set(handles.semiLog,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.semiLog,'ForegroundColor',[0.0 0.0, 0.0]) set(handles.Paxes1,'YScale','linear') set(handles.Paxes2,'YScale','linear') set(handles.Paxes3,'YScale','linear') set(handles.OLaxes1,'YScale','linear') set(handles.OLaxes2,'YScale','linear') set(handles.OLaxes3,'YScale','linear') end % --- Executes on button press in spotTog. function spotTog_Callback(hObject, eventdata, handles) % Hint: get(hObject,'Value') returns toggle state of spotTog global Exp global ghandles spotTog=get(handles.spotTog,'value'); ghandles= handles if spotTog==1 set(handles.spotTog,'BackgroundColor',[0.0 0.75 0.75]) set(handles.spotTog,'ForegroundColor',[0.0 0.0, 0.0]) else set(handles.spotTog,'BackgroundColor',[.941 0.941, 0.941]) set(handles.spotTog,'ForegroundColor',[0.0 0.0, 0.0]) end % -------------------------------------------------------------------- function quickView_Callback(hObject, eventdata, handles) %function quickView_Callback(hObject, eventdata, handles) % hObject handle to quickView (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global Exp try QkVexps %Quickview catch ME end % --- Executes on button press in printOL1. function printOL1_Callback(hObject, eventdata, handles) % hObject handle to printOL1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- If Enable == 'on', executes on mouse press in 5 pixel border. % --- Otherwise, executes on mouse press in 5 pixel border or over printol1. global Exp global ghandles ads1=0 EZvFigPrint set(handles.printOL1,'value',0) %{ function printOL1_ButtonDownFcn(hObject, eventdata, handles) % hObject handle to printol1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) ads1=1 % --- Executes on key press with focus on printOL1 and none of its controls. function printOL1_KeyPressFcn(hObject, eventdata, handles) % hObject handle to printOL1 (see GCBO) % eventdata structure with the following fields (see UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) ads1=2 %} % --- Executes on button press in printOL2. function printOL2_Callback(hObject, eventdata, handles) % hObject handle to printOL2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global Exp global ghandles ads1=0 EZvFigPrint set(handles.printOL2,'value',0) % --- Executes on key press with focus on printOL2 and none of its controls. %{ function printOL2_KeyPressFcn(hObject, eventdata, handles) % hObject handle to printOL2 (see GCBO) % eventdata structure with the following fields (see UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) % --- If Enable == 'on', executes on mouse press in 5 pixel border. % --- Otherwise, executes on mouse press in 5 pixel border or over printOL2. ads2=1 function printOL2_ButtonDownFcn(hObject, eventdata, handles) % hObject handle to printOL2 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) ads2=2 %} % --- Executes on button press in printOL3. function printOL3_Callback(hObject, eventdata, handles) % hObject handle to printOL3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global Exp global ghandles ads1=0 EZvFigPrint set(handles.printOL3,'value',0) % --- Executes on key press with focus on printOL3 and none of its controls. %{ function printOL3_KeyPressFcn(hObject, eventdata, handles) % hObject handle to printOL3 (see GCBO) % eventdata structure with the following fields (see UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) % --- If Enable == 'on', executes on mouse press in 5 pixel border. % --- Otherwise, executes on mouse press in 5 pixel border or over printOL3. ads3=1 function printOL3_ButtonDownFcn(hObject, eventdata, handles) % hObject handle to printOL3 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- Executes on mouse press over figure background, over a disabled or % --- inactive control, or over an axes background. ads3=2 %} function figure1_WindowButtonDownFcn(hObject, eventdata, handles) % hObject handle to figure1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) htargetAxes=gca; cpos=get(gca,'Position') if handles.Iaxes1==gca||... handles.Iaxes2==gca||... handles.Iaxes3==gca||... handles.OLaxes1==gca||... handles.OLaxes2==gca||... handles.OLaxes3==gca, EZvDatatip end % --- Executes on mouse press over figure background, over a disabled or % --- inactive control, or over an axes background. function figure1_WindowButtonUpFcn(hObject, eventdata, handles) % hObject handle to figure1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % -------------------------------------------------------------------- function Tools_Callback(hObject, eventdata, handles) % hObject handle to Tools (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % -------------------------------------------------------------------- function Parameters_Callback(hObject, eventdata, handles) % hObject handle to Parameters (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % -------------------------------------------------------------------- function PrintFont_Callback(hObject, eventdata, handles) % hObject handle to PrintFont (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global Exp global ghandles prompt={'Enter Linewidth for plot:',... 'Enter Axis Font Size:',... 'Enter Legend Font Size:',... 'Enter Marker Font Size:'}; name='Input Size Parameters for Printable Graphic'; numlines=1; try if ~isempty(Exp(4).plotPars) default= Exp(4).plotPars; else default={'4','36','10','5'}; end catch default={'4','36','10','5'}; end answer=inputdlg(prompt,name,numlines,default) if ~isempty(answer) Exp(4).plotPars= answer; %{ else default={'4','36','10','5'}; Exp(4).plotPars= default; %} end % --- Executes on button press in LKrTog1. function LKrTog1_Callback(hObject, eventdata, handles) global Exp expN=1; EZfigTrendOL % --- Executes on button press in LKrTog2. function LKrTog2_Callback(hObject, eventdata, handles) global Exp expN=2; EZfigTrendOL % --- Executes on button press in LKrTog3. function LKrTog3_Callback(hObject, eventdata, handles) global Exp expN=3; EZfigTrendOL % --- Executes on button press in rawNorm. function rawNorm_Callback(hObject, eventdata, handles) global Exp global ghandles traceN1=Exp(1).traceN; traceN2=Exp(2).traceN; traceN3=Exp(3).traceN; selTrace1= Exp(1).seltraceN; selTrace2= Exp(2).seltraceN; selTrace3= Exp(3).seltraceN; dispAlg=get(handles.rawNorm,'value') Exp(4).interacPBsel=Exp(4).interacPBsel+1; if Exp(4).interacPBsel ==2, Exp(4).interacPBsel=0; end %set(handles.rawNorm,'value',Exp(4).interacPBsel) if Exp(4).interacPBsel ==1, set(handles.rawNorm,'string','N1') elseif Exp(4).interacPBsel ==2, set(handles.rawNorm,'string','N2') else set(handles.rawNorm,'string','R'), end if Exp(4).interacPBsel==0 %00000000000000000000000000000 set(ghandles.Dlaxes1,'Visible','on');set(ghandles.Dlaxes2,'Visible','on'); set(ghandles.Dlaxes3,'Visible','on') set(ghandles.DNLaxes1,'Visible','off'); set(ghandles.DNLaxes2,'Visible','off'); set(ghandles.DNLaxes3,'Visible','off') for i=1:Exp(1).expLoadCnt,try set(Exp(1).hzeroCLn(i),'visible','off'); catch ME, ME.message, end, end for i=1:Exp(2).expLoadCnt,try set(Exp(2).hzeroCLn(i),'visible','off'); catch ME, ME.message, end, end for i=1:Exp(3).expLoadCnt,try set(Exp(3).hzeroCLn(i),'visible','off'); catch ME, ME.message, end, end %{ try set(Exp(1).hzeroCLn,'visible','off'); catch ME, ME.message, try plot(handles.DNLaxes1,zeros(1,Exp(1).destPerMP),1:Exp(1).destPerMP,'w'); catch end end % try set(Exp(2).hzeroCLn,'visible','off'); catch ME, ME.message, try plot(handles.DNLaxes2,zeros(1,Exp(2).destPerMP),1:Exp(2).destPerMP,'w'); catch end end % try set(Exp(3).hzeroCLn,'visible','off'); catch ME, ME.message, try plot(handles.DNLaxes3,zeros(1,Exp(3).destPerMP),1:Exp(3).destPerMP,'w'); catch end end % %} for n=1:traceN1 try set(Exp(1).hintL(n),'visible','off'); set(Exp(1).hintLb(n),'visible','off'); catch, end try set(Exp(1).hintLadj(n),'visible','off'); set(Exp(1).hintLadjb(n),'visible','off'); catch, end try set(Exp(1).hLRF1(n),'visible','off'); set(Exp(1).hLRF2(n),'visible','off'); catch, end try set(Exp(1).hL(n),'visible','off'); set(Exp(1).hLb(n),'visible','off'); catch, end end try set(Exp(1).hLRF1(selTrace1),'visible','on'); set(Exp(1).hLRF2(selTrace1),'visible','on'); catch, end try set(Exp(1).hL(selTrace1),'visible','on'); set(Exp(1).hLb(selTrace1),'visible','on'); catch, end for n=1:traceN2 try set(Exp(2).hintL(n),'visible','off'); set(Exp(2).hintLb(n),'visible','off'); catch, end try set(Exp(2).hintLadj(n),'visible','off'); set(Exp(2).hintLadjb(n),'visible','off'); catch, end try set(Exp(2).hLRF1(n),'visible','off'); set(Exp(2).hLRF2(n),'visible','off'); catch, end try set(Exp(2).hL(n),'visible','off'); set(Exp(2).hLb(n),'visible','off'); catch, end end try set(Exp(2).hLRF1(selTrace2),'visible','on'); set(Exp(2).hLRF2(selTrace2),'visible','on'); catch, end try set(Exp(2).hL(selTrace2),'visible','on'); set(Exp(2).hLb(selTrace2),'visible','on'); catch, end for n=1:traceN3 try,set(Exp(3).hintL(n),'visible','off'); set(Exp(3).hintLb(n),'visible','off'); catch, end try ,set(Exp(3).hintLadj(n),'visible','off'); set(Exp(3).hintLadjb(n),'visible','off'); catch, end try, set(Exp(3).hLRF1(n),'visible','off'); set(Exp(3).hLRF2(n),'visible','off'); catch, end try, set(Exp(3).hL(n),'visible','off'); set(Exp(3).hLb(n),'visible','off'); catch, end end try, set(Exp(3).hLRF1(selTrace3),'visible','on'); set(Exp(3).hLRF2(selTrace3),'visible','on'); catch, end try, set(Exp(3).hL(selTrace3),'visible','on'); set(Exp(3).hLb(selTrace3),'visible','on'); catch, end elseif Exp(4).interacPBsel==1 %111111111111111111111111111 set(ghandles.Dlaxes1,'Visible','off'); set(ghandles.Dlaxes2,'Visible','off'); set(ghandles.Dlaxes3,'Visible','off'); set(ghandles.DNLaxes1,'Visible','on'); set(ghandles.DNLaxes2,'Visible','on'); set(ghandles.DNLaxes3,'Visible','on'); %{ try plot(handles.DNLaxes1,zeros(1,Exp(1).destPerMP),1:Exp(1).destPerMP,'y'); catch ME, ME.message, end %set(Exp(1).hzeroCLn,'visible','off'); try plot(handles.DNLaxes2,zeros(1,Exp(2).destPerMP),1:Exp(2).destPerMP,'y'); catch ME, ME.message, end %set(Exp(2).hzeroCLn,'visible','off'); try plot(handles.DNLaxes3,zeros(1,Exp(3).destPerMP),1:Exp(3).destPerMP,'y'); catch ME, ME.message, end %set(Exp(3).hzeroCLn,'visible','off'); %} for i=1:Exp(1).expLoadCnt,try set(Exp(1).hzeroCLn(i),'visible','on'); catch ME, ME.message, end, end for i=1:Exp(2).expLoadCnt,try set(Exp(2).hzeroCLn(i),'visible','on'); catch ME, ME.message, end, end for i=1:Exp(3).expLoadCnt,try set(Exp(3).hzeroCLn(i),'visible','on'); catch ME, ME.message, end, end for n=1:traceN1 try set(Exp(1).hLRF1(n),'visible','off'); set(Exp(1).hLRF2(n),'visible','off'); catch, end try set(Exp(1).hL(n),'visible','off'); set(Exp(1).hLb(n),'visible','off'); catch, end try set(Exp(1).hintL(n),'visible','off'); set(Exp(1).hintLb(n),'visible','off'); catch, end try set(Exp(1).hintLadj(n),'visible','off'); set(Exp(1).hintLadjb(n),'visible','off'); catch, end end try set(Exp(1).hintL(selTrace1),'visible','on'); set(Exp(1).hintLb(selTrace1),'visible','on'); catch, end try set(Exp(1).hintLadj(selTrace1),'visible','on'); set(Exp(1).hintLadjb(selTrace1),'visible','on'); catch, end for n=1:traceN2 try set(Exp(2).hLRF1(n),'visible','off'); set(Exp(2).hLRF2(n),'visible','off'); catch, end try set(Exp(2).hL(n),'visible','off'); set(Exp(2).hLb(n),'visible','off'); catch, end try set(Exp(2).hintL(n),'visible','off'); set(Exp(2).hintLb(n),'visible','off'); catch, end try set(Exp(2).hintLadj(n),'visible','off'); set(Exp(2).hintLadjb(n),'visible','off'); catch, end end try set(Exp(2).hintL(selTrace2),'visible','on'); set(Exp(2).hintLb(selTrace2),'visible','on'); catch, end try set(Exp(2).hintLadj(selTrace2),'visible','on'); set(Exp(2).hintLadjb(selTrace2),'visible','on'); catch, end for n=1:traceN3 try set(Exp(3).hLRF1(n),'visible','off'); set(Exp(3).hLRF2(n),'visible','off'); catch, end try set(Exp(3).hL(n),'visible','off'); set(Exp(3).hLb(n),'visible','off'); catch, end try set(Exp(3).hintL(n),'visible','off'); set(Exp(3).hintLb(n),'visible','off'); catch, end try set(Exp(3).hintLadj(n),'visible','off'); set(Exp(3).hintLadjb(n),'visible','off'); catch, end end try set(Exp(3).hintL(selTrace3),'visible','on'); set(Exp(3).hintLb(selTrace3),'visible','on'); catch, end try set(Exp(3).hintLadj(selTrace3),'visible','on'); set(Exp(3).hintLadjb(selTrace3),'visible','on'); catch, end elseif Exp(4).interacPBsel==2 %2222222222222222222222222222 % set(ghandles.DNLaxes1,'Visible','off') end %if Exp(4).interacPBsel==0 % hObject handle to rawNorm (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hint: get(hObject,'Value') returns toggle state of rawNorm % --- Executes on button press in InteracTog1. function InteracTog1_Callback(hObject, eventdata, handles) global Exp global ghandles expN=1; if strcmp(Exp(expN).DexpType,'single')|| strcmp(Exp(expN).DexpType,'multi') EZinteractDev4 elseif strcmp(Exp(expN).DexpType,'chrono') EZinteractDev5 end % Hint: get(hObject,'Value') returns toggle state of InteracTog1 % --- Executes on button press in InteracTog2. function InteracTog2_Callback(hObject, eventdata, handles) global Exp global ghandles expN=2; if strcmp(Exp(expN).DexpType,'single')|| strcmp(Exp(expN).DexpType,'multi') EZinteractDev4 elseif strcmp(Exp(expN).DexpType,'chrono') EZinteractDev5 end % Hint: get(hObject,'Value') returns toggle state of InteracTog2 % --- Executes on button press in InteracTog3. function InteracTog3_Callback(hObject, eventdata, handles) global Exp global ghandles expN=3; if strcmp(Exp(expN).DexpType,'single')|| strcmp(Exp(expN).DexpType,'multi') EZinteractDev4 elseif strcmp(Exp(expN).DexpType,'chrono') EZinteractDev5 end % Hint: get(hObject,'Value') returns toggle state of InteracTog3 % --- Executes on key press with focus on rawNorm and none of its controls. function rawNorm_KeyPressFcn(hObject, eventdata, handles) % hObject handle to rawNorm (see GCBO) % eventdata structure with the following fields (see UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) % --- Executes on button press in HtMapTog1. function HtMapTog1_Callback(hObject, eventdata, handles) global Exp global ghandles prntHt= 0; DexpN= Exp(1).DexpN; resetTg= Exp(1).Dexp(DexpN).resetHtmpTg; expN=1; Exp(1).htmapPBsel=Exp(1).htmapPBsel+1; if Exp(1).htmapPBsel ==resetTg, Exp(1).htmapPBsel=0; end if Exp(1).htmapPBsel ==3, set(handles.HtMapTog1,'string','N1') elseif Exp(1).htmapPBsel ==4, set(handles.HtMapTog1,'string','N2') elseif Exp(1).htmapPBsel ==1, set(handles.HtMapTog1,'string','K') elseif Exp(1).htmapPBsel ==2, set(handles.HtMapTog1,'string','R') else set(handles.HtMapTog1,'string','L'), end %******************** htMapTogPBfg=1; % EZhtMap % htMapTogPBfg=0; % %******************** % --- Executes on button press in HtMapTog2. function HtMapTog2_Callback(hObject, eventdata, handles) global Exp global ghandles prntHt= 0; expN=2; DexpN= Exp(2).DexpN; resetTg= Exp(2).Dexp(DexpN).resetHtmpTg; Exp(2).htmapPBsel=Exp(2).htmapPBsel+1; if Exp(2).htmapPBsel ==resetTg, Exp(2).htmapPBsel=0; end if Exp(2).htmapPBsel ==3, set(handles.HtMapTog2,'string','N1') elseif Exp(2).htmapPBsel ==4, set(handles.HtMapTog2,'string','N2') elseif Exp(2).htmapPBsel ==1, set(handles.HtMapTog2,'string','K') elseif Exp(2).htmapPBsel ==2, set(handles.HtMapTog2,'string','R') else set(handles.HtMapTog2,'string','L'), end %******************** htMapTogPBfg=1; % EZhtMap % htMapTogPBfg=0; % %******************** % --- Executes on button press in HtMapTog3. function HtMapTog3_Callback(hObject, eventdata, handles) global Exp global ghandles prntHt= 0; expN=3; DexpN= Exp(3).DexpN; resetTg= Exp(3).Dexp(DexpN).resetHtmpTg; Exp(3).htmapPBsel=Exp(3).htmapPBsel+1; if Exp(3).htmapPBsel ==resetTg, Exp(3).htmapPBsel=0; end if Exp(3).htmapPBsel ==3, set(handles.HtMapTog3,'string','N1') elseif Exp(3).htmapPBsel ==4, set(handles.HtMapTog3,'string','N2') elseif Exp(3).htmapPBsel ==1, set(handles.HtMapTog3,'string','K') elseif Exp(3).htmapPBsel ==2, set(handles.HtMapTog3,'string','R') else set(handles.HtMapTog3,'string','L'), end %******************** htMapTogPBfg=1; % EZhtMap % htMapTogPBfg=0; % %******************** %**************************BONE SYARD********************************************************** %{ %--- Executes on button press in semiLog. function semiLog_Callback(hObject, eventdata, handles) % hObject handle to semiLog (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % Hint: get(hObject,'Value') returns toggle state of semiLog %} % --- Executes on key press with focus on listboxGnOrf and none of its controls. %{ function listboxGnOrf_KeyPressFcn(hObject, eventdata, handles) % hObject handle to listboxGnOrf (see GCBO) % eventdata structure with the following fields (see UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) x=eventdata ck=get(gcf,'currentkey') %} %{ %**********CLEAR Trace selections for all zones***************** global Exp global ghandles set(ghandles.OLay1,'string',{' '}) set(ghandles.OLexp1,'string',{''}) cla(ghandles.OLaxes1) Exp(1).traceN=0; Exp(1).hOL =[]; Exp(1).hOLb=[]; Exp(1).hOLname = {}; Exp(1).hOLexpNm={}; Exp(1).hOLresDir={} Exp(1).hOLplateNum=[]; Exp(1).hOLresDir= {}; %*********************************************************************************** set(ghandles.OLay2,'string',{''}) set(ghandles.OLexp2,'string',{''}) cla(ghandles.OLaxes2) Exp(2).traceN=0; Exp(2).hOL =[]; Exp(2).hOLb=[]; Exp(2).hOLname = {}; Exp(2).hOLexpNm={}; Exp(2).hOLresDir={} Exp(2).hOLplateNum=[]; Exp(2).hOLresDir= {}; %*********************************************************************************** set(ghandles.OLay3,'string',{''}) set(ghandles.OLexp3,'string',{''}) cla(ghandles.OLaxes3); Exp(3).traceN=0; Exp(3).hOL =[]; Exp(3).hOLb=[]; Exp(3).hOLname = {}; Exp(3).hOLexpNm={}; Exp(3).hOLresDir={} Exp(3).hOLplateNum=[]; Exp(3).hOLresDir= {}; %*********************************************************************************** %} % -------------------------------------------------------------------- % hObject handle to quickView (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- Executes on button press in RFtable1. function RFtable1_Callback(hObject, eventdata, handles) global Exp global ghandles expN=1; DexpN= get(handles.DN1,'value'); EZtableRFdiag % --- Executes on button press in RFtable2. function RFtable2_Callback(hObject, eventdata, handles) global Exp global ghandles expN=2; DexpN= get(handles.DN2,'value'); EZtableRFdiag % --- Executes on button press in RFtable3. function RFtable3_Callback(hObject, eventdata, handles) global Exp global ghandles expN=3; DexpN= get(handles.DN3,'value'); EZtableRFdiag function DN1_Callback(hObject, eventdata, handles) % hObject handle to DN1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % str2double(get(hObject,'String')) returns contents of DN1 as a double global Exp expN=1; input=get(hObject,'String'); Max= Exp(expN).DexpLength; Min= 0; %(get(handles.DN1,'min')); if str2num(input) > Min && str2num(input) <= Max display(input) set(handles.DN1,'value',str2double(input)); else if str2double(input) >= Max, set(handles.DN1,'value',Max); set(handles.DN1,'string',num2str(Max));end if str2double(input) <= Min, set(handles.DN1,'value',Min),set(handles.DN1,'string',num2str(1));end end EZVimDisplay % --- Executes during object creation, after setting all properties. function DN1_CreateFcn(hObject, eventdata, handles) if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end function DN2_Callback(hObject, eventdata, handles) global Exp expN=2; input=get(hObject,'String'); Max= Exp(expN).DexpLength; Min= 0; %(get(handles.DN1,'min')); if str2num(input) > Min && str2num(input) <= Max display(input) set(handles.DN2,'value',str2double(input)); else if str2double(input) >= Max, set(handles.DN2,'value',Max); set(handles.DN2,'string',num2str(Max));end if str2double(input) <= Min, set(handles.DN2,'value',Min),set(handles.DN2,'string',num2str(1));end end EZVimDisplay % --- Executes during object creation, after setting all properties. function DN2_CreateFcn(hObject, eventdata, handles) if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end function DN3_Callback(hObject, eventdata, handles) global Exp expN=3; input=get(hObject,'String'); Max= Exp(expN).DexpLength; Min= 0; %(get(handles.DN1,'min')); if str2num(input) > Min && str2num(input) <= Max display(input) set(handles.DN3,'value',str2double(input)); else if str2double(input) >= Max, set(handles.DN3,'value',Max); set(handles.DN3,'string',num2str(Max));end if str2double(input) <= Min, set(handles.DN3,'value',Min),set(handles.DN3,'string',num2str(1));end end EZVimDisplay % --- Executes during object creation, after setting all properties. function DN3_CreateFcn(hObject, eventdata, handles) if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white'); end % --- Executes on button press in CompositePB1. function CompositePB1_Callback(hObject, eventdata, handles) global Exp global ghandles expN=1; DexpN= get(handles.DN1,'value'); EZcompositePlot % --- Executes on button press in CompositePB2. function CompositePB2_Callback(hObject, eventdata, handles) global Exp global ghandles expN=2; DexpN= get(handles.DN2,'value'); EZcompositePlot % --- Executes on button press in CompositePB3. function CompositePB3_Callback(hObject, eventdata, handles) global Exp global ghandles expN=3; DexpN= get(handles.DN3,'value'); EZcompositePlot % -------------------------------------------------------------------- function SpotViewInterval_Callback(hObject, eventdata, handles) % hObject handle to SpotViewInterval (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) global Exp global ghandles prompt={'Enter Image Interval for SpotView:'}; name='Input Image Interval for SpotView'; numlines=1 try if ~isempty(Exp(4).SpotVIntervPar) default= Exp(4).SpotVIntervPar; else default={'1'}; end catch default={'1'}; end answer=inputdlg(prompt,name,numlines,default) if ~isempty(answer) Exp(4).SpotVintervPar= answer; end % --- Executes on button press in CompositeTog1. function CompositeTog1_Callback(hObject, eventdata, handles) global Exp global ghandles ghandles=handles; expN=1; DexpN= (get(handles.DN1,'value')); %set(handles.zonePB1,'value',1) %set(handles.zonePB2,'value',0) %set(handles.zonePB3,'value',0) if get(handles.zonePB1,'value')==1 && get(handles.CompositeTog1,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(expN).Dexp(DexpN).srtGnLst) set(handles.CompositeTog1,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog1,'ForegroundColor',[1.0 0.0, 0.0]) else set(handles.CompositeTog1,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog1,'ForegroundColor',[0.0 0.0, 0.0]) end % --- Executes on button press in CompositeTog2. function CompositeTog2_Callback(hObject, eventdata, handles) global Exp global ghandles ghandles=handles; expN=2; DexpN= (get(handles.DN2,'value')); %set(handles.zonePB1,'value',0) %set(handles.zonePB2,'value',1) %set(handles.zonePB3,'value',0) if get(handles.zonePB2,'value')==1 && get(handles.CompositeTog2,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(expN).Dexp(DexpN).srtGnLst) set(handles.CompositeTog2,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog2,'ForegroundColor',[1.0 0.0, 0.0]) else set(handles.CompositeTog2,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog2,'ForegroundColor',[0.0 0.0, 0.0]) end % --- Executes on button press in CompositeTog3. function CompositeTog3_Callback(hObject, eventdata, handles) global Exp global ghandles ghandles=handles; expN=3; DexpN= (get(handles.DN3,'value')); %set(handles.zonePB1,'value',0) %set(handles.zonePB2,'value',0) %set(handles.zonePB3,'value',1) if get(handles.zonePB3,'value')==1 && get(handles.CompositeTog3,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(expN).Dexp(DexpN).srtGnLst) set(handles.CompositeTog3,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog3,'ForegroundColor',[1.0 0.0, 0.0]) else set(handles.CompositeTog3,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog3,'ForegroundColor',[0.0 0.0, 0.0]) end % -------------------------------------------------------------------- function TrendsBoxPlot_Callback(hObject, eventdata, handles) global userPars userPars.boxplotFlg= 1; %*************** global userPars prompt={'Set "Outliers" On/Off:',... 'Set "Notch" On/Off:', ... 'Enter "LabelShift" value[default= 0.5]:', ... 'Enter "Font Size [default=8:' ... 'Enter "Label Angle" [default=45]' ... 'Enter Upper K Limit value[typical= 155]:'}; name='Box Plot Parameters'; numlines=1; %defaultanswer= {'on','on','0.3','8','45'}; defaultanswer= userPars.BPdefault; answer=inputdlg(prompt,name,numlines,defaultanswer); userPars.BPoutliers= answer(1); userPars.BPnotch= answer(2); userPars.BPlblShft= str2double(cell2mat(answer(3))); userPars.BPfontSz= str2double(cell2mat(answer(4))); userPars.BProt= str2double(cell2mat(answer(5))); userPars.kfiltLim= str2double(cell2mat(answer(6))); userPars.BPdefault= [answer(1),answer(2),answer(3),answer(4),answer(5),answer(6)]; userPars.Trenddefault= answer(6); %*************** % -------------------------------------------------------------------- function TrendsOverlay_Callback(hObject, eventdata, handles) global userPars userPars.boxplotFlg=0; %*************** global userPars prompt={'Enter Upper K Limit value[typical= 155]:'}; name='Box Plot Parameters'; numlines=1; %defaultanswer= {'1000'}; %if ~exist('userPars.Trenddefault','var'), userPars.Trenddefault= {'1000'}; end %try defaultanswer= userPars.BPdefault(6) %defaultanswer= userPars.Trenddefault; %catch % userPars.Trenddefault= {'1000'} % defaultanswer= userPars.Trenddefault; %end answer=inputdlg(prompt,name,numlines,defaultanswer); userPars.kfiltLim= str2double(cell2mat(answer(1))); %userPars.Trenddefault= answer(1); userPars.BPdefault(6)= answer(1); % --- Executes on button press in printHt1. function printHt1_Callback(hObject, eventdata, handles) global Exp global ghandles DexpN= Exp(1).DexpN; expN= 1; prntHt= 1; %******************** htMapTogPBfg= 1; % EZhtMap % %******************** prntHt= 0; % --- Executes on button press in PrintHt2. function PrintHt2_Callback(hObject, eventdata, handles) global Exp global ghandles DexpN= Exp(2).DexpN; expN= 2; prntHt= 2; %******************** htMapTogPBfg= 2; % EZhtMap % %******************** prntHt= 0; % --- Executes on button press in PrintHt3. function PrintHt3_Callback(hObject, eventdata, handles) global Exp global ghandles DexpN= Exp(1).DexpN; expN= 3; prntHt= 3; %******************** htMapTogPBfg= 3; % EZhtMap % %******************** prntHt= 0; % -------------------------------------------------------------------- function HMapRange_Callback(hObject, eventdata, handles) global Exp global ghandles global adj global flip prompt={'Enter Standard Deviation Multiplier value[typical= 2.0]:'}; %prompt={'Enter Standard Deviation Multiplier value[typical= 3.0]:','Colormap Flip[Typical=T]'}; name='Heatmap Adjustment range'; numlines=1; defaultanswer= {'2.0'}; %defaultanswer= {'3.0','T'}; answer=inputdlg(prompt,name,numlines,defaultanswer); adj= str2double(answer(1)); flip= 'T'; %flip= upper(answer(2)); % -------------------------------------------------------------------- function SetExpJobsFolder_Callback(hObject, eventdata, handles) % hObject handle to SetExpJobsFolder (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA try global usrExpJobsDir catch end w= pwd; try %Non PC accommodatition if ispc,cd(fullfile('C:\')); % \Easy\Experiments')); else cd(fullfile('~')) end selpath = uigetdir('default','Set /ExpJobs Folder') usrExpJobsDir= selpath; cd(w) save('ExpJobsFldr','usrExpJobsDir') catch cd(w) end cd(w) %+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ % --- Executes on button press in zonePB1. function zonePB1_Callback(hObject, eventdata, handles) global Exp global ghandles global zonePB %if get(handles.zonePB1,'value')==0, set(handles.zonePB1,'value',1); end zonePB = 1 set(handles.zonePB1,'value',1); DexpN= get(handles.DN1,'value') set(handles.zonePB2,'value',0) set(handles.zonePB3,'value',0) orfLstSel=get(handles.GeneOrfTog,'value') if get(handles.GeneOrfTog,'value')==1 set(handles.listboxGnOrf,'string',Exp(1).Dexp(DexpN).srtOrfLst) %set(handles.listboxGnOrf,'string',Exp(1).srtOrfLst) else set(handles.listboxGnOrf,'string',Exp(1).Dexp(DexpN).srtGnLst) %set(handles.listboxGnOrf,'string',Exp(1).srtGnLst) end %switch background color to indicate zone selected 230815 if get(handles.zonePB1,'value')==1 set(handles.zonePB1,'BackgroundColor',[1.0 0.6 0.6]) set(handles.zonePB2,'BackgroundColor',[1.0 1.0 1.0]) set(handles.zonePB3,'BackgroundColor',[1.0 1.0 1.0]) end if get(handles.zonePB1,'value')==1 && get(handles.CompositeTog1,'value')==1 set(handles.GeneOrfTog,'value',0); set(handles.listboxGnOrf,'value',1); set(handles.listboxGnOrf,'string',Exp(1).Dexp(DexpN).srtGnLst) set(handles.CompositeTog1,'BackgroundColor',[1.0 0.6 0.6]); set(handles.CompositeTog1,'ForegroundColor',[1.0 0.0, 0.0]); set(handles.zonePB1,'BackgroundColor',[1.0 0.6 0.6]); end % --- Executes on button press in zonePB2. function zonePB2_Callback(hObject, eventdata, handles) global Exp global ghandles global zonePB zonePB = 2 %if get(handles.zonePB2,'value')==0, set(handles.zonePB2,'value',1); end set(handles.zonePB2,'value',1); DexpN= get(handles.DN2,'value') set(handles.zonePB1,'value',0); set(handles.zonePB3,'value',0); set(ghandles.zonePB2,'value',1); set(ghandles.zonePB1,'value',0); set(ghandles.zonePB3,'value',0); orfLstSel=get(handles.GeneOrfTog,'value') if orfLstSel==1 set(handles.listboxGnOrf,'string',Exp(2).Dexp(DexpN).srtOrfLst) %set(handles.listboxGnOrf,'string',Exp(2).srtOrfLst) else set(handles.listboxGnOrf,'string',Exp(2).Dexp(DexpN).srtGnLst) %set(handles.listboxGnOrf,'string',Exp(2).srtGnLst) end %switch background color to indicate zone selected 230815 if get(handles.zonePB2,'value')==1 set(handles.zonePB2,'BackgroundColor',[1.0 0.6 0.6]) set(handles.zonePB1,'BackgroundColor',[1.0 1.0 1.0]) set(handles.zonePB3,'BackgroundColor',[1.0 1.0 1.0]) set(ghandles.zonePB2,'value',1); set(ghandles.zonePB1,'value',0); set(ghandles.zonePB3,'value',0); end if get(handles.zonePB2,'value')==1 && get(handles.CompositeTog2,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(2).Dexp(DexpN).srtGnLst) set(handles.CompositeTog2,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog2,'ForegroundColor',[1.0 0.0, 0.0]) set(handles.zonePB2,'BackgroundColor',[1.0 0.6 0.6]) else set(handles.CompositeTog2,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog2,'ForegroundColor',[0.0 0.0, 0.0]) end % --- Executes on button press in zonePB3. function zonePB3_Callback(hObject, eventdata, handles) global Exp global ghandles global zonePB zonePB= 3 %if get(handles.zonePB3,'value')==0, set(handles.zonePB3,'value',1); end set(handles.zonePB3,'value',1); DexpN= get(handles.DN3,'value') set(handles.zonePB1,'value',0); set(handles.zonePB2,'value',0); set(ghandles.zonePB3,'value',1); set(ghandles.zonePB1,'value',0); set(ghandles.zonePB2,'value',0); orfLstSel=get(handles.GeneOrfTog,'value') if orfLstSel==1 set(handles.listboxGnOrf,'string',Exp(3).Dexp(DexpN).srtOrfLst) %set(handles.listboxGnOrf,'string',Exp(3).srtOrfLst) else set(handles.listboxGnOrf,'string',Exp(3).Dexp(DexpN).srtGnLst) %set(handles.listboxGnOrf,'string',Exp(3).srtGnLst) end %switch background color to indicate zone selected 230815 if get(handles.zonePB3,'value')==1 set(handles.zonePB3,'BackgroundColor',[1.0 0.6 0.6]); set(handles.zonePB1,'BackgroundColor',[1.0 1.0 1.0]); set(handles.zonePB2,'BackgroundColor',[1.0 1.0 1.0]); end if get(handles.zonePB3,'value')==1 && get(handles.CompositeTog3,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(3).Dexp(DexpN).srtGnLst) set(handles.CompositeTog3,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog3,'ForegroundColor',[1.0 0.0, 0.0]) set(handles.zonePB3,'BackgroundColor',[1.0 0.6 0.6]) else set(handles.CompositeTog3,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog3,'ForegroundColor',[0.0 0.0, 0.0]) end %********************************************************************************** %***********BONE YARD************************************************************** %{ % RadioButton1************************* function zoneRad1_Callback(hObject, eventdata, handles) global Exp if get(handles.zoneRad1,'value')==0, set(handles.zoneRad1,'value',1); end DexpN= get(handles.DN1,'value') set(handles.zoneRad2,'value',0) set(handles.zoneRad3,'value',0) orfLstSel=get(handles.GeneOrfTog,'value') if get(handles.GeneOrfTog,'value')==1 set(handles.listboxGnOrf,'string',Exp(1).Dexp(DexpN).srtOrfLst) %set(handles.listboxGnOrf,'string',Exp(1).srtOrfLst) else set(handles.listboxGnOrf,'string',Exp(1).Dexp(DexpN).srtGnLst) %set(handles.listboxGnOrf,'string',Exp(1).srtGnLst) end if get(handles.zoneRad1,'value')==1 && get(handles.CompositeTog1,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(1).Dexp(DexpN).srtGnLst) set(handles.CompositeTog1,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog1,'ForegroundColor',[1.0 0.0, 0.0]) else set(handles.CompositeTog1,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog1,'ForegroundColor',[0.0 0.0, 0.0]) end % --- Executes on button press in zoneRad2. function zoneRad2_Callback(hObject, eventdata, handles) global Exp if get(handles.zoneRad2,'value')==0, set(handles.zoneRad2,'value',1); end DexpN= get(handles.DN2,'value') set(handles.zoneRad1,'value',0) set(handles.zoneRad3,'value',0) orfLstSel=get(handles.GeneOrfTog,'value') if orfLstSel==1 set(handles.listboxGnOrf,'string',Exp(2).Dexp(DexpN).srtOrfLst) %set(handles.listboxGnOrf,'string',Exp(2).srtOrfLst) else set(handles.listboxGnOrf,'string',Exp(2).Dexp(DexpN).srtGnLst) %set(handles.listboxGnOrf,'string',Exp(2).srtGnLst) end if get(handles.zoneRad2,'value')==1 && get(handles.CompositeTog2,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(2).Dexp(DexpN).srtGnLst) set(handles.CompositeTog2,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog2,'ForegroundColor',[1.0 0.0, 0.0]) else set(handles.CompositeTog2,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog2,'ForegroundColor',[0.0 0.0, 0.0]) end % --- Executes on button press in zoneRad3. function zoneRad3_Callback(hObject, eventdata, handles) global Exp if get(handles.zoneRad3,'value')==0, set(handles.zoneRad3,'value',1); end DexpN= get(handles.DN3,'value') set(handles.zoneRad1,'value',0) set(handles.zoneRad2,'value',0) orfLstSel=get(handles.GeneOrfTog,'value') if orfLstSel==1 set(handles.listboxGnOrf,'string',Exp(3).Dexp(DexpN).srtOrfLst) %set(handles.listboxGnOrf,'string',Exp(3).srtOrfLst) else set(handles.listboxGnOrf,'string',Exp(3).Dexp(DexpN).srtGnLst) %set(handles.listboxGnOrf,'string',Exp(3).srtGnLst) end if get(handles.zoneRad3,'value')==1 && get(handles.CompositeTog3,'value')==1 set(handles.GeneOrfTog,'value',0) set(handles.listboxGnOrf,'value',1) set(handles.listboxGnOrf,'string',Exp(3).Dexp(DexpN).srtGnLst) set(handles.CompositeTog3,'BackgroundColor',[1.0 0.6 0.6]) set(handles.CompositeTog3,'ForegroundColor',[1.0 0.0, 0.0]) else set(handles.CompositeTog3,'BackgroundColor',[1.0 0.8, 0.8]) set(handles.CompositeTog3,'ForegroundColor',[0.0 0.0, 0.0]) end %} % --- Executes on mouse press over figure background, over a disabled or % --- inactive control, or over an axes background. %function figure1_WindowButtonDownFcn(hObject, eventdata, handles) % hObject handle to figure1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- If Enable == 'on', executes on mouse press in 5 pixel border. % --- Otherwise, executes on mouse press in 5 pixel border or over printOL1. function printOL1_ButtonDownFcn(hObject, eventdata, handles) % hObject handle to printOL1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % --- Executes on key press with focus on printOL2 and none of its controls. function printOL2_KeyPressFcn(hObject, eventdata, handles) % hObject handle to printOL2 (see GCBO) % eventdata structure with the following fields (see MATLAB.UI.CONTROL.UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) % --- Executes on key press with focus on printOL3 and none of its controls. function printOL3_KeyPressFcn(hObject, eventdata, handles) % hObject handle to printOL3 (see GCBO) % eventdata structure with the following fields (see MATLAB.UI.CONTROL.UICONTROL) % Key: name of the key that was pressed, in lower case % Character: character interpretation of the key(s) that was pressed % Modifier: name(s) of the modifier key(s) (i.e., control, shift) pressed % handles structure with handles and user data (see GUIDATA) % --- Creates and returns a handle to the GUI figure. function h1 = EZviewGui_export_LayoutFcn(policy) % policy - create a new figure or use a singleton. 'new' or 'reuse'. persistent hsingleton; if strcmpi(policy, 'reuse') & ishandle(hsingleton) h1 = hsingleton; return; end load EZviewGui_export.mat appdata = []; appdata.GUIDEOptions = struct(... 'active_h', [], ... 'taginfo', struct(... 'figure', 2, ... 'axes', 32, ... 'pushbutton', 40, ... 'popupmenu', 2, ... 'slider', 20, ... 'text', 66, ... 'edit', 30, ... 'listbox', 3, ... 'uitoolbar', 2, ... 'uipushtool', 6, ... 'uitoggletool', 6, ... 'uipanel', 9, ... 'togglebutton', 32, ... 'radiobutton', 4), ... 'override', 1, ... 'release', 13, ... 'resize', 'simple', ... 'accessibility', 'callback', ... 'mfile', 1, ... 'callbacks', 1, ... 'singleton', 0, ... 'syscolorfig', 1, ... 'blocking', 0, ... 'lastSavedFile', 'C:\EZview2023\EZviewDev23_1004POSadaptedOnM4800_wlapp\EZviewGui_export.m', ... 'lastFilename', 'C:\EZview2023\EZviewDev23_0921POSadaptedOnM4800_wlapp\EZviewGui.fig'); appdata.lastValidTag = 'figure1'; appdata.GUIDELayoutEditor = mat{1}; h1 = figure(... 'Units','characters',... 'Position',[116.2 5.69230769230769 260.2 46.1538461538462],... 'Visible',get(0,'defaultfigureVisible'),... 'Color',[0.941176470588235 0.941176470588235 0.941176470588235],... 'CurrentAxesMode','manual',... 'IntegerHandle','off',... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'WindowButtonDownFcn',@(hObject,eventdata)EZviewGui_export('figure1_WindowButtonDownFcn',hObject,eventdata,guidata(hObject)),... 'WindowButtonUpFcn',@(hObject,eventdata)EZviewGui_export('figure1_WindowButtonUpFcn',hObject,eventdata,guidata(hObject)),... 'MenuBar','none',... 'ToolBar','none',... 'Name','EZviewGui',... 'NumberTitle','off',... 'HandleVisibility','callback',... 'ButtonDownFcn',@(hObject,eventdata)EZviewGui_export('figure1_ButtonDownFcn',hObject,eventdata,guidata(hObject)),... 'Tag','figure1',... 'UserData',[],... 'PaperPosition',get(0,'defaultfigurePaperPosition'),... 'InvertHardcopy',get(0,'defaultfigureInvertHardcopy'),... 'ScreenPixelsPerInchMode','manual',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'Iaxes1'; h2 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.733812949640288 1 0.733812949640288],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'YLim',get(0,'defaultaxesYLim'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[],... 'XTickLabel',{ '16'; '12'; '8'; '4'; '1' },... 'YTick',[],... 'YTickLabel',{ '24'; '20'; '16'; '12'; '8'; '4'; '1' },... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.117517847336628 0.706709956709957 0.0785282811641955 0.231601731601732],... 'InnerPosition',[0.117517847336628 0.706709956709957 0.0785282811641955 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.53904464634078 0.469441375076734 1.12468647232596 0.320073664825046],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Tag','Iaxes1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h3 = get(h2,'title'); set(h3,... 'Parent',h2,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500001916698381 1.02390587529976 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h4 = get(h2,'xlabel'); set(h4,... 'Parent',h2,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837159 -0.0423661071143089 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h5 = get(h2,'ylabel'); set(h5,... 'Parent',h2,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.0577342047930283 0.500000476837158 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h6 = get(h2,'zlabel'); set(h6,... 'Parent',h2,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Iaxes2'; h7 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 90 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 90 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[1 180 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[0.762589928057554 1 0.762589928057554],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'YLim',[0 180],... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[],... 'XTickLabel',[],... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[],... 'YTickLabel',[],... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.115870400878638 0.388528138528139 0.0818231740801757 0.231601731601732],... 'InnerPosition',[0.115870400878638 0.388528138528139 0.0818231740801757 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.51931330472103 0.470663878657661 1.11026741498845 0.320907189993861],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Tag','Iaxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h8 = get(h7,'title'); set(h8,... 'Parent',h7,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.50000184437014 184.303057553957 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h9 = get(h7,'xlabel'); set(h9,... 'Parent',h7,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -7.62589928057554 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h10 = get(h7,'ylabel'); set(h10,... 'Parent',h7,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.0555555555555556 90.0000858306885 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h11 = get(h7,'zlabel'); set(h11,... 'Parent',h7,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Iaxes3'; h12 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.764285714285714 1 0.764285714285714],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[],... 'XTickLabel',[],... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[],... 'YTickLabel',[],... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.11595131326073 0.0487144790257104 0.0819987187700192 0.232746955345061],... 'InnerPosition',[0.11595131326073 0.0487144790257104 0.0819987187700192 0.232746955345061],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.51931330472103 0.470663878657661 1.11026741498845 0.320907189993861],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Tag','Iaxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h13 = get(h12,'title'); set(h13,... 'Parent',h12,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500001831589458 1.02373511904762 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h14 = get(h12,'xlabel'); set(h14,... 'Parent',h12,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -0.0420634920634921 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h15 = get(h12,'ylabel'); set(h15,... 'Parent',h12,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.055036344755971 0.500000476837158 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h16 = get(h12,'zlabel'); set(h16,... 'Parent',h12,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Paxes1'; h17 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[100 85 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[100 85 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[200 170 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[1 0.621621621621622 0.621621621621622],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 200],... 'YLim',[0 170],... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 50 100 150 200],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '50'; '100'; '150'; '200' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 50 100 150],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '50'; '100'; '150' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.310734463276836 0.711162255466053 0.170056497175141 0.231300345224396],... 'InnerPosition',[0.310734463276836 0.711162255466053 0.170056497175141 0.231300345224396],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.329184549356223 0.264060773480663 0.240557939914163 0.180041436464088],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'NextPlot','add',... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Paxes1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','Paxes1'); appdata = []; appdata.Internal_InteractionsArray = []; h18 = get(h17,'title'); set(h18,... 'Parent',h17,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[100.000443329682 172.032608695652 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h19 = get(h17,'xlabel'); set(h19,... 'Parent',h17,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[100.000095367432 -15.5217387265917 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h20 = get(h17,'ylabel'); set(h20,... 'Parent',h17,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-15.2552548793701 85.0000810623169 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h21 = get(h17,'zlabel'); set(h21,... 'Parent',h17,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Paxes2'; h22 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[100 90 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[100 90 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[200 180 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[1 0.626126126126126 0.626126126126126],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 200],... 'YLim',[0 180],... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 50 100 150 200],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '50'; '100'; '150'; '200' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 50 100 150],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '50'; '100'; '150' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.310818231740802 0.38961038961039 0.170236133992312 0.231601731601732],... 'InnerPosition',[0.310818231740802 0.38961038961039 0.170236133992312 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.329184549356223 0.264060773480663 0.240557939914163 0.180041436464088],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'NextPlot','add',... 'Tag','Paxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h23 = get(h22,'title'); set(h23,... 'Parent',h22,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[100.000443329682 182.136690647482 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h24 = get(h22,'xlabel'); set(h24,... 'Parent',h22,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[100.000095367432 -16.3165463380676 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h25 = get(h22,'ylabel'); set(h25,... 'Parent',h22,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-15.2552548793701 90.0000858306885 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h26 = get(h22,'zlabel'); set(h26,... 'Parent',h22,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Paxes3'; h27 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[100 90 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[100 90 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[200 180 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[1 0.6289592760181 0.6289592760181],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 200],... 'YLim',[0 180],... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 50 100 150 200],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '50'; '100'; '150'; '200' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 50 100 150],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '50'; '100'; '150' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.310269082921472 0.0681818181818182 0.170236133992312 0.231601731601732],... 'InnerPosition',[0.310269082921472 0.0681818181818182 0.170236133992312 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.329184549356223 0.264060773480663 0.240557939914163 0.180041436464089],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'NextPlot','add',... 'Tag','Paxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h28 = get(h27,'title'); set(h28,... 'Parent',h27,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[100.000444904172 182.136690647482 0.500000000000007],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h29 = get(h27,'xlabel'); set(h29,... 'Parent',h27,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[100.000095367432 -16.3165463380676 7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h30 = get(h27,'ylabel'); set(h30,... 'Parent',h27,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-15.3242831819916 90.0000858306885 7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h31 = get(h27,'zlabel'); set(h31,... 'Parent',h27,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'OLaxes1'; h32 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[100 90 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[100 90 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[200 180 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[1 0.624434389140271 0.624434389140271],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 200],... 'YLim',[0 180],... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 50 100 150 200],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '50'; '100'; '150'; '200' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 50 100 150],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '50'; '100'; '150' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.507344632768362 0.711162255466053 0.170056497175141 0.231300345224396],... 'InnerPosition',[0.507344632768362 0.711162255466053 0.170056497175141 0.231300345224396],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.0744901262544513 0.0279748317237343 0.0544350922628683 0.0190737489025461],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'NextPlot','add',... 'Tag','OLaxes1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h33 = get(h32,'title'); set(h33,... 'Parent',h32,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[100.000665845914 182.152173913043 0.499999999999993],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h34 = get(h32,'xlabel'); set(h34,... 'Parent',h32,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[100.000095367432 -16.4347821810973 -7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h35 = get(h32,'ylabel'); set(h35,... 'Parent',h32,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-15.3242831819919 90.0000858306884 -7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h36 = get(h32,'zlabel'); set(h36,... 'Parent',h32,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'OLaxes2'; h37 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[100 90 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[100 90 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[200 180 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[1 0.626126126126126 0.626126126126126],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 200],... 'YLim',[0 180],... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 50 100 150 200],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '50'; '100'; '150'; '200' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 50 100 150],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '50'; '100'; '150' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.507413509060956 0.38961038961039 0.170236133992312 0.231601731601732],... 'InnerPosition',[0.507413509060956 0.38961038961039 0.170236133992312 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.0744901262544513 0.0279748317237343 0.0544350922628683 0.0190737489025461],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'NextPlot','add',... 'Tag','OLaxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h38 = get(h37,'title'); set(h38,... 'Parent',h37,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[100.000663276191 182.136690647482 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h39 = get(h37,'xlabel'); set(h39,... 'Parent',h37,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[100.000095367432 -16.3165463380676 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h40 = get(h37,'ylabel'); set(h40,... 'Parent',h37,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-15.25525487937 90.0000858306885 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h41 = get(h37,'zlabel'); set(h41,... 'Parent',h37,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'OLaxes3'; h42 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[90 90 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[90 90 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[180 180 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[1 0.626126126126126 0.626126126126126],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 180],... 'YLim',[0 180],... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 20 40 60 80 100 120 140 160 180],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '20'; '40'; '60'; '80'; '100'; '120'; '140'; '160'; '180' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 50 100 150],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '50'; '100'; '150' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.506864360241626 0.0681818181818182 0.170236133992312 0.231601731601732],... 'InnerPosition',[0.506864360241626 0.0681818181818182 0.170236133992312 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.0744901262544513 0.0279748317237343 0.0544350922628682 0.0190737489025461],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'NextPlot','add',... 'Tag','OLaxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h43 = get(h42,'title'); set(h43,... 'Parent',h42,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[90.0005961753226 182.136690647482 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h44 = get(h42,'xlabel'); set(h44,... 'Parent',h42,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[90.0000858306885 -16.3165463380676 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h45 = get(h42,'ylabel'); set(h45,... 'Parent',h42,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-13.7297293914332 90.0000858306885 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h46 = get(h42,'zlabel'); set(h46,... 'Parent',h42,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Daxes1'; h47 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[100 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[100 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[200 1 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[1 0.6289592760181 0.6289592760181],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 200],... 'YLim',get(0,'defaultaxesYLim'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 50 100 150 200],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '50'; '100'; '150'; '200' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.5 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.5'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.70785282811642 0.713203463203463 0.170236133992312 0.231601731601732],... 'InnerPosition',[0.70785282811642 0.713203463203463 0.170236133992312 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.0773133671912089 0.0279748317237343 0.0564982298704988 0.0190737489025461],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Daxes1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h48 = get(h47,'title'); set(h48,... 'Parent',h47,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[100.000891102925 1.02390587529976 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h49 = get(h47,'xlabel'); set(h49,... 'Parent',h47,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[100.000095367432 -0.203037565441536 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h50 = get(h47,'ylabel'); set(h50,... 'Parent',h47,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-29.7636997316157 0.500000476837158 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h51 = get(h47,'zlabel'); set(h51,... 'Parent',h47,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Daxes2'; h52 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[1 0.6289592760181 0.6289592760181],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'YLim',get(0,'defaultaxesYLim'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.5 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.5'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.70620538165843 0.388528138528139 0.170236133992312 0.231601731601732],... 'InnerPosition',[0.70620538165843 0.388528138528139 0.170236133992312 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.0744901262544511 0.0279748317237343 0.0544350922628683 0.0190737489025461],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Daxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h53 = get(h52,'title'); set(h53,... 'Parent',h52,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500004446884088 1.02390587529976 0.500000000000007],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h54 = get(h52,'xlabel'); set(h54,... 'Parent',h52,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837159 -0.203037565441536 7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h55 = get(h52,'ylabel'); set(h55,... 'Parent',h52,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.148818498658078 0.500000476837158 7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h56 = get(h52,'zlabel'); set(h56,... 'Parent',h52,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Daxes3'; h57 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[1 0.621621621621622 0.621621621621622],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'YLim',get(0,'defaultaxesYLim'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.5 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.5'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.705957719410634 0.0730717185385656 0.170403587443946 0.230040595399188],... 'InnerPosition',[0.705957719410634 0.0730717185385656 0.170403587443946 0.230040595399188],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.0744901262544511 0.0279748317237343 0.0544350922628683 0.0190737489025461],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Daxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h58 = get(h57,'title'); set(h58,... 'Parent',h57,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500004424705161 1.02407910628019 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h59 = get(h57,'xlabel'); set(h59,... 'Parent',h57,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -0.204508852147634 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h60 = get(h57,'ylabel'); set(h60,... 'Parent',h57,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.14814814506052 0.500000476837158 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h61 = get(h57,'zlabel'); set(h61,... 'Parent',h57,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Dlaxes1'; h62 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.550724637681159 1 0.550724637681159],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.703395259449071 0.71447902571042 0.0582959641255605 0.230040595399188],... 'InnerPosition',[0.703395259449071 0.71447902571042 0.0582959641255605 0.230040595399188],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.134581105169341 1.19393650793651 0.0983477307006721 0.814047619047619],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Dlaxes1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h63 = get(h62,'title'); set(h63,... 'Parent',h62,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500011971122341 1.01494565217391 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',11,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h64 = get(h62,'xlabel'); set(h64,... 'Parent',h62,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.50000047683716 -0.0913043454505398 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',11,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h65 = get(h62,'ylabel'); set(h65,... 'Parent',h62,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.196491223364545 0.500000476837158 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',11,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h66 = get(h62,'zlabel'); set(h66,... 'Parent',h62,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Dkaxes1'; h67 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.517985611510791 1 0.517985611510791],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YColor',[1 1 1],... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.766175528507367 0.713125845737483 0.0557335041639975 0.231393775372124],... 'InnerPosition',[0.766175528507367 0.713125845737483 0.0557335041639975 0.231393775372124],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.438411718533811 0.28617209802395 0.320377794313169 0.195117339561784],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Dkaxes1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h68 = get(h67,'title'); set(h68,... 'Parent',h67,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500013695822823 1.01187050359712 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h69 = get(h67,'xlabel'); set(h69,... 'Parent',h67,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.50000047683716 -0.0906474796559311 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h70 = get(h67,'ylabel'); set(h70,... 'Parent',h67,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[1 1 1],... 'ColorMode','auto',... 'Position',[-0.207407402440353 0.500000476837159 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h71 = get(h67,'zlabel'); set(h71,... 'Parent',h67,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Draxes1'; h72 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.510791366906475 1 0.510791366906475],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YColor',[1 1 1],... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.824821526633718 0.713203463203463 0.0543657331136738 0.231601731601732],... 'InnerPosition',[0.824821526633718 0.713203463203463 0.0543657331136738 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.446857681292927 0.28617209802395 0.326549844021754 0.195117339561784],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Draxes1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h73 = get(h72,'title'); set(h73,... 'Parent',h72,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500014902840199 1.01187050359712 0.500000000000007],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h74 = get(h72,'xlabel'); set(h74,... 'Parent',h72,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.50000047683716 -0.0906474796559316 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h75 = get(h72,'ylabel'); set(h75,... 'Parent',h72,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[1 1 1],... 'ColorMode','auto',... 'Position',[-0.210328633460636 0.500000476837158 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h76 = get(h72,'zlabel'); set(h76,... 'Parent',h72,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Dlaxes2'; h77 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.553956834532374 1 0.553956834532374],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.70275464445868 0.388362652232747 0.0589365791159513 0.231393775372125],... 'InnerPosition',[0.70275464445868 0.388362652232747 0.0589365791159513 0.231393775372125],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.273940119449714 2.18252850519726 0.200187010367098 1.48808761717995],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Dlaxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h78 = get(h77,'title'); set(h78,... 'Parent',h77,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500011809460529 1.01187050359712 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h79 = get(h77,'xlabel'); set(h79,... 'Parent',h77,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -0.0906474796559311 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h80 = get(h77,'ylabel'); set(h80,... 'Parent',h77,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.193939389294878 0.500000476837158 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h81 = get(h77,'zlabel'); set(h81,... 'Parent',h77,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Dkaxes2'; h82 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.525179856115108 1 0.525179856115108],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YColor',[1 1 1],... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.764894298526586 0.389715832205683 0.0557335041639975 0.231393775372125],... 'InnerPosition',[0.764894298526586 0.389715832205683 0.0557335041639975 0.231393775372125],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.18810732616881 0.525899286256248 0.868232276815665 0.358567695174715],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Dkaxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h83 = get(h82,'title'); set(h83,... 'Parent',h82,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500013488612762 1.01187050359712 0.500000000000007],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h84 = get(h82,'xlabel'); set(h84,... 'Parent',h82,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -0.0906474796559314 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h85 = get(h82,'ylabel'); set(h85,... 'Parent',h82,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[1 1 1],... 'ColorMode','auto',... 'Position',[-0.204566205146652 0.500000476837158 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h86 = get(h82,'zlabel'); set(h86,... 'Parent',h82,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Draxes2'; h87 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.510791366906475 1 0.510791366906475],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YColor',[1 1 1],... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.824272377814388 0.388528138528139 0.0543657331136738 0.231601731601732],... 'InnerPosition',[0.824272377814388 0.388528138528139 0.0543657331136738 0.231601731601732],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.05437743681504 0.525630100422892 0.770506588441758 0.358384159379245],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Draxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h88 = get(h87,'title'); set(h88,... 'Parent',h87,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500014889408167 1.01187050359712 0.500000000000007],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h89 = get(h87,'xlabel'); set(h89,... 'Parent',h87,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.50000047683716 -0.0906474796559311 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h90 = get(h87,'ylabel'); set(h90,... 'Parent',h87,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[1 1 1],... 'ColorMode','auto',... 'Position',[-0.210328633460636 0.500000476837158 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h91 = get(h87,'zlabel'); set(h91,... 'Parent',h87,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Dlaxes3'; h92 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.556338028169014 1 0.556338028169014],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.701473414477899 0.0690121786197564 0.0608584240871236 0.23680649526387],... 'InnerPosition',[0.701473414477899 0.0690121786197564 0.0608584240871236 0.23680649526387],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.273940119449714 2.18252850519726 0.200187010367098 1.48808761717995],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Dlaxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h93 = get(h92,'title'); set(h93,... 'Parent',h92,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500011510486845 1.01161971830986 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h94 = get(h92,'xlabel'); set(h94,... 'Parent',h92,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -0.0887323920575667 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h95 = get(h92,'ylabel'); set(h95,... 'Parent',h92,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.189029531338043 0.500000476837158 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h96 = get(h92,'zlabel'); set(h96,... 'Parent',h92,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Dkaxes3'; h97 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.521428571428571 1 0.521428571428571],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YColor',[1 1 1],... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.768097373478539 0.0717185385656292 0.0557335041639975 0.234100135317997],... 'InnerPosition',[0.768097373478539 0.0717185385656292 0.0557335041639975 0.234100135317997],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.18810732616881 0.525899286256248 0.868232276815665 0.358567695174715],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Dkaxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h98 = get(h97,'title'); set(h98,... 'Parent',h97,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500013540868892 1.01178571428571 0.500000000000007],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h99 = get(h97,'xlabel'); set(h99,... 'Parent',h97,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.50000047683716 -0.089999997658389 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h100 = get(h97,'ylabel'); set(h100,... 'Parent',h97,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[1 1 1],... 'ColorMode','auto',... 'Position',[-0.20456620514665 0.500000476837158 1.00000000000001],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h101 = get(h97,'zlabel'); set(h101,... 'Parent',h97,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'Draxes3'; h102 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'PlotBoxAspectRatio',[0.50354609929078 1 0.50354609929078],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YColor',[1 1 1],... 'YTick',[0 0.2 0.4 0.6 0.8 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.827033952594491 0.0703653585926929 0.0544522741832159 0.235453315290934],... 'InnerPosition',[0.827033952594491 0.0703653585926929 0.0544522741832159 0.235453315290934],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.05437743681504 0.525630100422892 0.770506588441758 0.358384159379245],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',8,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','Draxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h103 = get(h102,'title'); set(h103,... 'Parent',h102,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500014943136296 1.01170212765957 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h104 = get(h102,'xlabel'); set(h104,... 'Parent',h102,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -0.0893616998026558 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h105 = get(h102,'ylabel'); set(h105,... 'Parent',h102,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[1 1 1],... 'ColorMode','auto',... 'Position',[-0.210328633460637 0.500000476837158 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',8.8,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h106 = get(h102,'zlabel'); set(h106,... 'Parent',h102,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'DNLaxes1'; h107 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'FontWeight','light',... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'Layer','top',... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.5 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.5'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.684089162182936 0.725 0.0061491160645657 0.0133333333333333],... 'InnerPosition',[0.684089162182936 0.725 0.0061491160645657 0.0133333333333333],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.405047680055401 0.129582291666667 0.295996381578947 0.0883515624999999],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',1,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','DNLaxes1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h108 = get(h107,'title'); set(h108,... 'Parent',h107,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500106692314148 1.41536458333334 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h109 = get(h107,'xlabel'); set(h109,... 'Parent',h107,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837158 -0.399999988824128 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h110 = get(h107,'ylabel'); set(h110,... 'Parent',h107,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.441666659216096 0.500000476837158 1],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','front',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h111 = get(h107,'zlabel'); set(h111,... 'Parent',h107,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'DNLaxes2'; h112 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'FontWeight','light',... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.5 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.5'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.681783243658724 0.415 0.0061491160645657 0.0133333333333333],... 'InnerPosition',[0.681783243658724 0.415 0.0061491160645657 0.0133333333333333],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.261515821639661 0.250173412468075 0.191107715813598 0.170572781228233],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',1,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','DNLaxes2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h113 = get(h112,'title'); set(h113,... 'Parent',h112,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500106334686265 1.41536458333334 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h114 = get(h112,'xlabel'); set(h114,... 'Parent',h112,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837144 -0.399999988824128 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h115 = get(h112,'ylabel'); set(h115,... 'Parent',h112,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.441666659216111 0.500000476837158 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h116 = get(h112,'zlabel'); set(h116,... 'Parent',h112,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'DNLaxes3'; h117 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[0.5 0.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[0.5 0.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'FontWeight','light',... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 0.5 1],... 'XTickMode',get(0,'defaultaxesXTickMode'),... 'XTickLabel',{ '0'; '0.5'; '1' },... 'XTickLabelMode',get(0,'defaultaxesXTickLabelMode'),... 'YTick',[0 0.5 1],... 'YTickMode',get(0,'defaultaxesYTickMode'),... 'YTickLabel',{ '0'; '0.5'; '1' },... 'YTickLabelMode',get(0,'defaultaxesYTickLabelMode'),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'Position',[0.683320522674866 0.0766666666666667 0.0061491160645657 0.0133333333333333],... 'InnerPosition',[0.683320522674866 0.0766666666666667 0.0061491160645657 0.0133333333333333],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.277860560492139 0.210672347341537 0.203051948051948 0.143640236823775],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',1,... 'SortMethod','childorder',... 'Visible','off',... 'Tag','DNLaxes3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h118 = get(h117,'title'); set(h118,... 'Parent',h117,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[0.500106573104844 1.41536458333333 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h119 = get(h117,'xlabel'); set(h119,... 'Parent',h117,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0.500000476837144 -0.399999988824129 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h120 = get(h117,'ylabel'); set(h120,... 'Parent',h117,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-0.441666659216111 0.500000476837158 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h121 = get(h117,'zlabel'); set(h121,... 'Parent',h117,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'HtMap1'; h122 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[8.5 12.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[8.5 12.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraUpVector',[0 -1 0],... 'CameraUpVectorMode',get(0,'defaultaxesCameraUpVectorMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[17 25 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[0.742424242424242 1 0.742424242424242],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 17],... 'YLim',[0 25],... 'XDir','reverse',... 'YDir','reverse',... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1],... 'XTickLabel',blanks(0),... 'YAxisLocation','right',... 'YTick',[0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1],... 'YTickLabel',blanks(0),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'TickDir','out',... 'Position',[0.199231262011531 0.709066305818674 0.0749519538757207 0.219215155615697],... 'InnerPosition',[0.199231262011531 0.709066305818674 0.0749519538757207 0.219215155615697],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[0.300293463761672 0.119090909090909 0.219445223518145 0.081198347107438],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Tag','HtMap1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h123 = get(h122,'title'); set(h123,... 'Parent',h122,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[8.49994888111036 -0.629340277777786 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h124 = get(h122,'xlabel'); set(h124,... 'Parent',h122,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[8.4999918937683 26.3653198653199 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h125 = get(h122,'ylabel'); set(h125,... 'Parent',h122,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-1.25052154195013 12.499988079071 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h126 = get(h122,'zlabel'); set(h126,... 'Parent',h122,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'HtMap2'; h127 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[8.5 12.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[8.5 12.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraUpVector',[0 -1 0],... 'CameraUpVectorMode',get(0,'defaultaxesCameraUpVectorMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[17 25 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[0.729323308270677 1 0.729323308270677],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 17],... 'YLim',[0 25],... 'XDir','reverse',... 'YDir','reverse',... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1],... 'XTickLabel',blanks(0),... 'YAxisLocation','right',... 'YTick',[0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1],... 'YTickLabel',blanks(0),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'TickDir','out',... 'Position',[0.201793721973094 0.387009472259811 0.0749519538757207 0.22192151556157],... 'InnerPosition',[0.201793721973094 0.387009472259811 0.0749519538757207 0.22192151556157],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.3986212294239 0.227284610814023 1.02206935996362 0.15496678010047],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Tag','HtMap2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h128 = get(h127,'title'); set(h128,... 'Parent',h127,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[8.49994776912571 -0.624608395989966 0.500000000000007],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h129 = get(h127,'xlabel'); set(h129,... 'Parent',h127,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[8.4999918937683 26.3569340016709 7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h130 = get(h127,'ylabel'); set(h130,... 'Parent',h127,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-1.26516609392898 12.4999880790711 7.105427357601e-15],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h131 = get(h127,'zlabel'); set(h131,... 'Parent',h127,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'HtMap3'; h132 = axes(... 'Parent',h1,... 'FontUnits','pixels',... 'CameraPosition',[8.5 12.5 9.16025403784439],... 'CameraPositionMode',get(0,'defaultaxesCameraPositionMode'),... 'CameraTarget',[8.5 12.5 0.5],... 'CameraTargetMode',get(0,'defaultaxesCameraTargetMode'),... 'CameraUpVector',[0 -1 0],... 'CameraUpVectorMode',get(0,'defaultaxesCameraUpVectorMode'),... 'CameraViewAngle',6.60861036031192,... 'CameraViewAngleMode',get(0,'defaultaxesCameraViewAngleMode'),... 'DataAspectRatio',[17 25 1],... 'DataAspectRatioMode',get(0,'defaultaxesDataAspectRatioMode'),... 'PlotBoxAspectRatio',[0.690647482014389 1 0.690647482014389],... 'PlotBoxAspectRatioMode',get(0,'defaultaxesPlotBoxAspectRatioMode'),... 'XLim',[0 17],... 'YLim',[0 25],... 'XDir','reverse',... 'YDir','reverse',... 'Colormap',[0 0 0.5625;0 0 0.625;0 0 0.6875;0 0 0.75;0 0 0.8125;0 0 0.875;0 0 0.9375;0 0 1;0 0.0625 1;0 0.125 1;0 0.1875 1;0 0.25 1;0 0.3125 1;0 0.375 1;0 0.4375 1;0 0.5 1;0 0.5625 1;0 0.625 1;0 0.6875 1;0 0.75 1;0 0.8125 1;0 0.875 1;0 0.9375 1;0 1 1;0.0625 1 1;0.125 1 0.9375;0.1875 1 0.875;0.25 1 0.8125;0.3125 1 0.75;0.375 1 0.6875;0.4375 1 0.625;0.5 1 0.5625;0.5625 1 0.5;0.625 1 0.4375;0.6875 1 0.375;0.75 1 0.3125;0.8125 1 0.25;0.875 1 0.1875;0.9375 1 0.125;1 1 0.0625;1 1 0;1 0.9375 0;1 0.875 0;1 0.8125 0;1 0.75 0;1 0.6875 0;1 0.625 0;1 0.5625 0;1 0.5 0;1 0.4375 0;1 0.375 0;1 0.3125 0;1 0.25 0;1 0.1875 0;1 0.125 0;1 0.0625 0;1 0 0;0.9375 0 0;0.875 0 0;0.8125 0 0;0.75 0 0;0.6875 0 0;0.625 0 0;0.5625 0 0],... 'ColormapMode',get(0,'defaultaxesColormapMode'),... 'Alphamap',[0 0.0159 0.0317 0.0476 0.0635 0.0794 0.0952 0.1111 0.127 0.1429 0.1587 0.1746 0.1905 0.2063 0.2222 0.2381 0.254 0.2698 0.2857 0.3016 0.3175 0.3333 0.3492 0.3651 0.381 0.3968 0.4127 0.4286 0.4444 0.4603 0.4762 0.4921 0.5079 0.5238 0.5397 0.5556 0.5714 0.5873 0.6032 0.619 0.6349 0.6508 0.6667 0.6825 0.6984 0.7143 0.7302 0.746 0.7619 0.7778 0.7937 0.8095 0.8254 0.8413 0.8571 0.873 0.8889 0.9048 0.9206 0.9365 0.9524 0.9683 0.9841 1],... 'AlphamapMode',get(0,'defaultaxesAlphamapMode'),... 'XTick',[0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1],... 'XTickLabel',blanks(0),... 'YAxisLocation','right',... 'YTick',[0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1],... 'YTickLabel',blanks(0),... 'Color',get(0,'defaultaxesColor'),... 'CameraMode',get(0,'defaultaxesCameraMode'),... 'DataSpaceMode',get(0,'defaultaxesDataSpaceMode'),... 'ColorSpaceMode',get(0,'defaultaxesColorSpaceMode'),... 'DecorationContainerMode',get(0,'defaultaxesDecorationContainerMode'),... 'ChildContainerMode',get(0,'defaultaxesChildContainerMode'),... 'BoxFrame',[],... 'BoxFrameMode',get(0,'defaultaxesBoxFrameMode'),... 'XRulerMode',get(0,'defaultaxesXRulerMode'),... 'YRulerMode',get(0,'defaultaxesYRulerMode'),... 'ZRulerMode',get(0,'defaultaxesZRulerMode'),... 'AmbientLightSourceMode',get(0,'defaultaxesAmbientLightSourceMode'),... 'TickDir','out',... 'Position',[0.201793721973094 0.0487144790257104 0.0743113388853299 0.231393775372125],... 'InnerPosition',[0.201793721973094 0.0487144790257104 0.0743113388853299 0.231393775372125],... 'ActivePositionProperty','position',... 'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),... 'PositionConstraint','innerposition',... 'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),... 'LooseInset',[1.38245219786986 0.227284610814023 1.01025352921259 0.15496678010047],... 'ColorOrder',get(0,'defaultaxesColorOrder'),... 'FontSize',16.1111111111111,... 'SortMethod','childorder',... 'Tag','HtMap3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.Internal_InteractionsArray = []; h133 = get(h132,'title'); set(h133,... 'Parent',h132,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0 0 0],... 'ColorMode','auto',... 'Position',[8.49994730949401 -0.597646882494001 0.5],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','bottom',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','Axes Title',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h134 = get(h132,'xlabel'); set(h134,... 'Parent',h132,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[8.4999918937683 26.3091526778577 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h135 = get(h132,'ylabel'); set(h135,... 'Parent',h132,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[-1.28896990740741 12.499988079071 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',90,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',17.7222222222222,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','top',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','back',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','on',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.Internal_InteractionsArray = []; h136 = get(h132,'zlabel'); set(h136,... 'Parent',h132,... 'Units','data',... 'FontUnits','pixels',... 'DecorationContainer',[],... 'DecorationContainerMode','auto',... 'Color',[0.15 0.15 0.15],... 'ColorMode','auto',... 'Position',[0 0 0],... 'PositionMode','auto',... 'String',blanks(0),... 'Interpreter','tex',... 'Rotation',0,... 'RotationMode','auto',... 'FontName','Helvetica',... 'FontSize',13.3333333333333,... 'FontAngle','normal',... 'FontWeight','normal',... 'HorizontalAlignment','center',... 'HorizontalAlignmentMode','auto',... 'VerticalAlignment','middle',... 'VerticalAlignmentMode','auto',... 'EdgeColor','none',... 'LineStyle','-',... 'LineWidth',0.5,... 'BackgroundColor','none',... 'Margin',2,... 'Clipping','off',... 'Layer','middle',... 'LayerMode','auto',... 'FontSmoothing','on',... 'FontSmoothingMode','auto',... 'DisplayName',blanks(0),... 'IncludeRenderer','on',... 'IsContainer','off',... 'IsContainerMode','auto',... 'DimensionNames',{ 'X' 'Y' 'Z' },... 'DimensionNamesMode','auto',... 'XLimInclude','on',... 'YLimInclude','on',... 'ZLimInclude','on',... 'CLimInclude','on',... 'ALimInclude','on',... 'Description','AxisRulerBase Label',... 'DescriptionMode','auto',... 'Visible','off',... 'Serializable','on',... 'HandleVisibility','off',... 'TransformForPrintFcnImplicitInvoke','on',... 'TransformForPrintFcnImplicitInvokeMode','auto',... 'HelpTopicKey',blanks(0),... 'ButtonDownFcn',blanks(0),... 'BusyAction','queue',... 'Interruptible','on',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ,... 'DeleteFcn',blanks(0),... 'Tag',blanks(0),... 'HitTest','on',... 'PickableParts','visible',... 'PickablePartsMode','auto'); appdata = []; appdata.lastValidTag = 'FileMenu'; h137 = uimenu(... 'Parent',h1,... 'Callback',@(hObject,eventdata)EZviewGui_export('FileMenu_Callback',hObject,eventdata,guidata(hObject)),... 'Label','File',... 'Tag','FileMenu',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'OpenMenuItem'; h138 = uimenu(... 'Parent',h137,... 'Callback',@(hObject,eventdata)EZviewGui_export('OpenMenuItem_Callback',hObject,eventdata,guidata(hObject)),... 'Label','Open ...',... 'Tag','OpenMenuItem',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'PrintMenuItem'; h139 = uimenu(... 'Parent',h137,... 'Callback',@(hObject,eventdata)EZviewGui_export('PrintMenuItem_Callback',hObject,eventdata,guidata(hObject)),... 'Label','Print ...',... 'Tag','PrintMenuItem',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'CloseMenuItem'; h140 = uimenu(... 'Parent',h137,... 'Separator','on',... 'Callback',@(hObject,eventdata)EZviewGui_export('CloseMenuItem_Callback',hObject,eventdata,guidata(hObject)),... 'Label','Close',... 'Tag','CloseMenuItem',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'SetExpJobsFolder'; h141 = uimenu(... 'Parent',h137,... 'Separator','on',... 'Callback',@(hObject,eventdata)EZviewGui_export('SetExpJobsFolder_Callback',hObject,eventdata,guidata(hObject)),... 'Label','Set ExpJobs Folder',... 'Tag','SetExpJobsFolder',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'uitoolbar1'; h142 = uitoolbar(... 'Parent',h1,... 'Tag','uitoolbar1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.toolid = 'Standard.PrintFigure'; appdata.CallbackInUse = struct(... 'ClickedCallback', '%default'); appdata.lastValidTag = 'uipushtool4'; h143 = uipushtool(... 'Parent',h142,... 'Children',[],... 'BusyAction','cancel',... 'Interruptible','off',... 'Tag','uipushtool4',... 'Tooltip','Print Figure',... 'TooltipMode',get(0,'defaultuipushtoolTooltipMode'),... 'CData',mat{2},... 'ClickedCallback','%default',... 'TooltipString','Print Figure',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.toolid = 'Exploration.DataCursor'; appdata.CallbackInUse = struct(... 'ClickedCallback', '%default'); appdata.lastValidTag = 'uitoggletool1'; h144 = uitoggletool(... 'Parent',h142,... 'Children',[],... 'Tag','uitoggletool1',... 'Tooltip','Data Cursor',... 'TooltipMode',get(0,'defaultuitoggletoolTooltipMode'),... 'CData',mat{3},... 'ClickedCallback','%default',... 'TooltipString','Data Cursor',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.toolid = 'Exploration.ZoomIn'; appdata.CallbackInUse = struct(... 'ClickedCallback', '%default'); appdata.lastValidTag = 'uitoggletool2'; h145 = uitoggletool(... 'Parent',h142,... 'Children',[],... 'Tag','uitoggletool2',... 'Tooltip','Zoom In',... 'TooltipMode',get(0,'defaultuitoggletoolTooltipMode'),... 'CData',mat{4},... 'ClickedCallback','%default',... 'TooltipString','Zoom In',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.toolid = 'Exploration.ZoomOut'; appdata.CallbackInUse = struct(... 'ClickedCallback', '%default'); appdata.lastValidTag = 'uitoggletool3'; h146 = uitoggletool(... 'Parent',h142,... 'Children',[],... 'Tag','uitoggletool3',... 'Tooltip','Zoom Out',... 'TooltipMode',get(0,'defaultuitoggletoolTooltipMode'),... 'CData',mat{5},... 'ClickedCallback','%default',... 'TooltipString','Zoom Out',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'GeneOrfLoc1'; h147 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.113673805601318 0.954545454545455 0.170236133992312 0.0292207792207793],... 'Children',[],... 'Tag','GeneOrfLoc1',... 'FontSize',12,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'GeneOrfLoc2'; h148 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.113124656781988 0.633116883116883 0.170236133992312 0.0292207792207793],... 'Children',[],... 'Tag','GeneOrfLoc2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'GeneOrfLoc3'; h149 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.113124656781988 0.304112554112554 0.170236133992312 0.0324675324675325],... 'Children',[],... 'Tag','GeneOrfLoc3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'uipanel4'; h150 = uipanel(... 'Parent',h1,... 'FontUnits','pixels',... 'Title','Zone 2',... 'Tag','uipanel4',... 'Clipping','off',... 'Position',[0.00329489291598023 0.347778981581798 0.105985722130697 0.326110509209101],... 'Layout',[],... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'expName2'; h151 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','ExperimentName2',... 'Style','text',... 'Position',[0.30531914893617 0.661538461538461 0.677659574468085 0.323076923076923],... 'Children',[],... 'Tag','expName2',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'DMsldr2'; h152 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',10.01,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.0298507462686567 0.35678391959799 0.753731343283581 0.0854271356783919],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('DMsldr2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DMsldr2_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DMsldr2',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'DMed2'; h153 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0223880597014925 0.442211055276382 0.201492537313433 0.115577889447236],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('DMed2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DMed2_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DMed2',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'text44'; h154 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','MP',... 'Style','text',... 'Position',[0.0223880597014925 0.778894472361809 0.186567164179104 0.0804020100502513],... 'Children',[],... 'Tag','text44',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'DN2'; h155 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.153439153439153 0.900793650793651 0.169312169312169 0.0952380952380952],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('DN2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DN2_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DN2',... 'UserData',[],... 'FontSize',11); appdata = []; appdata.lastValidTag = 'text53'; h156 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','D',... 'Style','text',... 'Position',[-0.00746268656716418 0.898989898989899 0.156716417910448 0.0757575757575758],... 'Children',[],... 'Tag','text53',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'clrOlay2'; h157 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Clear',... 'Position',[0.53968253968254 0.0595238095238095 0.343915343915344 0.115079365079365],... 'Callback',@(hObject,eventdata)EZviewGui_export('clrOlay2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','clrOlay2',... 'UserData',[],... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'rotPB2'; h158 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Hide',... 'Style','togglebutton',... 'Position',[0.253968253968254 0.0555555555555556 0.285714285714286 0.111111111111111],... 'Callback',@(hObject,eventdata)EZviewGui_export('rotPB2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','rotPB2',... 'UserData',[],... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'expSelPB2'; h159 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Exp',... 'Position',[0.037037037037037 0.0555555555555556 0.206349206349206 0.115079365079365],... 'Callback',@(hObject,eventdata)EZviewGui_export('expSelPB2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','expSelPB2',... 'UserData',[],... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'Tptsldr2'; h160 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',100.01,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.0423280423280423 0.170634920634921 0.751322751322751 0.0674603174603174],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('Tptsldr2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Tptsldr2_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','Tptsldr2',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'Tpted2'; h161 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0373134328358209 0.236180904522613 0.201492537313433 0.110552763819095],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('Tpted2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Tpted2_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','Tpted2',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'tptTm2'; h162 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Time2',... 'Style','text',... 'Position',[0.238095238095238 0.240157480314961 0.751322751322751 0.110236220472441],... 'Children',[],... 'Tag','tptTm2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'MPsldr2'; h163 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',10,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.04375 0.569506726457399 0.7625 0.0852017937219731],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('MPsldr2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('MPsldr2_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','MPsldr2',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'MPed2'; h164 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0298507462686567 0.658291457286432 0.201492537313433 0.115577889447236],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('MPed2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('MPed2_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','MPed2',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'DM2'; h165 = uicontrol(... 'Parent',h150,... 'Units','normalized',... 'FontUnits','pixels',... 'String','PerturbantDesc',... 'Style','text',... 'Position',[0.238095238095238 0.453441295546559 0.751322751322751 0.109311740890688],... 'Children',[],... 'Tag','DM2',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'uipanel6'; h166 = uipanel(... 'Parent',h1,... 'FontUnits','pixels',... 'Title','Zone 3',... 'Tag','uipanel6',... 'Clipping','off',... 'Position',[-0.000640532923392262 0.024375 0.105687932359723 0.316875],... 'Layout',[],... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'expName3'; h167 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','ExperimentName3',... 'Style','text',... 'Position',[0.351063829787234 0.637362637362637 0.627659574468085 0.358974358974359],... 'Children',[],... 'Tag','expName3',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'DMsldr3'; h168 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',10,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.0447761194029851 0.350877192982456 0.753731343283582 0.087719298245614],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('DMsldr3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DMsldr3_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DMsldr3',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'DMed3'; h169 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0223880597014925 0.461988304093567 0.201492537313433 0.111111111111111],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('DMed3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DMed3_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DMed3',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'text45'; h170 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','MP',... 'Style','text',... 'Position',[0.0597014925373134 0.760233918128655 0.186567164179104 0.0760233918128655],... 'Children',[],... 'Tag','text45',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'expSelPB3'; h171 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Exp',... 'Position',[-0.0062111801242236 0.0277777777777778 0.204968944099379 0.0972222222222222],... 'Callback',@(hObject,eventdata)EZviewGui_export('expSelPB3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','expSelPB3',... 'UserData',[],... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'rotPB3'; h172 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Hide',... 'Style','togglebutton',... 'Position',[0.248447204968944 0.0277777777777778 0.192546583850932 0.0925925925925926],... 'Callback',@(hObject,eventdata)EZviewGui_export('rotPB3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','rotPB3',... 'UserData',[],... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'clrOlay3'; h173 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Clear',... 'Position',[0.465608465608466 0.0174825174825175 0.343915343915344 0.0979020979020979],... 'Callback',@(hObject,eventdata)EZviewGui_export('clrOlay3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','clrOlay3',... 'UserData',[],... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'Tptsldr3'; h174 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',100,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.0223880597014925 0.146198830409357 0.753731343283582 0.0760233918128655],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('Tptsldr3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Tptsldr3_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','Tptsldr3',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'tptTm3'; h175 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Time3',... 'Style','text',... 'Position',[0.235602094240838 0.213286713286713 0.75392670157068 0.0944055944055944],... 'Children',[],... 'Tag','tptTm3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'Tpted3'; h176 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0298507462686567 0.228070175438596 0.201492537313433 0.0994152046783626],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('Tpted3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Tpted3_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','Tpted3',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'MPsldr3'; h177 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',10,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.0447761194029851 0.573099415204678 0.761194029850746 0.0818713450292398],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('MPsldr3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('MPsldr3_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','MPsldr3',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'DM3'; h178 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','PerturbantDesc',... 'Style','text',... 'Position',[0.253731343283582 0.467836257309941 0.738805970149254 0.0935672514619883],... 'Children',[],... 'Tag','DM3',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'MPed3'; h179 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0298507462686567 0.660818713450292 0.201492537313433 0.0994152046783625],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('MPed3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('MPed3_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','MPed3',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'DN3'; h180 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.157556270096463 0.869047619047619 0.172561629153269 0.101190476190476],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('DN3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DN3_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DN3',... 'UserData',[],... 'FontSize',11); appdata = []; appdata.lastValidTag = 'text54'; h181 = uicontrol(... 'Parent',h166,... 'Units','normalized',... 'FontUnits','pixels',... 'String','D',... 'Style','text',... 'Position',[0.0213903743315508 0.871428571428571 0.165775401069519 0.080952380952381],... 'Children',[],... 'Tag','text54',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'uipanel7'; h182 = uipanel(... 'Parent',h1,... 'FontUnits','pixels',... 'Title','Zone 1',... 'Tag','uipanel7',... 'Clipping','off',... 'Position',[0.00153727901614143 0.68 0.106072252113759 0.318333333333333],... 'Layout',[],... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'clrOlay1'; h183 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Clear',... 'Position',[0.566137566137566 0.0145454545454545 0.322751322751323 0.12],... 'Callback',@(hObject,eventdata)EZviewGui_export('clrOlay1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','clrOlay1',... 'UserData',[],... 'FontSize',12,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'rotPB1'; h184 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Hide',... 'Style','togglebutton',... 'Position',[0.264550264550265 0.0145454545454545 0.253968253968254 0.112727272727273],... 'Callback',@(hObject,eventdata)EZviewGui_export('rotPB1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','rotPB1',... 'UserData',[],... 'FontSize',12,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'DMsldr1'; h185 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',20,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.0297555791710946 0.368271954674221 0.751328374070138 0.0963172804532578],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('DMsldr1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DMsldr1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DMsldr1',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'DMed1'; h186 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0158730158730159 0.476363636363636 0.201058201058201 0.116363636363636],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('DMed1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DMed1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DMed1',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'MPlabel1'; h187 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','MP',... 'Style','text',... 'Position',[0.0529100529100529 0.807272727272727 0.185185185185185 0.08],... 'Children',[],... 'Tag','MPlabel1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'expSelPB1'; h188 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Exp',... 'Position',[0.037037037037037 0.0254545454545455 0.206349206349206 0.101818181818182],... 'Callback',@(hObject,eventdata)EZviewGui_export('expSelPB1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','expSelPB1',... 'UserData',[],... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'Tptsldr1'; h189 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',100,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.0447761194029851 0.151162790697674 0.753731343283582 0.0988372093023256],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('Tptsldr1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Tptsldr1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','Tptsldr1',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'Tpted1'; h190 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.037037037037037 0.250909090909091 0.201058201058201 0.105454545454545],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('Tpted1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Tpted1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','Tpted1',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'tptTm1'; h191 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Time1',... 'Style','text',... 'Position',[0.243386243386243 0.243636363636364 0.751322751322751 0.0981818181818181],... 'Children',[],... 'Tag','tptTm1',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'DM1'; h192 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','PerturbantDesc',... 'Style','text',... 'Position',[0.232804232804233 0.494545454545455 0.751322751322751 0.0981818181818182],... 'Children',[],... 'Tag','DM1',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'MPsldr1'; h193 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'Max',20,... 'Min',1,... 'String',{ 'Slider' },... 'Style','slider',... 'Value',1.01,... 'Position',[0.037037037037037 0.603636363636364 0.761904761904762 0.0836363636363636],... 'BackgroundColor',[0.9 0.9 0.9],... 'Callback',@(hObject,eventdata)EZviewGui_export('MPsldr1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('MPsldr1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','MPsldr1',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'MPed1'; h194 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.0423280423280423 0.698181818181818 0.201058201058201 0.105454545454545],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('MPed1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('MPed1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','MPed1',... 'UserData',[],... 'FontSize',12.8888888888889); appdata = []; appdata.lastValidTag = 'DN1'; h195 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','1',... 'Style','edit',... 'Position',[0.121693121693122 0.9 0.169312169312169 0.1],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('DN1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('DN1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','DN1',... 'UserData',[],... 'FontSize',11); appdata = []; appdata.lastValidTag = 'expName1'; h196 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','ExperimentName1',... 'Style','text',... 'Position',[0.275239107332625 0.691218130311615 0.721572794899044 0.31728045325779],... 'Children',[],... 'Tag','expName1',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text52'; h197 = uicontrol(... 'Parent',h182,... 'Units','normalized',... 'FontUnits','pixels',... 'String','D',... 'Style','text',... 'Position',[-0.0158730158730159 0.913636363636363 0.137566137566138 0.0818181818181818],... 'Children',[],... 'Tag','text52',... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'graphStrLoc1'; h198 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.313604919292852 0.953333333333333 0.169869331283628 0.0383333333333333],... 'Children',[],... 'Tag','graphStrLoc1',... 'FontSize',12,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'graphStrLoc2'; h199 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.312465678198792 0.626623376623377 0.170236133992312 0.0292207792207793],... 'Children',[],... 'Tag','graphStrLoc2',... 'FontSize',12,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'graphStrLoc3'; h200 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.312465678198792 0.305194805194805 0.170236133992312 0.0292207792207792],... 'Children',[],... 'Tag','graphStrLoc3',... 'FontSize',12,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'OLay1'; h201 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.507413509060956 0.970779220779221 0.170236133992312 0.0281385281385281],... 'Children',[],... 'Tag','OLay1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'OLay2'; h202 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.509610104338276 0.6504329004329 0.170236133992312 0.0346320346320347],... 'Children',[],... 'Tag','OLay2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'OLay3'; h203 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.507413509060956 0.325757575757576 0.170236133992312 0.0303030303030303],... 'Children',[],... 'Tag','OLay3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'OLexp1'; h204 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.50409941070971 0.9546875 0.170381757622342 0.0284375],... 'Children',[],... 'Tag','OLexp1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'OLexp2'; h205 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.509864207020241 0.63375 0.170381757622342 0.0284375],... 'Children',[],... 'Tag','OLexp2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'OLexp3'; h206 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.50409941070971 0.310104166666667 0.170381757622342 0.0284375],... 'Children',[],... 'Tag','OLexp3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'uipanel8'; h207 = uipanel(... 'Parent',h1,... 'FontUnits','pixels',... 'Title',blanks(0),... 'Tag','uipanel8',... 'Clipping','off',... 'Position',[0.885227896760022 -0.00108225108225108 0.113124656781988 0.993506493506494],... 'Layout',[],... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'listboxGnOrf'; h208 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String',{ 'Listbox' },... 'Style','listbox',... 'Value',1,... 'Position',[0.331395348837209 0.0618131868131868 0.581395348837209 0.896978021978022],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('listboxGnOrf_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('listboxGnOrf_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,... 'Tag','listboxGnOrf',... 'FontSize',10.6666666666667); appdata = []; appdata.lastValidTag = 'GeneOrfTog'; h209 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Gene/Orf',... 'Style','togglebutton',... 'Position',[0.482558139534884 0.971153846153846 0.482558139534884 0.0247252747252747],... 'Callback',@(hObject,eventdata)EZviewGui_export('GeneOrfTog_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','GeneOrfTog',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'InfoToggle'; h210 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String','Info',... 'Style','togglebutton',... 'Position',[0.244186046511628 0.968406593406593 0.197674418604651 0.0288461538461539],... 'Callback',@(hObject,eventdata)EZviewGui_export('InfoToggle_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','InfoToggle',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'rawNorm'; h211 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String','R',... 'Style','togglebutton',... 'Position',[0.0247524752475248 0.974416017797552 0.163366336633663 0.0255839822024472],... 'Callback',@(hObject,eventdata)EZviewGui_export('rawNorm_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','rawNorm',... 'KeyPressFcn',@(hObject,eventdata)EZviewGui_export('rawNorm_KeyPressFcn',hObject,eventdata,guidata(hObject)),... 'FontSize',11,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'RFtable1'; h212 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String','RF Tab1',... 'Style','togglebutton',... 'Position',[0.0232558139534884 0.902472527472527 0.284883720930233 0.0247252747252747],... 'Callback',@(hObject,eventdata)EZviewGui_export('RFtable1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','RFtable1',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'RFtable2'; h213 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String','RF Tab2',... 'Style','togglebutton',... 'Position',[0.0232558139534884 0.574175824175824 0.284883720930233 0.0247252747252747],... 'Callback',@(hObject,eventdata)EZviewGui_export('RFtable2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','RFtable2',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'RFtable3'; h214 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String','RF Tab3',... 'Style','togglebutton',... 'Position',[0.0174418604651163 0.245879120879121 0.284883720930233 0.0247252747252747],... 'Callback',@(hObject,eventdata)EZviewGui_export('RFtable3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','RFtable3',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'CompositeTog1'; h215 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','togglebutton',... 'Position',[0.244186046511628 0.873626373626374 0.0755813953488372 0.0247252747252747],... 'Callback',@(hObject,eventdata)EZviewGui_export('CompositeTog1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Visible','off',... 'Tag','CompositeTog1',... 'SelectionHighlight','off',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'CompositeTog2'; h216 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','togglebutton',... 'Position',[0.191860465116279 0.541208791208791 0.11046511627907 0.0247252747252747],... 'Callback',@(hObject,eventdata)EZviewGui_export('CompositeTog2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Visible','off',... 'Tag','CompositeTog2',... 'SelectionHighlight','off',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'CompositeTog3'; h217 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','togglebutton',... 'Position',[0.156976744186047 0.208791208791209 0.0872093023255814 0.0247252747252747],... 'Callback',@(hObject,eventdata)EZviewGui_export('CompositeTog3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Visible','off',... 'Tag','CompositeTog3',... 'SelectionHighlight','off',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'zonePB1'; h218 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'String','Z1',... 'Position',[0.0930232558139535 0.813186813186813 0.174418604651163 0.0398351648351648],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('zonePB1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[0.247058823529412 0.247058823529412 0.247058823529412],... 'Tag','zonePB1',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'zonePB2'; h219 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'String','Z2',... 'Position',[0.0697674418604651 0.487637362637363 0.174418604651163 0.0398351648351648],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('zonePB2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[0.247058823529412 0.247058823529412 0.247058823529412],... 'Tag','zonePB2',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'zonePB3'; h220 = uicontrol(... 'Parent',h207,... 'Units','normalized',... 'String','Z3',... 'Position',[0.0697674418604651 0.160714285714286 0.174418604651163 0.0398351648351648],... 'BackgroundColor',[1 1 1],... 'Callback',@(hObject,eventdata)EZviewGui_export('zonePB3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[0.247058823529412 0.247058823529412 0.247058823529412],... 'Tag','zonePB3',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'semiLog'; h221 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','SemiLog',... 'Style','togglebutton',... 'Position',[0.00384319754035357 0.00166666666666667 0.0399692544196772 0.0233333333333333],... 'BackgroundColor',[1 0.6 0.784313725490196],... 'Callback',@(hObject,eventdata)EZviewGui_export('semiLog_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 0],... 'Tag','semiLog',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'Parameters'; h222 = uimenu(... 'Parent',h1,... 'Callback',@(hObject,eventdata)EZviewGui_export('Parameters_Callback',hObject,eventdata,guidata(hObject)),... 'Label','Parameters',... 'Tag','Parameters',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'PrintFont'; h223 = uimenu(... 'Parent',h222,... 'Accelerator','Q',... 'Callback',@(hObject,eventdata)EZviewGui_export('PrintFont_Callback',hObject,eventdata,guidata(hObject)),... 'Label','EZprintFont',... 'Tag','PrintFont',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'SpotViewInterval'; h224 = uimenu(... 'Parent',h222,... 'Callback',@(hObject,eventdata)EZviewGui_export('SpotViewInterval_Callback',hObject,eventdata,guidata(hObject)),... 'Label','SpotViewInterval',... 'Tag','SpotViewInterval',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'HMapRange'; h225 = uimenu(... 'Parent',h222,... 'Callback',@(hObject,eventdata)EZviewGui_export('HMapRange_Callback',hObject,eventdata,guidata(hObject)),... 'Label','HtMap MultOfStd',... 'Tag','HMapRange',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'spotTog'; h226 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','SpotView',... 'Style','togglebutton',... 'Position',[0.05380476556495 0.00333333333333333 0.0399692544196772 0.0233333333333333],... 'Callback',@(hObject,eventdata)EZviewGui_export('spotTog_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tag','spotTog',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'printOL1'; h227 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','P',... 'Position',[0.487445554701512 0.937083333333333 0.0153727901614142 0.0284375],... 'Callback',@(hObject,eventdata)EZviewGui_export('printOL1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tooltip','Print OLay1',... 'TooltipMode',get(0,'defaultuicontrolTooltipMode'),... 'TooltipString','Print OLay1',... 'ButtonDownFcn',@(hObject,eventdata)EZviewGui_export('printOL1_ButtonDownFcn',hObject,eventdata,guidata(hObject)),... 'Tag','printOL1',... 'KeyPressFcn',@(hObject,eventdata)EZviewGui_export('printOL1_KeyPressFcn',hObject,eventdata,guidata(hObject)),... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'printOL2'; h228 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','P',... 'Position',[0.488726620548296 0.616145833333334 0.0153727901614142 0.0284375],... 'Callback',@(hObject,eventdata)EZviewGui_export('printOL2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tooltip','Print Olay2',... 'TooltipMode',get(0,'defaultuicontrolTooltipMode'),... 'TooltipString','Print Olay2',... 'ButtonDownFcn',@(hObject,eventdata)EZviewGui_export('printOL2_ButtonDownFcn',hObject,eventdata,guidata(hObject)),... 'Tag','printOL2',... 'KeyPressFcn',@(hObject,eventdata)EZviewGui_export('printOL2_KeyPressFcn',hObject,eventdata,guidata(hObject)),... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'printOL3'; h229 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','P',... 'Position',[0.486164488854727 0.285729166666667 0.0153727901614142 0.0284375],... 'Callback',@(hObject,eventdata)EZviewGui_export('printOL3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tooltip','Print Olay3',... 'TooltipMode',get(0,'defaultuicontrolTooltipMode'),... 'TooltipString','Print Olay3',... 'ButtonDownFcn',@(hObject,eventdata)EZviewGui_export('printOL3_ButtonDownFcn',hObject,eventdata,guidata(hObject)),... 'Tag','printOL3',... 'KeyPressFcn',@(hObject,eventdata)EZviewGui_export('printOL3_KeyPressFcn',hObject,eventdata,guidata(hObject)),... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'Tools'; h230 = uimenu(... 'Parent',h1,... 'Callback',@(hObject,eventdata)EZviewGui_export('Tools_Callback',hObject,eventdata,guidata(hObject)),... 'Label','Tools',... 'Tag','Tools',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'TrendsBoxPlot'; h231 = uimenu(... 'Parent',h230,... 'Separator','on',... 'Callback',@(hObject,eventdata)EZviewGui_export('TrendsBoxPlot_Callback',hObject,eventdata,guidata(hObject)),... 'Label','TrendsBoxPlot',... 'Tag','TrendsBoxPlot',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'TrendsOverlay'; h232 = uimenu(... 'Parent',h230,... 'Callback',@(hObject,eventdata)EZviewGui_export('TrendsOverlay_Callback',hObject,eventdata,guidata(hObject)),... 'Label','TrendsOverlay',... 'Tag','TrendsOverlay',... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'geneOrfLKr1'; h233 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.71334431630972 0.951298701298701 0.164195496979681 0.0281385281385281],... 'Children',[],... 'Tag','geneOrfLKr1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'geneOrfLKr2'; h234 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.71389346512905 0.628787878787879 0.164195496979681 0.0281385281385281],... 'Children',[],... 'Tag','geneOrfLKr2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'geneOrfLKr3'; h235 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'HorizontalAlignment','left',... 'String',' ',... 'Style','text',... 'Position',[0.71389346512905 0.307359307359307 0.164195496979681 0.0281385281385281],... 'Children',[],... 'Tag','geneOrfLKr3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog1'; h236 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','L',... 'Style','togglebutton',... 'Position',[0.714194209582372 0.9546875 0.0192159877017679 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog1'; h237 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','K',... 'Style','togglebutton',... 'Position',[0.768639508070715 0.950625 0.0108890596976685 0.0284375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog1'; h238 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','r',... 'Style','togglebutton',... 'Position',[0.822444273635665 0.951979166666667 0.0108890596976685 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog2'; h239 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','L',... 'Style','togglebutton',... 'Position',[0.703305149884704 0.6215625 0.0108890596976685 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog2'; h240 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','K',... 'Style','togglebutton',... 'Position',[0.768639508070715 0.6175 0.0108890596976685 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog2'; h241 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','r',... 'Style','togglebutton',... 'Position',[0.822444273635665 0.622916666666667 0.0108890596976685 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog3'; h242 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','L',... 'Style','togglebutton',... 'Position',[0.703305149884704 0.301979166666667 0.0108890596976685 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog3'; h243 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','K',... 'Style','togglebutton',... 'Position',[0.769920573917499 0.301979166666667 0.0108890596976685 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'LKrTog3'; h244 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','r',... 'Style','togglebutton',... 'Position',[0.822444273635665 0.297916666666667 0.0108890596976685 0.0284375],... 'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','LKrTog3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'InteracTog1'; h245 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','I',... 'Style','togglebutton',... 'Position',[0.104338275672707 0.975108225108225 0.00933552992861066 0.0238095238095238],... 'Callback',@(hObject,eventdata)EZviewGui_export('InteracTog1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','InteracTog1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'InteracTog2'; h246 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','I',... 'Style','togglebutton',... 'Position',[0.105985722130697 0.63961038961039 0.00933552992861066 0.0238095238095238],... 'Callback',@(hObject,eventdata)EZviewGui_export('InteracTog2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','InteracTog2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'InteracTog3'; h247 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','I',... 'Style','togglebutton',... 'Position',[0.105303612605688 0.308333333333333 0.00922367409684859 0.0233333333333333],... 'Callback',@(hObject,eventdata)EZviewGui_export('InteracTog3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Visible','off',... 'Tag','InteracTog3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'HtMapTog1'; h248 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','L',... 'Style','togglebutton',... 'Position',[0.199890170236134 0.930735930735931 0.0126304228445909 0.0238095238095238],... 'Callback',@(hObject,eventdata)EZviewGui_export('HtMapTog1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','HtMapTog1',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'HtMapTog2'; h249 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','L',... 'Style','togglebutton',... 'Position',[0.201537616694124 0.61038961038961 0.0120812740252609 0.0238095238095238],... 'Callback',@(hObject,eventdata)EZviewGui_export('HtMapTog2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','HtMapTog2',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'HtMapTog3'; h250 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','L',... 'Style','togglebutton',... 'Position',[0.200439319055464 0.28030303030303 0.0131795716639209 0.0238095238095238],... 'Callback',@(hObject,eventdata)EZviewGui_export('HtMapTog3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','HtMapTog3',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'HtMapVals1'; h251 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.228029720727645 0.928958333333334 0.0557263643351268 0.0352083333333333],... 'Children',[],... 'Tag','HtMapVals1',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'HtMapVals2'; h252 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.228670253651038 0.614791666666667 0.0602100947988727 0.0325],... 'Children',[],... 'Tag','HtMapVals2',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'HtMapVals3'; h253 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String',blanks(0),... 'Style','text',... 'Position',[0.230591852421214 0.2803125 0.0602100947988727 0.0325],... 'Children',[],... 'Tag','HtMapVals3',... 'FontSize',12.8888888888889,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'CompositePB1'; h254 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','c',... 'Style','togglebutton',... 'Position',[0.487445554701512 0.973645833333334 0.0140917243146297 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('CompositePB1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','CompositePB1',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'CompositePB2'; h255 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','c',... 'Style','togglebutton',... 'Position',[0.490007686395081 0.648645833333333 0.0140917243146298 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('CompositePB2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','CompositePB2',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'CompositePB3'; h256 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','c',... 'Style','togglebutton',... 'Position',[0.487445554701512 0.326354166666667 0.0140917243146297 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('CompositePB3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'ForegroundColor',[1 0 1],... 'Tag','CompositePB3',... 'FontSize',10,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'printHt1'; h257 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','P',... 'Position',[0.212656930566231 0.931666666666667 0.0153727901614143 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('printHt1_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tooltip','Print HtMap1',... 'TooltipMode',get(0,'defaultuicontrolTooltipMode'),... 'TooltipString','Print HtMap1',... 'Tag','printHt1',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'PrintHt2'; h258 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','P',... 'Position',[0.213937996413016 0.610729166666667 0.0153727901614143 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('PrintHt2_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tooltip','Print HtMap2',... 'TooltipMode',get(0,'defaultuicontrolTooltipMode'),... 'TooltipString','Print HtMap2',... 'Tag','PrintHt2',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'PrintHt3'; h259 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'FontUnits','pixels',... 'String','P',... 'Position',[0.213937996413016 0.283020833333333 0.0153727901614143 0.024375],... 'Callback',@(hObject,eventdata)EZviewGui_export('PrintHt3_Callback',hObject,eventdata,guidata(hObject)),... 'Children',[],... 'Tooltip','Print HtMap3',... 'TooltipMode',get(0,'defaultuicontrolTooltipMode'),... 'TooltipString','Print HtMap3',... 'Tag','PrintHt3',... 'FontSize',10.6666666666667,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text55'; h260 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','L',... 'Style','text',... 'Position',[0.712272610812196 0.908645833333333 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text55',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text56'; h261 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','L',... 'Style','text',... 'Position',[0.706507814501665 0.590416666666667 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text56',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text57'; h262 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','L',... 'Style','text',... 'Position',[0.70778888034845 0.268125 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text57',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text58'; h263 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','K',... 'Style','text',... 'Position',[0.771201639764284 0.9140625 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text58',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text59'; h264 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','K',... 'Style','text',... 'Position',[0.776966436074814 0.591770833333333 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text59',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text60'; h265 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','K',... 'Style','text',... 'Position',[0.776966436074814 0.266770833333333 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text60',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text61'; h266 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','r',... 'Style','text',... 'Position',[0.826928004099411 0.9140625 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text61',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text63'; h267 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','r',... 'Style','text',... 'Position',[0.827568537022803 0.590416666666667 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text63',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); appdata = []; appdata.lastValidTag = 'text65'; h268 = uicontrol(... 'Parent',h1,... 'Units','normalized',... 'String','r',... 'Style','text',... 'Position',[0.833333333333333 0.258645833333333 0.0166538560081988 0.024375],... 'Children',[],... 'Tag','text65',... 'FontSize',9,... 'CreateFcn', {@local_CreateFcn, blanks(0), appdata} ); hsingleton = h1; % --- Set application data first then calling the CreateFcn. function local_CreateFcn(hObject, eventdata, createfcn, appdata) if ~isempty(appdata) names = fieldnames(appdata); for i=1:length(names) name = char(names(i)); setappdata(hObject, name, getfield(appdata,name)); end end if ~isempty(createfcn) if isa(createfcn,'function_handle') createfcn(hObject, eventdata); else eval(createfcn); end end % --- Handles default GUIDE GUI creation and callback dispatch function varargout = gui_mainfcn(gui_State, varargin) gui_StateFields = {'gui_Name' 'gui_Singleton' 'gui_OpeningFcn' 'gui_OutputFcn' 'gui_LayoutFcn' 'gui_Callback'}; gui_Mfile = ''; for i=1:length(gui_StateFields) if ~isfield(gui_State, gui_StateFields{i}) error(message('MATLAB:guide:StateFieldNotFound', gui_StateFields{ i }, gui_Mfile)); elseif isequal(gui_StateFields{i}, 'gui_Name') gui_Mfile = [gui_State.(gui_StateFields{i}), '.m']; end end numargin = length(varargin); if numargin == 0 % EZVIEWGUI_EXPORT % create the GUI only if we are not in the process of loading it % already gui_Create = true; elseif local_isInvokeActiveXCallback(gui_State, varargin{:}) % EZVIEWGUI_EXPORT(ACTIVEX,...) vin{1} = gui_State.gui_Name; vin{2} = [get(varargin{1}.Peer, 'Tag'), '_', varargin{end}]; vin{3} = varargin{1}; vin{4} = varargin{end-1}; vin{5} = guidata(varargin{1}.Peer); feval(vin{:}); return; elseif local_isInvokeHGCallback(gui_State, varargin{:}) % EZVIEWGUI_EXPORT('CALLBACK',hObject,eventData,handles,...) gui_Create = false; else % EZVIEWGUI_EXPORT(...) % create the GUI and hand varargin to the openingfcn gui_Create = true; end if ~gui_Create % In design time, we need to mark all components possibly created in % the coming callback evaluation as non-serializable. This way, they % will not be brought into GUIDE and not be saved in the figure file % when running/saving the GUI from GUIDE. designEval = false; if (numargin>1 && ishghandle(varargin{2})) fig = varargin{2}; while ~isempty(fig) && ~ishghandle(fig,'figure') fig = get(fig,'parent'); end designEval = isappdata(0,'CreatingGUIDEFigure') || (isscalar(fig)&&isprop(fig,'GUIDEFigure')); end if designEval beforeChildren = findall(fig); end % evaluate the callback now varargin{1} = gui_State.gui_Callback; if nargout [varargout{1:nargout}] = feval(varargin{:}); else feval(varargin{:}); end % Set serializable of objects created in the above callback to off in % design time. Need to check whether figure handle is still valid in % case the figure is deleted during the callback dispatching. if designEval && ishghandle(fig) set(setdiff(findall(fig),beforeChildren), 'Serializable','off'); end else if gui_State.gui_Singleton gui_SingletonOpt = 'reuse'; else gui_SingletonOpt = 'new'; end % Check user passing 'visible' P/V pair first so that its value can be % used by oepnfig to prevent flickering gui_Visible = 'auto'; gui_VisibleInput = ''; for index=1:2:length(varargin) if length(varargin) == index || ~ischar(varargin{index}) break; end % Recognize 'visible' P/V pair len1 = min(length('visible'),length(varargin{index})); len2 = min(length('off'),length(varargin{index+1})); if ischar(varargin{index+1}) && strncmpi(varargin{index},'visible',len1) && len2 > 1 if strncmpi(varargin{index+1},'off',len2) gui_Visible = 'invisible'; gui_VisibleInput = 'off'; elseif strncmpi(varargin{index+1},'on',len2) gui_Visible = 'visible'; gui_VisibleInput = 'on'; end end end % Open fig file with stored settings. Note: This executes all component % specific CreateFunctions with an empty HANDLES structure. % Do feval on layout code in m-file if it exists gui_Exported = ~isempty(gui_State.gui_LayoutFcn); % this application data is used to indicate the running mode of a GUIDE % GUI to distinguish it from the design mode of the GUI in GUIDE. it is % only used by actxproxy at this time. setappdata(0,genvarname(['OpenGuiWhenRunning_', gui_State.gui_Name]),1); if gui_Exported gui_hFigure = feval(gui_State.gui_LayoutFcn, gui_SingletonOpt); % make figure invisible here so that the visibility of figure is % consistent in OpeningFcn in the exported GUI case if isempty(gui_VisibleInput) gui_VisibleInput = get(gui_hFigure,'Visible'); end set(gui_hFigure,'Visible','off') % openfig (called by local_openfig below) does this for guis without % the LayoutFcn. Be sure to do it here so guis show up on screen. movegui(gui_hFigure,'onscreen'); else gui_hFigure = local_openfig(gui_State.gui_Name, gui_SingletonOpt, gui_Visible); % If the figure has InGUIInitialization it was not completely created % on the last pass. Delete this handle and try again. if isappdata(gui_hFigure, 'InGUIInitialization') delete(gui_hFigure); gui_hFigure = local_openfig(gui_State.gui_Name, gui_SingletonOpt, gui_Visible); end end if isappdata(0, genvarname(['OpenGuiWhenRunning_', gui_State.gui_Name])) rmappdata(0,genvarname(['OpenGuiWhenRunning_', gui_State.gui_Name])); end % Set flag to indicate starting GUI initialization setappdata(gui_hFigure,'InGUIInitialization',1); % Fetch GUIDE Application options gui_Options = getappdata(gui_hFigure,'GUIDEOptions'); % Singleton setting in the GUI MATLAB code file takes priority if different gui_Options.singleton = gui_State.gui_Singleton; if ~isappdata(gui_hFigure,'GUIOnScreen') % Adjust background color if gui_Options.syscolorfig set(gui_hFigure,'Color', get(0,'DefaultUicontrolBackgroundColor')); end % Generate HANDLES structure and store with GUIDATA. If there is % user set GUI data already, keep that also. data = guidata(gui_hFigure); handles = guihandles(gui_hFigure); if ~isempty(handles) if isempty(data) data = handles; else names = fieldnames(handles); for k=1:length(names) data.(char(names(k)))=handles.(char(names(k))); end end end guidata(gui_hFigure, data); end % Apply input P/V pairs other than 'visible' for index=1:2:length(varargin) if length(varargin) == index || ~ischar(varargin{index}) break; end len1 = min(length('visible'),length(varargin{index})); if ~strncmpi(varargin{index},'visible',len1) try set(gui_hFigure, varargin{index}, varargin{index+1}), catch break, end end end % If handle visibility is set to 'callback', turn it on until finished % with OpeningFcn gui_HandleVisibility = get(gui_hFigure,'HandleVisibility'); if strcmp(gui_HandleVisibility, 'callback') set(gui_hFigure,'HandleVisibility', 'on'); end feval(gui_State.gui_OpeningFcn, gui_hFigure, [], guidata(gui_hFigure), varargin{:}); if isscalar(gui_hFigure) && ishghandle(gui_hFigure) % Handle the default callbacks of predefined toolbar tools in this % GUI, if any guidemfile('restoreToolbarToolPredefinedCallback',gui_hFigure); % Update handle visibility set(gui_hFigure,'HandleVisibility', gui_HandleVisibility); % Call openfig again to pick up the saved visibility or apply the % one passed in from the P/V pairs if ~gui_Exported gui_hFigure = local_openfig(gui_State.gui_Name, 'reuse',gui_Visible); elseif ~isempty(gui_VisibleInput) set(gui_hFigure,'Visible',gui_VisibleInput); end if strcmpi(get(gui_hFigure, 'Visible'), 'on') figure(gui_hFigure); if gui_Options.singleton setappdata(gui_hFigure,'GUIOnScreen', 1); end end % Done with GUI initialization if isappdata(gui_hFigure,'InGUIInitialization') rmappdata(gui_hFigure,'InGUIInitialization'); end % If handle visibility is set to 'callback', turn it on until % finished with OutputFcn gui_HandleVisibility = get(gui_hFigure,'HandleVisibility'); if strcmp(gui_HandleVisibility, 'callback') set(gui_hFigure,'HandleVisibility', 'on'); end gui_Handles = guidata(gui_hFigure); else gui_Handles = []; end if nargout [varargout{1:nargout}] = feval(gui_State.gui_OutputFcn, gui_hFigure, [], gui_Handles); else feval(gui_State.gui_OutputFcn, gui_hFigure, [], gui_Handles); end if isscalar(gui_hFigure) && ishghandle(gui_hFigure) set(gui_hFigure,'HandleVisibility', gui_HandleVisibility); end end function gui_hFigure = local_openfig(name, singleton, visible) % openfig with three arguments was new from R13. Try to call that first, if % failed, try the old openfig. if nargin('openfig') == 2 % OPENFIG did not accept 3rd input argument until R13, % toggle default figure visible to prevent the figure % from showing up too soon. gui_OldDefaultVisible = get(0,'defaultFigureVisible'); set(0,'defaultFigureVisible','off'); gui_hFigure = matlab.hg.internal.openfigLegacy(name, singleton); set(0,'defaultFigureVisible',gui_OldDefaultVisible); else % Call version of openfig that accepts 'auto' option" gui_hFigure = matlab.hg.internal.openfigLegacy(name, singleton, visible); % %workaround for CreateFcn not called to create ActiveX % peers=findobj(findall(allchild(gui_hFigure)),'type','uicontrol','style','text'); % for i=1:length(peers) % if isappdata(peers(i),'Control') % actxproxy(peers(i)); % end % end end function result = local_isInvokeActiveXCallback(gui_State, varargin) try result = ispc && iscom(varargin{1}) ... && isequal(varargin{1},gcbo); catch result = false; end function result = local_isInvokeHGCallback(gui_State, varargin) try fhandle = functions(gui_State.gui_Callback); result = ~isempty(findstr(gui_State.gui_Name,fhandle.file)) || ... (ischar(varargin{1}) ... && isequal(ishghandle(varargin{2}), 1) ... && (~isempty(strfind(varargin{1},[get(varargin{2}, 'Tag'), '_'])) || ... ~isempty(strfind(varargin{1}, '_CreateFcn'))) ); catch result = false; end