1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
|
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
* Ajouter ici d'ventuels commentaires sur le fichier XML
-->
<refentry xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:ns5="http://www.w3.org/1999/xhtml"
xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:id="axes_properties" xml:lang="en">
<info>
<pubdate>$LastChangedDate: 26-05-2009 $</pubdate>
</info>
<refnamediv>
<refname>Axes properties</refname>
<refpurpose>Emulated Matlab Axes properties</refpurpose>
</refnamediv>
<refsection>
<title>Description</title>
<para>The Emulated Matlab Axes properties are the following :</para>
<informaltable>
<tr><td>nextPlot</td></tr>
<tr><td>XDir</td></tr>
<tr><td>YDir</td></tr>
<tr><td>ZDir</td></tr>
<tr><td>XColor</td></tr>
<tr><td>YColor</td></tr>
<tr><td>ZColor</td></tr>
<tr><td>Color</td></tr>
<tr><td>XTick</td></tr>
<tr><td>YTick</td></tr>
<tr><td>ZTick</td></tr>
<tr><td>XTickLabel</td></tr>
<tr><td>YTickLabel</td></tr>
<tr><td>ZTickLabel</td></tr>
<tr><td>XLabel</td></tr>
<tr><td>YLabel</td></tr>
<tr><td>ZLabel</td></tr>
<tr><td>Title</td></tr>
<tr><td>XGrid</td></tr>
<tr><td>YGrid</td></tr>
<tr><td>ZGrid</td></tr>
<tr><td>XGridColor</td></tr>
<tr><td>YGridColor</td></tr>
<tr><td>ZGridColor</td></tr>
<tr><td>DataAspectRatio</td></tr>
<tr><td>DataAspectRatioMode</td></tr>
<tr><td>CLim</td></tr>
<tr><td>XLim</td></tr>
<tr><td>YLim</td></tr>
<tr><td>ZLim</td></tr>
<tr><td>CLimMode</td></tr>
<tr><td>XLimMode</td></tr>
<tr><td>YLimMode</td></tr>
<tr><td>ZLimMode</td></tr>
<tr><td>XScale</td></tr>
<tr><td>YScale</td></tr>
<tr><td>ZScale</td></tr>
<tr><td>ColorOrder</td></tr>
<tr><td>LineStyleOrder</td></tr>
<tr><td>Visible</td></tr>
<tr><td>XAxisLocation</td></tr>
<tr><td>YAxisLocation</td></tr>
<tr><td>ZAxisLocation</td></tr>
<tr><td>Box</td></tr>
<tr><td>View</td></tr>
</informaltable>
<para>You won't have to use these properties directly as mot of them are used by high level commands like axis. But some of them give some
features which are missing or features whose usage is cumbersome.</para>
</refsection>
<refsection>
<title>ColorOrder</title>
<programlisting role="example">
set(gca(),'ColorOrder',[1 0 0;0 1 0;0 0 1]);
t=linspace(0,2*%pi,128);
plot(t,sin(t'*(1:6)));
</programlisting>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="colororder.png"/>
</imageobject>
</mediaobject>
</screenshot>
</refsection>
<refsection>
<title>LineStyleOrder</title>
<programlisting role="example">
set(gca(),'LineStyleOrder',['-','-.']);
t=linspace(0,2*%pi,128);
plot(t,sin(t'*(1:6)),'color','blue');</programlisting>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="linestyleorder.png"/>
</imageobject>
</mediaobject>
</screenshot>
</refsection>
<refsection>
<title>Authors</title>
<simplelist type="vert">
<member>Stphane Mottelet</member>
</simplelist>
</refsection>
</refentry>
|