source: trunk/src/uvmat_doc/FUNCTIONS_DOC/get_plot_handles.html @ 37

Last change on this file since 37 was 37, checked in by sommeria, 14 years ago

create_grid.fig ,
uvmat_doc and all the included files added

File size: 6.8 KB
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2                "http://www.w3.org/TR/REC-html40/loose.dtd">
3<html>
4<head>
5  <title>Description of get_plot_handles</title>
6  <meta name="keywords" content="get_plot_handles">
7  <meta name="description" content="'get_plot_handles': list the  handles of elements setting the plotting parameters in the uvmat interface">
8  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
9  <meta name="generator" content="m2html &copy; 2003 Guillaume Flandin">
10  <meta name="robots" content="index, follow">
11  <link type="text/css" rel="stylesheet" href="../m2html.css">
12</head>
13<body>
14<a name="_top"></a>
15<div><a href="../index.html">Home</a> &gt;  <a href="index.html">.</a> &gt; get_plot_handles.m</div>
16
17<!--<table width="100%"><tr><td align="left"><a href="../index.html"><img alt="<" border="0" src="../left.png">&nbsp;Master index</a></td>
18<td align="right"><a href="index.html">Index for .&nbsp;<img alt=">" border="0" src="../right.png"></a></td></tr></table>-->
19
20<h1>get_plot_handles
21</h1>
22
23<h2><a name="_name"></a>PURPOSE <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2>
24<div class="box"><strong>'get_plot_handles': list the  handles of elements setting the plotting parameters in the uvmat interface</strong></div>
25
26<h2><a name="_synopsis"></a>SYNOPSIS <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2>
27<div class="box"><strong>function PlotHandles=get_plot_handles(handles) </strong></div>
28
29<h2><a name="_description"></a>DESCRIPTION <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2>
30<div class="fragment"><pre class="comment">'get_plot_handles': list the  handles of elements setting the plotting parameters in the uvmat interface
31--------------------------------------------------------
32function [PlotHandles]=get_plot_handles(handles)
33
34 OUTPUT:
35 PlotHandles: structure containing the  used to set plotting parameters
36 INPUT:
37 handles: structure of the handles of the graphic elements in the uvmat interface
38            -- TODO: needs to be replaced by a cell listing the element tags --</pre></div>
39
40<!-- crossreference -->
41<h2><a name="_cross"></a>CROSS-REFERENCE INFORMATION <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2>
42This function calls:
43<ul style="list-style-image:url(../matlabicon.gif)">
44</ul>
45This function is called by:
46<ul style="list-style-image:url(../matlabicon.gif)">
47<li><a href="mouse_up.html" class="code" title="function mouse_up(ggg,eventdata,handles)">mouse_up</a>  'mouse_up': function  activated when the mouse button is released</li><li><a href="uvmat.html" class="code" title="function varargout = uvmat(varargin)">uvmat</a>      'uvmat': function associated with the GUI 'uvmat.fig' for images and data field visualization</li></ul>
48<!-- crossreference -->
49
50
51<h2><a name="_source"></a>SOURCE CODE <a href="#_top"><img alt="^" border="0" src="../up.png"></a></h2>
52<div class="fragment"><pre>0001 <span class="comment">%'get_plot_handles': list the  handles of elements setting the plotting parameters in the uvmat interface</span>
530002 <span class="comment">%--------------------------------------------------------</span>
540003 <span class="comment">%function [PlotHandles]=get_plot_handles(handles)</span>
550004 <span class="comment">%</span>
560005 <span class="comment">% OUTPUT:</span>
570006 <span class="comment">% PlotHandles: structure containing the  used to set plotting parameters</span>
580007 <span class="comment">% INPUT:</span>
590008 <span class="comment">% handles: structure of the handles of the graphic elements in the uvmat interface</span>
600009 <span class="comment">%            -- TODO: needs to be replaced by a cell listing the element tags --</span>
610010
620011 <a name="_sub0" href="#_subfunctions" class="code">function PlotHandles=get_plot_handles(handles)</a>
630012 PlotHandles.auto_xy=handles.auto_xy;
640013 <span class="comment">%For scalar field representation</span>
650014 PlotHandles.MaxA=handles.MaxA;
660015 PlotHandles.MinA=handles.MinA;
670016 PlotHandles.AutoScal=handles.AutoScal;
680017 PlotHandles.BW=handles.BW;
690018 PlotHandles.Contours=handles.Contours;
700019 PlotHandles.IncrA=handles.IncrA;
710020 PlotHandles.SCALAR_title=handles.SCALAR_title;
720021 PlotHandles.min_title=handles.min_title;
730022 PlotHandles.max_title=handles.max_title;
740023 PlotHandles.frame_scal=handles.frame_scal;
750024 PlotHandles.npx=handles.npx;
760025 PlotHandles.npy=handles.npy;
770026 PlotHandles.npx_title=handles.npx_title;
780027 PlotHandles.npy_title=handles.npy_title;
790028
800029 <span class="comment">%For vector field representation</span>
810030 PlotHandles.frame_vect=handles.frame_vect;
820031 PlotHandles.VECT_title=handles.VECT_title;
830032 PlotHandles.VecScale=handles.VecScale;
840033 PlotHandles.AutoVec=handles.AutoVec;
850034 PlotHandles.HideFalse=handles.HideFalse;
860035 PlotHandles.HideWarning=handles.HideWarning;
870036 PlotHandles.record=handles.record;
880037 PlotHandles.col_vec=handles.col_vec;
890038 PlotHandles.Color_title=handles.Color_title;
900039 PlotHandles.color_code=handles.color_code;
910040 PlotHandles.colcode1=handles.colcode1;
920041 PlotHandles.colcode2=handles.colcode2;
930042 PlotHandles.vec_col_bar=handles.vec_col_bar;
940043 PlotHandles.slider1=handles.slider1;
950044 PlotHandles.slider2=handles.slider2;
960045 PlotHandles.max_vec=handles.max_vec;
970046 PlotHandles.min_vec=handles.min_vec;
980047 PlotHandles.scale_title=handles.scale_title;
990048 PlotHandles.AutoVecColor=handles.AutoVecColor;
1000049 PlotHandles.decimate4=handles.decimate4;
1010050 PlotHandles.min_C_title=handles.min_C_title;
1020051 PlotHandles.max_C_title=handles.max_C_title;
1030052 PlotHandles.MenuVectors=handles.MenuVectors;
1040053 PlotHandles.MenuEditVectors=handles.MenuEditVectors;
1050054 PlotHandles.edit_vect=handles.edit_vect;
1060055 <span class="comment">%menu for the choice of the current plotting axes</span>
1070056 <span class="comment">%PlotHandles.MenuAxes=handles.MenuAxes;</span>
1080057
1090058 <span class="comment">%handles for move_mouse</span>
1100059 PlotHandles.mouse_coord=handles.mouse_coord;
1110060 <span class="comment">% PlotHandles.POINTS=handles.POINTS;</span>
1120061 <span class="comment">% PlotHandles.LINE=handles.LINE;</span>
1130062 <span class="comment">% PlotHandles.PLANE=handles.PLANE;</span>
1140063 <span class="comment">% PlotHandles.PATCH=handles.PATCH;</span>
1150064 PlotHandles.cal=handles.cal;
1160065 <span class="comment">%PlotHandles.makemask=handles.makemask;</span>
1170066 PlotHandles.edit=handles.edit;
1180067 PlotHandles.text_display_1=handles.text_display_1;
1190068 PlotHandles.text_display_2=handles.text_display_2;
1200069 PlotHandles.text_display_3=handles.text_display_3;
1210070 PlotHandles.text_display_4=handles.text_display_4;
1220071
1230072 <span class="comment">%handles for mouse_up</span>
1240073 PlotHandles.zoom=handles.zoom;</pre></div>
125<hr><address>Generated on Fri 13-Nov-2009 11:17:03 by <strong><a href="http://www.artefact.tk/software/matlab/m2html/">m2html</a></strong> &copy; 2003</address>
126</body>
127</html>
Note: See TracBrowser for help on using the repository browser.