12784 líneas
422 KiB
Matlab
Archivo Ejecutable
12784 líneas
422 KiB
Matlab
Archivo Ejecutable
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 22-Aug-2023 10:52:20
|
|
|
|
% 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
|
|
gui_mainfcn(gui_State, varargin{:});
|
|
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
|
|
cd(w)
|
|
%*************************************************************
|
|
|
|
% --- 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. JH not needed Rcode can do.
|
|
function LKrTog1_Callback(hObject, eventdata, handles)
|
|
global Exp
|
|
|
|
expN=1;
|
|
%EZfigTrendOL
|
|
|
|
% --- Executes on button press in LKrTog2. JH not needed Rcode can do.
|
|
function LKrTog2_Callback(hObject, eventdata, handles)
|
|
global Exp
|
|
|
|
expN=2;
|
|
%EZfigTrendOL
|
|
|
|
% --- Executes on button press in LKrTog3.JH not needed Rcode can do.
|
|
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. JH not needed Rcode can do.
|
|
function CompositePB1_Callback(hObject, eventdata, handles)
|
|
global Exp
|
|
global ghandles
|
|
expN=1;
|
|
DexpN= get(handles.DN1,'value');
|
|
EZcompositePlot
|
|
|
|
% --- Executes on button press in CompositePB2.JH not needed Rcode can do.
|
|
function CompositePB2_Callback(hObject, eventdata, handles)
|
|
global Exp
|
|
global ghandles
|
|
expN=2;
|
|
DexpN= get(handles.DN2,'value');
|
|
EZcompositePlot
|
|
|
|
% --- Executes on button press in CompositePB3.JH not needed Rcode can do.
|
|
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
|
|
%}
|
|
|
|
|
|
% --- 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', 55, ...
|
|
'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', '/home/jwrodger/EZview/EZview2023/EZviewDevNotYetFullyWorking/EZviewDev23_0821cleanup4Pub_MigrationEffort_3 MigrationTry3/EZviewGui_export.m', ...
|
|
'lastFilename', 'C:\EZview2023\EZviewDev23_0821cleanup4Pub_MigrationEffort_3\EZviewGui.fig');
|
|
appdata.lastValidTag = 'figure1';
|
|
appdata.GUIDELayoutEditor = mat{1};
|
|
|
|
h1 = figure(...
|
|
'Units','characters',...
|
|
'Position',[4.28571428571429 5.69230769230769 260.142857142857 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',...
|
|
'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.83625730994152 1 0.83625730994152],...
|
|
'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} );
|
|
|
|
h3 = get(h2,'title');
|
|
|
|
set(h3,...
|
|
'Parent',h2,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500001910683158 1.01943226120858 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');
|
|
|
|
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.500000476837158 -0.0344379467186493 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');
|
|
|
|
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.0411810411810412 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');
|
|
|
|
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','right',...
|
|
'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.871345029239766 1 0.871345029239766],...
|
|
'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} );
|
|
|
|
h8 = get(h7,'title');
|
|
|
|
set(h8,...
|
|
'Parent',h7,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500001833742897 183.497807017544 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');
|
|
|
|
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 -6.19883040935673 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');
|
|
|
|
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.0395227442207307 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');
|
|
|
|
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','right',...
|
|
'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.866279069767442 1 0.866279069767442],...
|
|
'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.114222954420648 0.0573593073593074 0.0818231740801757 0.231601731601732],...
|
|
'InnerPosition',[0.114222954420648 0.0573593073593074 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','Iaxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h13 = get(h12,'title');
|
|
|
|
set(h13,...
|
|
'Parent',h12,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.5000018145414 1.01931928294574 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');
|
|
|
|
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.0342377260981912 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');
|
|
|
|
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.0395227442207309 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');
|
|
|
|
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','right',...
|
|
'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.548387096774194 0.548387096774194],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'NextPlot','add',...
|
|
'CreateFcn', {@local_CreateFcn, @(hObject,eventdata)EZviewGui_export('Paxes1_CreateFcn',hObject,eventdata,guidata(hObject)), appdata} ,...
|
|
'Tag','Paxes1');
|
|
|
|
h18 = get(h17,'title');
|
|
|
|
set(h18,...
|
|
'Parent',h17,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[100.000444227649 173.322916666667 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');
|
|
|
|
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 -26.2222216559781 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');
|
|
|
|
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',[-26.3799277193657 85.0000810623169 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','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');
|
|
|
|
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','right',...
|
|
'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.551612903225806 0.551612903225806],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'NextPlot','add',...
|
|
'Tag','Paxes2',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h23 = get(h22,'title');
|
|
|
|
set(h23,...
|
|
'Parent',h22,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[100.000444227649 183.497807017544 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');
|
|
|
|
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 -27.60233858524 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');
|
|
|
|
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',[-26.3799277193658 90.0000858306886 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');
|
|
|
|
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','right',...
|
|
'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.554838709677419 0.554838709677419],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'NextPlot','add',...
|
|
'Tag','Paxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h28 = get(h27,'title');
|
|
|
|
set(h28,...
|
|
'Parent',h27,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[100.000443612376 183.477470930233 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');
|
|
|
|
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 -27.4418598725352 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');
|
|
|
|
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',[-26.3799277193657 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');
|
|
|
|
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','right',...
|
|
'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.548387096774194 0.548387096774194],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'NextPlot','add',...
|
|
'Tag','OLaxes1',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h33 = get(h32,'title');
|
|
|
|
set(h33,...
|
|
'Parent',h32,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[100.000664495653 183.518382352941 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');
|
|
|
|
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 -27.7647052828003 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');
|
|
|
|
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',[-26.3799277193657 90.0000858306886 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');
|
|
|
|
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','right',...
|
|
'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.551612903225806 0.551612903225806],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'NextPlot','add',...
|
|
'Tag','OLaxes2',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h38 = get(h37,'title');
|
|
|
|
set(h38,...
|
|
'Parent',h37,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[100.000664495653 183.497807017544 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');
|
|
|
|
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 -27.60233858524 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');
|
|
|
|
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',[-26.3799277193658 90.0000858306886 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');
|
|
|
|
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','right',...
|
|
'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.554838709677419 0.554838709677419],...
|
|
'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 50 100 150],...
|
|
'XTickMode',get(0,'defaultaxesXTickMode'),...
|
|
'XTickLabel',{ '0'; '50'; '100'; '150' },...
|
|
'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.0544350922628683 0.0190737489025461],...
|
|
'ColorOrder',get(0,'defaultaxesColorOrder'),...
|
|
'FontSize',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'NextPlot','add',...
|
|
'Tag','OLaxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h43 = get(h42,'title');
|
|
|
|
set(h43,...
|
|
'Parent',h42,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[90.0005974923411 183.477470930233 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');
|
|
|
|
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 -27.4418598725352 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');
|
|
|
|
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',[-23.7419349474293 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');
|
|
|
|
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','right',...
|
|
'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.551612903225806 0.551612903225806],...
|
|
'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.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.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} );
|
|
|
|
h48 = get(h47,'title');
|
|
|
|
set(h48,...
|
|
'Parent',h47,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[100.000889070572 1.01943226120858 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');
|
|
|
|
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.153346325473556 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');
|
|
|
|
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',[-23.1541213638893 0.500000476837159 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');
|
|
|
|
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','right',...
|
|
'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.551612903225806 0.551612903225806],...
|
|
'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.2 0.4 0.6 0.8 1],...
|
|
'XTickMode',get(0,'defaultaxesXTickMode'),...
|
|
'XTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '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.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} );
|
|
|
|
h53 = get(h52,'title');
|
|
|
|
set(h53,...
|
|
'Parent',h52,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500004436123755 1.01943226120858 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');
|
|
|
|
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.500000476837157 -0.153346325473556 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');
|
|
|
|
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.115770606819448 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');
|
|
|
|
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','right',...
|
|
'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.551612903225806 0.551612903225806],...
|
|
'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.2 0.4 0.6 0.8 1],...
|
|
'XTickMode',get(0,'defaultaxesXTickMode'),...
|
|
'XTickLabel',{ '0'; '0.2'; '0.4'; '0.6'; '0.8'; '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.705656232839099 0.0670995670995671 0.170236133992312 0.231601731601732],...
|
|
'InnerPosition',[0.705656232839099 0.0670995670995671 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','Daxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h58 = get(h57,'title');
|
|
|
|
set(h58,...
|
|
'Parent',h57,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500004433047386 1.01943226120858 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');
|
|
|
|
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.500000476837157 -0.153346325473556 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');
|
|
|
|
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.115770606819448 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');
|
|
|
|
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','right',...
|
|
'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.701754385964912 1 0.701754385964912],...
|
|
'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.703459637561779 0.713203463203463 0.0658978583196046 0.231601731601732],...
|
|
'InnerPosition',[0.703459637561779 0.713203463203463 0.0658978583196046 0.231601731601732],...
|
|
'ActivePositionProperty','position',...
|
|
'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),...
|
|
'PositionConstraint','innerposition',...
|
|
'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),...
|
|
'LooseInset',[0.134581105169341 1.19393650793651 0.098347730700672 0.814047619047619],...
|
|
'ColorOrder',get(0,'defaultaxesColorOrder'),...
|
|
'FontSize',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Dlaxes1',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h63 = get(h62,'title');
|
|
|
|
set(h63,...
|
|
'Parent',h62,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500010665257772 1.01943226120858 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');
|
|
|
|
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.500000476837158 -0.153346325473556 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');
|
|
|
|
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.299074067616905 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');
|
|
|
|
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','right',...
|
|
'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.596491228070175 1 0.596491228070175],...
|
|
'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.768808347062054 0.713203463203463 0.056013179571664 0.231601731601732],...
|
|
'InnerPosition',[0.768808347062054 0.713203463203463 0.056013179571664 0.231601731601732],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Dkaxes1',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h68 = get(h67,'title');
|
|
|
|
set(h68,...
|
|
'Parent',h67,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500013575834387 1.01943226120858 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');
|
|
|
|
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.500000476837158 -0.153346325473556 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');
|
|
|
|
h70 = get(h67,'ylabel');
|
|
|
|
set(h70,...
|
|
'Parent',h67,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[1 1 1],...
|
|
'ColorMode','auto',...
|
|
'Position',[-0.351851844255181 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');
|
|
|
|
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','right',...
|
|
'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.578947368421053 1 0.578947368421053],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Draxes1',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h73 = get(h72,'title');
|
|
|
|
set(h73,...
|
|
'Parent',h72,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500014955347233 1.01943226120858 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');
|
|
|
|
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.500000476837156 -0.153346325473557 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');
|
|
|
|
h75 = get(h72,'ylabel');
|
|
|
|
set(h75,...
|
|
'Parent',h72,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[1 1 1],...
|
|
'ColorMode','auto',...
|
|
'Position',[-0.362514021353824 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');
|
|
|
|
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','right',...
|
|
'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.701754385964912 1 0.701754385964912],...
|
|
'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.702910488742449 0.388528138528139 0.0658978583196046 0.231601731601732],...
|
|
'InnerPosition',[0.702910488742449 0.388528138528139 0.0658978583196046 0.231601731601732],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Dlaxes2',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h78 = get(h77,'title');
|
|
|
|
set(h78,...
|
|
'Parent',h77,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500010657310487 1.01943226120858 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');
|
|
|
|
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.50000047683716 -0.153346325473556 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');
|
|
|
|
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.299074067616903 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');
|
|
|
|
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','right',...
|
|
'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.596491228070175 1 0.596491228070175],...
|
|
'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.768259198242724 0.388528138528139 0.056013179571664 0.231601731601732],...
|
|
'InnerPosition',[0.768259198242724 0.388528138528139 0.056013179571664 0.231601731601732],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Dkaxes2',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h83 = get(h82,'title');
|
|
|
|
set(h83,...
|
|
'Parent',h82,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.50001356648464 1.01943226120858 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');
|
|
|
|
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.153346325473556 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');
|
|
|
|
h85 = get(h82,'ylabel');
|
|
|
|
set(h85,...
|
|
'Parent',h82,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[1 1 1],...
|
|
'ColorMode','auto',...
|
|
'Position',[-0.351851844255181 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');
|
|
|
|
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','right',...
|
|
'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.578947368421053 1 0.578947368421053],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Draxes2',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h88 = get(h87,'title');
|
|
|
|
set(h88,...
|
|
'Parent',h87,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.50001494571416 1.01943226120858 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');
|
|
|
|
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.500000476837156 -0.153346325473556 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');
|
|
|
|
h90 = get(h87,'ylabel');
|
|
|
|
set(h90,...
|
|
'Parent',h87,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[1 1 1],...
|
|
'ColorMode','auto',...
|
|
'Position',[-0.362514021353824 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');
|
|
|
|
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','right',...
|
|
'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.701754385964912 1 0.701754385964912],...
|
|
'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.704008786381109 0.0670995670995671 0.0658978583196046 0.231601731601732],...
|
|
'InnerPosition',[0.704008786381109 0.0670995670995671 0.0658978583196046 0.231601731601732],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Dlaxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h93 = get(h92,'title');
|
|
|
|
set(h93,...
|
|
'Parent',h92,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500010673205058 1.01943226120858 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');
|
|
|
|
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.153346325473556 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');
|
|
|
|
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.299074067616905 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');
|
|
|
|
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','right',...
|
|
'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.596491228070175 1 0.596491228070175],...
|
|
'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.769357495881384 0.0670995670995671 0.056013179571664 0.231601731601732],...
|
|
'InnerPosition',[0.769357495881384 0.0670995670995671 0.056013179571664 0.231601731601732],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Dkaxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h98 = get(h97,'title');
|
|
|
|
set(h98,...
|
|
'Parent',h97,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500013585184135 1.01943226120858 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');
|
|
|
|
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.500000476837158 -0.153346325473556 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');
|
|
|
|
h100 = get(h97,'ylabel');
|
|
|
|
set(h100,...
|
|
'Parent',h97,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[1 1 1],...
|
|
'ColorMode','auto',...
|
|
'Position',[-0.351851844255181 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');
|
|
|
|
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','right',...
|
|
'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.578947368421053 1 0.578947368421053],...
|
|
'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.825370675453048 0.0670995670995671 0.0543657331136738 0.231601731601732],...
|
|
'InnerPosition',[0.825370675453048 0.0670995670995671 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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','Draxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h103 = get(h102,'title');
|
|
|
|
set(h103,...
|
|
'Parent',h102,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500014964980307 1.01943226120858 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');
|
|
|
|
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.500000476837156 -0.153346325473556 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');
|
|
|
|
h105 = get(h102,'ylabel');
|
|
|
|
set(h105,...
|
|
'Parent',h102,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[1 1 1],...
|
|
'ColorMode','auto',...
|
|
'Position',[-0.362514021353824 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');
|
|
|
|
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','right',...
|
|
'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'),...
|
|
'PlotBoxAspectRatio',[0.695906432748538 1 0.695906432748538],...
|
|
'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.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.702910488742449 0.712121212121212 0.0653487095002746 0.230519480519481],...
|
|
'InnerPosition',[0.702910488742449 0.712121212121212 0.0653487095002746 0.230519480519481],...
|
|
'ActivePositionProperty','position',...
|
|
'ActivePositionPropertyMode',get(0,'defaultaxesActivePositionPropertyMode'),...
|
|
'PositionConstraint','innerposition',...
|
|
'PositionConstraintMode',get(0,'defaultaxesPositionConstraintMode'),...
|
|
'LooseInset',[0.146756405817174 0.129582291666667 0.107245065789474 0.0883515625],...
|
|
'ColorOrder',get(0,'defaultaxesColorOrder'),...
|
|
'FontSize',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','DNLaxes1',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h108 = get(h107,'title');
|
|
|
|
set(h108,...
|
|
'Parent',h107,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500010742860683 1.01943226120858 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');
|
|
|
|
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.153346325473557 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');
|
|
|
|
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.301587295075869 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');
|
|
|
|
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','right',...
|
|
'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'),...
|
|
'PlotBoxAspectRatio',[0.708333333333333 1 0.708333333333333],...
|
|
'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',[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.703459637561779 0.390692640692641 0.0653487095002746 0.228354978354978],...
|
|
'InnerPosition',[0.703459637561779 0.390692640692641 0.0653487095002746 0.228354978354978],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','DNLaxes2',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h113 = get(h112,'title');
|
|
|
|
set(h113,...
|
|
'Parent',h112,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500010750874752 1.01977926587302 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');
|
|
|
|
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.500000476837158 -0.156084652714156 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');
|
|
|
|
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.301587295075869 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');
|
|
|
|
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','right',...
|
|
'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'),...
|
|
'PlotBoxAspectRatio',[0.708333333333333 1 0.708333333333333],...
|
|
'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',[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.702910488742449 0.0670995670995671 0.0653487095002746 0.228354978354978],...
|
|
'InnerPosition',[0.702910488742449 0.0670995670995671 0.0653487095002746 0.228354978354978],...
|
|
'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',16.1111111111111,...
|
|
'SortMethod','childorder',...
|
|
'Visible','off',...
|
|
'Tag','DNLaxes3',...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
h118 = get(h117,'title');
|
|
|
|
set(h118,...
|
|
'Parent',h117,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[0.500010742860681 1.01977926587302 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');
|
|
|
|
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.500000476837156 -0.156084652714155 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');
|
|
|
|
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.301587295075871 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');
|
|
|
|
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','right',...
|
|
'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.87741935483871 1 0.87741935483871],...
|
|
'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.199341021416804 0.718614718614719 0.0746842394288852 0.20995670995671],...
|
|
'InnerPosition',[0.199341021416804 0.718614718614719 0.0746842394288852 0.20995670995671],...
|
|
'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} );
|
|
|
|
h123 = get(h122,'title');
|
|
|
|
set(h123,...
|
|
'Parent',h122,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[8.49994850158691 -0.535954301075265 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');
|
|
|
|
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.1998207885305 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');
|
|
|
|
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',[-0.929861111111116 12.499988079071 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');
|
|
|
|
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','right',...
|
|
'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.87741935483871 1 0.87741935483871],...
|
|
'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.201537616694124 0.399350649350649 0.0746842394288852 0.20995670995671],...
|
|
'InnerPosition',[0.201537616694124 0.399350649350649 0.0746842394288852 0.20995670995671],...
|
|
'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} );
|
|
|
|
h128 = get(h127,'title');
|
|
|
|
set(h128,...
|
|
'Parent',h127,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[8.49994802474976 -0.535954301075265 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');
|
|
|
|
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.49999189376831 26.1998207885305 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');
|
|
|
|
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',[-0.929861111111109 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');
|
|
|
|
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','right',...
|
|
'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.901960784313726 1 0.901960784313726],...
|
|
'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.200439319055464 0.0714285714285714 0.0757825370675453 0.207792207792208],...
|
|
'InnerPosition',[0.200439319055464 0.0714285714285714 0.0757825370675453 0.207792207792208],...
|
|
'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} );
|
|
|
|
h133 = get(h132,'title');
|
|
|
|
set(h133,...
|
|
'Parent',h132,...
|
|
'Units','data',...
|
|
'FontUnits','pixels',...
|
|
'DecorationContainer',[],...
|
|
'DecorationContainerMode','auto',...
|
|
'Color',[0 0 0],...
|
|
'ColorMode','auto',...
|
|
'Position',[8.49994889549587 -0.542960239651421 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');
|
|
|
|
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.49999189376831 26.2122367465505 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');
|
|
|
|
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',[-0.91392109500805 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');
|
|
|
|
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','right',...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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',...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('clrOlay2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','clrOlay2',...
|
|
'UserData',[],...
|
|
'FontSize',12.8888888888889,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('rotPB2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','rotPB2',...
|
|
'UserData',[],...
|
|
'FontSize',11,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('expSelPB2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','expSelPB2',...
|
|
'UserData',[],...
|
|
'FontSize',12.8888888888889,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.0223404255319149 0.564102564102564 0.759574468085106 0.0871794871794872],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Children',[],...
|
|
'Tag','DM2',...
|
|
'FontSize',get(0,'defaultuicontrolFontSize'),...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'uipanel6';
|
|
|
|
h166 = uipanel(...
|
|
'Parent',h1,...
|
|
'FontUnits','pixels',...
|
|
'Title','Zone 3',...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Tag','uipanel6',...
|
|
'Clipping','off',...
|
|
'Position',[0.00274574409665019 0.0227518959913326 0.105436573311367 0.316359696641387],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.0476190476190476 0.325174825174825 0.751322751322751 0.0874125874125873],...
|
|
'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.031413612565445 0.433566433566433 0.198952879581152 0.111888111888112],...
|
|
'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.0582010582010582 0.737762237762238 0.185185185185185 0.076923076923077],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.037037037037037 0.0174825174825175 0.206349206349206 0.0979020979020979],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('expSelPB3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','expSelPB3',...
|
|
'UserData',[],...
|
|
'FontSize',11,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'rotPB3';
|
|
|
|
h172 = uicontrol(...
|
|
'Parent',h166,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','Hide',...
|
|
'Style','togglebutton',...
|
|
'Position',[0.259259259259259 0.0174825174825175 0.190476190476191 0.0944055944055944],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('rotPB3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','rotPB3',...
|
|
'UserData',[],...
|
|
'FontSize',11,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('clrOlay3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','clrOlay3',...
|
|
'UserData',[],...
|
|
'FontSize',12.8888888888889,...
|
|
'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.0476190476190476 0.122377622377622 0.751322751322751 0.0804195804195804],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.031413612565445 0.216783216783217 0.198952879581152 0.101398601398601],...
|
|
'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.0582010582010582 0.545454545454545 0.761904761904762 0.0804195804195804],...
|
|
'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.256544502617801 0.423076923076923 0.738219895287958 0.0944055944055943],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.031413612565445 0.636363636363636 0.198952879581152 0.101398601398601],...
|
|
'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.871428571428572 0.165775401069519 0.080952380952381],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Children',[],...
|
|
'Tag','text54',...
|
|
'FontSize',11,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'uipanel7';
|
|
|
|
h182 = uipanel(...
|
|
'Parent',h1,...
|
|
'FontUnits','pixels',...
|
|
'Title','Zone 1',...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.0423280423280423 0.149090909090909 0.751322751322751 0.0836363636363636],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Children',[],...
|
|
'Tag','DM1',...
|
|
'FontSize',get(0,'defaultuicontrolFontSize'),...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.313563975837452 0.945887445887446 0.170236133992312 0.038961038961039],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.507413509060956 0.942640692640693 0.170236133992312 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.507413509060956 0.623376623376623 0.170236133992312 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.507413509060956 0.300865800865801 0.170236133992312 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Children',[],...
|
|
'Tag','OLexp3',...
|
|
'FontSize',12.8888888888889,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'uipanel8';
|
|
|
|
h207 = uipanel(...
|
|
'Parent',h1,...
|
|
'FontUnits','pixels',...
|
|
'Title','Selector',...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.391089108910891 0.0767519466073415 0.544554455445545 0.896551724137931],...
|
|
'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',get(0,'defaultuicontrolFontSize'));
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'GeneOrfTog';
|
|
|
|
h209 = uicontrol(...
|
|
'Parent',h207,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','Gene/Orf',...
|
|
'Style','togglebutton',...
|
|
'Position',[0.445544554455445 0.976640711902113 0.48019801980198 0.0244716351501668],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('GeneOrfTog_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','GeneOrfTog',...
|
|
'FontSize',12.8888888888889,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'InfoToggle';
|
|
|
|
h210 = uicontrol(...
|
|
'Parent',h207,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','Info',...
|
|
'Style','togglebutton',...
|
|
'Position',[0.237623762376238 0.973303670745272 0.198019801980198 0.028921023359288],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('InfoToggle_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','InfoToggle',...
|
|
'FontSize',12.8888888888,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('rawNorm_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.0693069306930693 0.906562847608454 0.282178217821782 0.0244716351501668],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.0594059405940594 0.57174638487208 0.282178217821782 0.0244716351501668],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.0495049504950495 0.24916573971079 0.282178217821782 0.0244716351501669],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.297029702970297 0.87750556792873 0.0742574257425743 0.0244988864142539],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('CompositeTog1_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Visible','off',...
|
|
'Tag','CompositeTog1',...
|
|
'SelectionHighlight','off',...
|
|
'FontSize',get(0,'defaultuicontrolFontSize'),...
|
|
'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.311881188118812 0.5456570155902 0.0594059405940594 0.0244988864142539],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('CompositeTog2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Visible','off',...
|
|
'Tag','CompositeTog2',...
|
|
'SelectionHighlight','off',...
|
|
'FontSize',get(0,'defaultuicontrolFontSize'),...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'CompositeTog3';
|
|
|
|
h217 = uicontrol(...
|
|
'Parent',h207,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','Composite3',...
|
|
'Style','togglebutton',...
|
|
'Position',[0.0445544554455446 0.223581757508343 0.326732673267327 0.0244716351501668],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('CompositeTog3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Visible','off',...
|
|
'Tag','CompositeTog3',...
|
|
'SelectionHighlight','off',...
|
|
'FontSize',get(0,'defaultuicontrolFontSize'),...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'zonePB1';
|
|
|
|
h218 = uicontrol(...
|
|
'Parent',h207,...
|
|
'Units','normalized',...
|
|
'String','Z1',...
|
|
'Position',[0.0909090909090909 0.812824956672443 0.104895104895105 0.0398613518197574],...
|
|
'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.104895104895105 0.493934142114385 0.104895104895105 0.0398613518197573],...
|
|
'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.160839160839161 0.147313691507799 0.104895104895105 0.0398613518197573],...
|
|
'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',12.8888888888889,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('spotTog_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'Tag','spotTog',...
|
|
'FontSize',12.8888888888889,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'printOL1';
|
|
|
|
h227 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','P',...
|
|
'Position',[0.493684788577705 0.943722943722943 0.013179571663921 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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',get(0,'defaultuicontrolFontSize'),...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'printOL2';
|
|
|
|
h228 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','P',...
|
|
'Position',[0.493135639758375 0.619047619047619 0.013179571663921 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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',get(0,'defaultuicontrolFontSize'),...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'printOL3';
|
|
|
|
h229 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','P',...
|
|
'Position',[0.493684788577705 0.294372294372294 0.013179571663921 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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',get(0,'defaultuicontrolFontSize'),...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.704557935200439 0.917748917748918 0.0109829763866007 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog1_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.769906644700714 0.914502164502165 0.0109829763866007 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog1_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.825919824272378 0.91991341991342 0.0109829763866007 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog1_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.704008786381109 0.594155844155844 0.0109829763866007 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.769357495881384 0.595238095238095 0.0109829763866007 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.824821526633718 0.594155844155844 0.0109829763866007 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.705656232839099 0.272727272727273 0.0109829763866007 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.771004942339374 0.273809523809524 0.0109829763866007 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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.826468973091708 0.268398268398268 0.0109829763866007 0.0281385281385281],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('LKrTog3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('HtMapTog1_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'Tag','HtMapTog1',...
|
|
'FontSize',12.8888888888889,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('HtMapTog2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'Tag','HtMapTog2',...
|
|
'FontSize',12.8888888888889,...
|
|
'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],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('HtMapTog3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'Tag','HtMapTog3',...
|
|
'FontSize',12.8888888888889,...
|
|
'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.224052718286656 0.92965367965368 0.0554640307523339 0.0346320346320347],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.224601867105986 0.619718309859155 0.0604063701263042 0.0325027085590466],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.224052718286656 0.282467532467532 0.0604063701263043 0.0324675324675325],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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.494783086216365 0.972943722943722 0.0093355299286107 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('CompositePB1_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'Tag','CompositePB1',...
|
|
'FontSize',12.8888888888889,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'CompositePB2';
|
|
|
|
h255 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','c',...
|
|
'Style','togglebutton',...
|
|
'Position',[0.494233937397035 0.648268398268398 0.00933552992861064 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('CompositePB2_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'Tag','CompositePB2',...
|
|
'FontSize',12.8888888888889,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'CompositePB3';
|
|
|
|
h256 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','c',...
|
|
'Style','togglebutton',...
|
|
'Position',[0.494233937397035 0.322510822510822 0.00933552992861064 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'Callback',@(hObject,eventdata)EZviewGui_export('CompositePB3_Callback',hObject,eventdata,guidata(hObject)),...
|
|
'Children',[],...
|
|
'ForegroundColor',[1 0 1],...
|
|
'Tag','CompositePB3',...
|
|
'FontSize',12.8888888888889,...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'printHt1';
|
|
|
|
h257 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','P',...
|
|
'Position',[0.212520593080725 0.931818181818181 0.0104338275672707 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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',get(0,'defaultuicontrolFontSize'),...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'PrintHt2';
|
|
|
|
h258 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','P',...
|
|
'Position',[0.213618890719385 0.61038961038961 0.0104338275672707 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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',get(0,'defaultuicontrolFontSize'),...
|
|
'CreateFcn', {@local_CreateFcn, blanks(0), appdata} );
|
|
|
|
appdata = [];
|
|
appdata.lastValidTag = 'PrintHt3';
|
|
|
|
h259 = uicontrol(...
|
|
'Parent',h1,...
|
|
'Units','normalized',...
|
|
'FontUnits','pixels',...
|
|
'String','P',...
|
|
'Position',[0.213618890719385 0.282467532467532 0.0104338275672707 0.0238095238095238],...
|
|
'BackgroundColor',[0.941176470588235 0.941176470588235 0.941176470588235],...
|
|
'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',get(0,'defaultuicontrolFontSize'),...
|
|
'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
|
|
|
|
|