Mercurial > hg > octave-nkf
annotate scripts/plot/__go_draw_axes__.m @ 10925:2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
author | Ben Abbott <bpabbott@mac.com> |
---|---|
date | Mon, 30 Aug 2010 19:03:25 -0400 |
parents | 91ff0d7ee94b |
children | 004fd6d6b7e9 |
rev | line source |
---|---|
8920 | 1 ## Copyright (C) 2005, 2007, 2008, 2009 John W. Eaton |
6405 | 2 ## |
3 ## This file is part of Octave. | |
4 ## | |
5 ## Octave is free software; you can redistribute it and/or modify it | |
6 ## under the terms of the GNU General Public License as published by | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
6405 | 9 ## |
10 ## Octave is distributed in the hope that it will be useful, but | |
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 ## General Public License for more details. | |
14 ## | |
15 ## You should have received a copy of the GNU General Public License | |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
6405 | 18 |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8740
diff
changeset
|
19 ## -*- texinfo -*- |
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8740
diff
changeset
|
20 ## @deftypefn {Function File} {} __go_draw_axes__ (@var{h}, @var{plot_stream}, @var{enhanced}, @var{mono}) |
6895 | 21 ## Undocumented internal function. |
8812
7d48766c21a5
use consistent format for doc strings of internal functions
John W. Eaton <jwe@octave.org>
parents:
8740
diff
changeset
|
22 ## @end deftypefn |
6405 | 23 |
24 ## Author: jwe | |
25 | |
10913
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
26 function __go_draw_axes__ (h, plot_stream, enhanced, mono, bg_is_set) |
6405 | 27 |
10528
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
28 if (nargin >= 4 && nargin <= 6) |
6405 | 29 |
8894
4414e555505d
__go_draw_axes__.m: Do not render axis labels twice when their handles are visible.
Ben Abbott <bpabbott@mac.com>
parents:
8889
diff
changeset
|
30 showhiddenhandles = get (0, "showhiddenhandles"); |
4414e555505d
__go_draw_axes__.m: Do not render axis labels twice when their handles are visible.
Ben Abbott <bpabbott@mac.com>
parents:
8889
diff
changeset
|
31 unwind_protect |
4414e555505d
__go_draw_axes__.m: Do not render axis labels twice when their handles are visible.
Ben Abbott <bpabbott@mac.com>
parents:
8889
diff
changeset
|
32 set (0, "showhiddenhandles", "on"); |
4414e555505d
__go_draw_axes__.m: Do not render axis labels twice when their handles are visible.
Ben Abbott <bpabbott@mac.com>
parents:
8889
diff
changeset
|
33 axis_obj = __get__ (h); |
4414e555505d
__go_draw_axes__.m: Do not render axis labels twice when their handles are visible.
Ben Abbott <bpabbott@mac.com>
parents:
8889
diff
changeset
|
34 unwind_protect_cleanup |
4414e555505d
__go_draw_axes__.m: Do not render axis labels twice when their handles are visible.
Ben Abbott <bpabbott@mac.com>
parents:
8889
diff
changeset
|
35 set (0, "showhiddenhandles", showhiddenhandles); |
4414e555505d
__go_draw_axes__.m: Do not render axis labels twice when their handles are visible.
Ben Abbott <bpabbott@mac.com>
parents:
8889
diff
changeset
|
36 end_unwind_protect |
6405 | 37 |
38 parent_figure_obj = get (axis_obj.parent); | |
9257
ab952265ad06
__go_draw_axes__.m: Properly render TeX symbols for x11.
Ben Abbott <bpabbott@mac.com>
parents:
9191
diff
changeset
|
39 gnuplot_term = __gnuplot_get_var__ (axis_obj.parent, "GPVAL_TERM"); |
6405 | 40 |
8208 | 41 ## Set to false for plotyy axes. |
42 if (strcmp (axis_obj.tag, "plotyy")) | |
8102 | 43 ymirror = false; |
8208 | 44 else |
45 ymirror = true; | |
7189 | 46 endif |
47 | |
10917
888c75785221
Improvements to FLTK backend rotation
Jordi Guti?rrez Hermoso <jordigh@gmail.com>
parents:
10913
diff
changeset
|
48 nd = __calc_dimensions__ (h); |
888c75785221
Improvements to FLTK backend rotation
Jordi Guti?rrez Hermoso <jordigh@gmail.com>
parents:
10913
diff
changeset
|
49 |
10532
568c7c041fac
colorbar.m: Consistent treatment of plotboxaspectratio. Add listener for plotboxaspectratiomode.
Ben Abbott <bpabbott@mac.com>
parents:
10528
diff
changeset
|
50 if (strcmpi (axis_obj.plotboxaspectratiomode, "manual")) |
10920
91ff0d7ee94b
Don't pass figure handle to __calc_dimensions__.
Ben Abbott <bpabbott@mac.com>
parents:
10917
diff
changeset
|
51 pos = __actual_axis_position__ (h); |
10532
568c7c041fac
colorbar.m: Consistent treatment of plotboxaspectratio. Add listener for plotboxaspectratiomode.
Ben Abbott <bpabbott@mac.com>
parents:
10528
diff
changeset
|
52 else |
568c7c041fac
colorbar.m: Consistent treatment of plotboxaspectratio. Add listener for plotboxaspectratiomode.
Ben Abbott <bpabbott@mac.com>
parents:
10528
diff
changeset
|
53 pos = axis_obj.position; |
568c7c041fac
colorbar.m: Consistent treatment of plotboxaspectratio. Add listener for plotboxaspectratiomode.
Ben Abbott <bpabbott@mac.com>
parents:
10528
diff
changeset
|
54 endif |
8889
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
55 if (__gnuplot_has_feature__ ("screen_coordinates_for_{lrtb}margin")) |
10910
40cf7cc4ea62
Properly interpret plotboxaspectratio when 3D objects are viewed as 2D.
Ben Abbott <bpabbott@mac.com>
parents:
10635
diff
changeset
|
56 if (nd == 2 || all (mod (axis_obj.view, 90) == 0)) |
10549 | 57 x = [1, 1]; |
8889
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
58 else |
10549 | 59 ## 3D plots need to be sized down to fit in the window. |
60 x = 1.0 ./ sqrt([2, 2.5]); | |
8889
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
61 endif |
10913
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
62 fprintf (plot_stream, "set tmargin screen %.15g;\n", |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
63 pos(2)+pos(4)/2+x(2)*pos(4)/2); |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
64 fprintf (plot_stream, "set bmargin screen %.15g;\n", |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
65 pos(2)+pos(4)/2-x(2)*pos(4)/2); |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
66 fprintf (plot_stream, "set lmargin screen %.15g;\n", |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
67 pos(1)+pos(3)/2-x(1)*pos(3)/2); |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
68 fprintf (plot_stream, "set rmargin screen %.15g;\n", |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
69 pos(1)+pos(3)/2+x(1)*pos(3)/2); |
8889
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
70 else |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
71 ## FIXME -- nothing should change for gnuplot 4.2.x. |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
72 fprintf (plot_stream, "set tmargin 0;\n"); |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
73 fprintf (plot_stream, "set bmargin 0;\n"); |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
74 fprintf (plot_stream, "set lmargin 0;\n"); |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
75 fprintf (plot_stream, "set rmargin 0;\n"); |
7189 | 76 |
8889
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
77 fprintf (plot_stream, "set origin %.15g, %.15g;\n", pos(1), pos(2)); |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
78 fprintf (plot_stream, "set size %.15g, %.15g;\n", pos(3), pos(4)); |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
79 |
10532
568c7c041fac
colorbar.m: Consistent treatment of plotboxaspectratio. Add listener for plotboxaspectratiomode.
Ben Abbott <bpabbott@mac.com>
parents:
10528
diff
changeset
|
80 if (strcmpi (axis_obj.dataaspectratiomode, "manual")) |
568c7c041fac
colorbar.m: Consistent treatment of plotboxaspectratio. Add listener for plotboxaspectratiomode.
Ben Abbott <bpabbott@mac.com>
parents:
10528
diff
changeset
|
81 r = axis_obj.dataaspectratio; |
8889
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
82 fprintf (plot_stream, "set size ratio %.15g;\n", -r(2)/r(1)); |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
83 else |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
84 fputs (plot_stream, "set size noratio;\n"); |
665b264b6a50
Compatible support of figure paper properties and resolution for the gnuplot backend.
Ben Abbott <bpabbott@mac.com>
parents:
8812
diff
changeset
|
85 endif |
6405 | 86 endif |
87 | |
8953
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
88 ## Reset all labels, axis-labels, tick-labels, and title |
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
89 ## FIXME - We should have an function to initialize the axis. |
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
90 ## Presently, this is dispersed in this function. |
6778 | 91 fputs (plot_stream, "unset label;\n"); |
8953
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
92 fputs (plot_stream, "unset xtics;\n"); |
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
93 fputs (plot_stream, "unset ytics;\n"); |
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
94 fputs (plot_stream, "unset ztics;\n"); |
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
95 fputs (plot_stream, "unset x2tics;\n"); |
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
96 fputs (plot_stream, "unset x2tics;\n"); |
6778 | 97 |
6405 | 98 if (! isempty (axis_obj.title)) |
99 t = get (axis_obj.title); | |
100 if (isempty (t.string)) | |
10549 | 101 fputs (plot_stream, "unset title;\n"); |
6405 | 102 else |
10549 | 103 [tt, f, s] = __maybe_munge_text__ (enhanced, t, "string"); |
104 fontspec = create_fontspec (f, s, gnuplot_term); | |
105 fprintf (plot_stream, "set title \"%s\" %s %s", | |
106 undo_string_escapes (tt), fontspec, | |
107 __do_enhanced_option__ (enhanced, t)); | |
10913
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
108 if (nd == 3 |
dd6b90f44ae5
Unify gnuplot printing with the fltk backend.
Ben Abbott <bpabbott@mac.com>
parents:
10912
diff
changeset
|
109 && __gnuplot_has_feature__ ("screen_coordinates_for_{lrtb}margin")) |
10549 | 110 fprintf (plot_stream, " offset screen 0, screen %.3f;\n", pos(4)/5); |
111 else | |
112 fprintf (plot_stream, ";\n"); | |
113 endif | |
6405 | 114 endif |
115 endif | |
116 | |
117 if (! isempty (axis_obj.xlabel)) | |
118 t = get (axis_obj.xlabel); | |
6737 | 119 angle = t.rotation; |
7269 | 120 colorspec = get_text_colorspec (axis_obj.xcolor, mono); |
6405 | 121 if (isempty (t.string)) |
10549 | 122 fprintf (plot_stream, "unset xlabel;\n"); |
123 fprintf (plot_stream, "unset x2label;\n"); | |
6405 | 124 else |
10549 | 125 [tt, f, s] = __maybe_munge_text__ (enhanced, t, "string"); |
126 fontspec = create_fontspec (f, s, gnuplot_term); | |
127 if (strcmpi (axis_obj.xaxislocation, "top")) | |
128 fprintf (plot_stream, "set x2label \"%s\" %s %s %s", | |
129 undo_string_escapes (tt), colorspec, fontspec, | |
130 __do_enhanced_option__ (enhanced, t)); | |
131 else | |
132 fprintf (plot_stream, "set xlabel \"%s\" %s %s %s", | |
133 undo_string_escapes (tt), colorspec, fontspec, | |
134 __do_enhanced_option__ (enhanced, t)); | |
135 endif | |
136 fprintf (plot_stream, " rotate by %f;\n", angle); | |
137 if (strcmpi (axis_obj.xaxislocation, "top")) | |
138 fprintf (plot_stream, "unset xlabel;\n"); | |
139 else | |
140 fprintf (plot_stream, "unset x2label;\n"); | |
141 endif | |
6405 | 142 endif |
143 endif | |
144 | |
145 if (! isempty (axis_obj.ylabel)) | |
146 t = get (axis_obj.ylabel); | |
6737 | 147 angle = t.rotation; |
7269 | 148 colorspec = get_text_colorspec (axis_obj.ycolor, mono); |
6405 | 149 if (isempty (t.string)) |
10549 | 150 fprintf (plot_stream, "unset ylabel;\n"); |
151 fprintf (plot_stream, "unset y2label;\n"); | |
6405 | 152 else |
10549 | 153 [tt, f, s] = __maybe_munge_text__ (enhanced, t, "string"); |
154 fontspec = create_fontspec (f, s, gnuplot_term); | |
155 if (strcmpi (axis_obj.yaxislocation, "right")) | |
156 fprintf (plot_stream, "set y2label \"%s\" %s %s %s", | |
157 undo_string_escapes (tt), colorspec, fontspec, | |
158 __do_enhanced_option__ (enhanced, t)); | |
159 else | |
160 fprintf (plot_stream, "set ylabel \"%s\" %s %s %s", | |
161 undo_string_escapes (tt), colorspec, fontspec, | |
162 __do_enhanced_option__ (enhanced, t)); | |
163 endif | |
164 fprintf (plot_stream, " rotate by %f;\n", angle); | |
165 if (strcmpi (axis_obj.yaxislocation, "right")) | |
166 fprintf (plot_stream, "unset ylabel;\n"); | |
167 else | |
168 fprintf (plot_stream, "unset y2label;\n"); | |
169 endif | |
6405 | 170 endif |
171 endif | |
172 | |
173 if (! isempty (axis_obj.zlabel)) | |
174 t = get (axis_obj.zlabel); | |
6737 | 175 angle = t.rotation; |
7269 | 176 colorspec = get_text_colorspec (axis_obj.zcolor, mono); |
6405 | 177 if (isempty (t.string)) |
10549 | 178 fputs (plot_stream, "unset zlabel;\n"); |
6405 | 179 else |
10549 | 180 [tt, f, s] = __maybe_munge_text__ (enhanced, t, "string"); |
181 fontspec = create_fontspec (f, s, gnuplot_term); | |
182 fprintf (plot_stream, "set zlabel \"%s\" %s %s %s", | |
183 undo_string_escapes (tt), colorspec, fontspec, | |
184 __do_enhanced_option__ (enhanced, t)); | |
185 fprintf (plot_stream, " rotate by %f;\n", angle); | |
6405 | 186 endif |
187 endif | |
188 | |
6809 | 189 if (strcmpi (axis_obj.xaxislocation, "top")) |
190 xaxisloc = "x2"; | |
191 xaxisloc_using = "x2"; | |
192 else | |
193 xaxisloc = "x"; | |
194 xaxisloc_using = "x1"; | |
7321 | 195 if (strcmpi (axis_obj.xaxislocation, "zero")) |
10549 | 196 fputs (plot_stream, "set xzeroaxis;\n"); |
7321 | 197 endif |
6809 | 198 endif |
199 if (strcmpi (axis_obj.yaxislocation, "right")) | |
200 yaxisloc = "y2"; | |
201 yaxisloc_using = "y2"; | |
202 else | |
203 yaxisloc = "y"; | |
204 yaxisloc_using = "y1"; | |
7321 | 205 if (strcmpi (axis_obj.yaxislocation, "zero")) |
10549 | 206 fputs (plot_stream, "set yzeroaxis;\n"); |
7321 | 207 endif |
6809 | 208 endif |
209 | |
7274 | 210 have_grid = false; |
211 | |
6758 | 212 if (strcmpi (axis_obj.xgrid, "on")) |
7274 | 213 have_grid = true; |
6809 | 214 fprintf (plot_stream, "set grid %stics;\n", xaxisloc); |
6405 | 215 else |
6809 | 216 fprintf (plot_stream, "set grid no%stics;\n", xaxisloc); |
6405 | 217 endif |
218 | |
6758 | 219 if (strcmpi (axis_obj.ygrid, "on")) |
7274 | 220 have_grid = true; |
6809 | 221 fprintf (plot_stream, "set grid %stics;\n", yaxisloc); |
6405 | 222 else |
6809 | 223 fprintf (plot_stream, "set grid no%stics;\n", yaxisloc); |
6405 | 224 endif |
225 | |
6758 | 226 if (strcmpi (axis_obj.zgrid, "on")) |
7274 | 227 have_grid = true; |
6405 | 228 fputs (plot_stream, "set grid ztics;\n"); |
229 else | |
7085 | 230 fputs (plot_stream, "set grid noztics;\n"); |
6405 | 231 endif |
232 | |
6758 | 233 if (strcmpi (axis_obj.xminorgrid, "on")) |
7274 | 234 have_grid = true; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
235 if (strcmp (axis_obj.xscale, "log")) |
10549 | 236 m = 10; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
237 else |
10549 | 238 m = 5; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
239 endif |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
240 fprintf (plot_stream, "set m%stics %d;\n", xaxisloc, m); |
6809 | 241 fprintf (plot_stream, "set grid m%stics;\n", xaxisloc); |
6405 | 242 else |
6809 | 243 fprintf (plot_stream, "set grid nom%stics;\n", xaxisloc); |
6405 | 244 endif |
245 | |
6758 | 246 if (strcmpi (axis_obj.yminorgrid, "on")) |
7274 | 247 have_grid = true; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
248 if (strcmp (axis_obj.yscale, "log")) |
10549 | 249 m = 10; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
250 else |
10549 | 251 m = 5; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
252 endif |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
253 fprintf (plot_stream, "set m%stics %d;\n", yaxisloc, m); |
6809 | 254 fprintf (plot_stream, "set grid m%stics;\n", yaxisloc); |
6405 | 255 else |
6809 | 256 fprintf (plot_stream, "set grid nom%stics;\n", yaxisloc); |
6405 | 257 endif |
258 | |
6758 | 259 if (strcmpi (axis_obj.zminorgrid, "on")) |
7274 | 260 have_grid = true; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
261 if (strcmp (axis_obj.zscale, "log")) |
10549 | 262 m = 10; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
263 else |
10549 | 264 m = 5; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
265 endif |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
266 fprintf (plot_stream, "set mztics %d;\n", m); |
6405 | 267 fputs (plot_stream, "set grid mztics;\n"); |
268 else | |
269 fputs (plot_stream, "set grid nomztics;\n"); | |
270 endif | |
271 | |
7307 | 272 ## The grid front/back/layerdefault option also controls the |
273 ## appearance of tics, so it is used even if the grid is absent. | |
274 if (strcmpi (axis_obj.layer, "top")) | |
275 fputs (plot_stream, "set grid front;\n"); | |
9438
bac81ac76a57
__go_draw_axes__.m: also use layer property for plot border
John W. Eaton <jwe@octave.org>
parents:
9374
diff
changeset
|
276 fputs (plot_stream, "set border front;\n"); |
7307 | 277 else |
278 fputs (plot_stream, "set grid layerdefault;\n"); | |
9438
bac81ac76a57
__go_draw_axes__.m: also use layer property for plot border
John W. Eaton <jwe@octave.org>
parents:
9374
diff
changeset
|
279 ## FIXME -- the gnuplot help says that "layerdefault" should work |
bac81ac76a57
__go_draw_axes__.m: also use layer property for plot border
John W. Eaton <jwe@octave.org>
parents:
9374
diff
changeset
|
280 ## for set border too, but it fails for me with gnuplot 4.2.5. So |
bac81ac76a57
__go_draw_axes__.m: also use layer property for plot border
John W. Eaton <jwe@octave.org>
parents:
9374
diff
changeset
|
281 ## use "back" instead. |
bac81ac76a57
__go_draw_axes__.m: also use layer property for plot border
John W. Eaton <jwe@octave.org>
parents:
9374
diff
changeset
|
282 fputs (plot_stream, "set border back;\n"); |
7307 | 283 endif |
7297 | 284 if (! have_grid) |
285 fputs (plot_stream, "unset grid;\n"); | |
7274 | 286 endif |
287 | |
9257
ab952265ad06
__go_draw_axes__.m: Properly render TeX symbols for x11.
Ben Abbott <bpabbott@mac.com>
parents:
9191
diff
changeset
|
288 do_tics (axis_obj, plot_stream, ymirror, mono, gnuplot_term); |
6405 | 289 |
10451
348b26872fc8
Fix bug with logscale in combination with colorbar
Petr Mikulik <mikulik@physics.muni.cz>
parents:
10238
diff
changeset
|
290 fputs (plot_stream, "unset logscale;\n"); |
6758 | 291 xlogscale = strcmpi (axis_obj.xscale, "log"); |
10451
348b26872fc8
Fix bug with logscale in combination with colorbar
Petr Mikulik <mikulik@physics.muni.cz>
parents:
10238
diff
changeset
|
292 ylogscale = strcmpi (axis_obj.yscale, "log"); |
348b26872fc8
Fix bug with logscale in combination with colorbar
Petr Mikulik <mikulik@physics.muni.cz>
parents:
10238
diff
changeset
|
293 zlogscale = strcmpi (axis_obj.zscale, "log"); |
6405 | 294 if (xlogscale) |
6809 | 295 fprintf (plot_stream, "set logscale %s;\n", xaxisloc); |
6405 | 296 endif |
297 if (ylogscale) | |
6809 | 298 fprintf (plot_stream, "set logscale %s;\n", yaxisloc); |
6405 | 299 endif |
300 if (zlogscale) | |
301 fputs (plot_stream, "set logscale z;\n"); | |
302 endif | |
303 | |
6758 | 304 xautoscale = strcmpi (axis_obj.xlimmode, "auto"); |
305 yautoscale = strcmpi (axis_obj.ylimmode, "auto"); | |
306 zautoscale = strcmpi (axis_obj.zlimmode, "auto"); | |
7109 | 307 cautoscale = strcmpi (axis_obj.climmode, "auto"); |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
308 cdatadirect = false; |
7930
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
309 truecolor = false; |
6405 | 310 |
8360
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8354
diff
changeset
|
311 fputs (plot_stream, "set clip two;\n"); |
32d9c0299e99
Set gnuplot two point clipping
David Bateman <dbateman@free.fr>
parents:
8354
diff
changeset
|
312 |
6405 | 313 kids = axis_obj.children; |
8915
485eabc0cfec
__go_draw_axes__.m: Preserve the order of axes' children when pruning the handles for the {x,y,z}labels and title.
Ben Abbott <bpabbott@mac.com>
parents:
8909
diff
changeset
|
314 ## Remove the axis labels and title from the children, and |
485eabc0cfec
__go_draw_axes__.m: Preserve the order of axes' children when pruning the handles for the {x,y,z}labels and title.
Ben Abbott <bpabbott@mac.com>
parents:
8909
diff
changeset
|
315 ## preserved the original order. |
485eabc0cfec
__go_draw_axes__.m: Preserve the order of axes' children when pruning the handles for the {x,y,z}labels and title.
Ben Abbott <bpabbott@mac.com>
parents:
8909
diff
changeset
|
316 [jnk, k] = setdiff (kids, [axis_obj.xlabel; axis_obj.ylabel; ... |
485eabc0cfec
__go_draw_axes__.m: Preserve the order of axes' children when pruning the handles for the {x,y,z}labels and title.
Ben Abbott <bpabbott@mac.com>
parents:
8909
diff
changeset
|
317 axis_obj.zlabel; axis_obj.title]); |
485eabc0cfec
__go_draw_axes__.m: Preserve the order of axes' children when pruning the handles for the {x,y,z}labels and title.
Ben Abbott <bpabbott@mac.com>
parents:
8909
diff
changeset
|
318 kids = kids (sort (k)); |
6405 | 319 |
7316 | 320 if (nd == 3) |
321 fputs (plot_stream, "set parametric;\n"); | |
322 fputs (plot_stream, "set style data lines;\n"); | |
323 fputs (plot_stream, "set surface;\n"); | |
324 fputs (plot_stream, "unset contour;\n"); | |
325 endif | |
326 | |
6405 | 327 data_idx = 0; |
328 data = cell (); | |
6464 | 329 is_image_data = []; |
7175 | 330 hidden_removal = NaN; |
7271 | 331 view_map = false; |
6405 | 332 |
7223 | 333 xlim = axis_obj.xlim; |
334 ylim = axis_obj.ylim; | |
335 zlim = axis_obj.zlim; | |
336 clim = axis_obj.clim; | |
6405 | 337 |
7222 | 338 if (! cautoscale && clim(1) == clim(2)) |
339 clim(2)++; | |
7189 | 340 endif |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
341 addedcmap = []; |
7189 | 342 |
6405 | 343 [view_cmd, view_fcn, view_zoom] = image_viewer (); |
344 use_gnuplot_for_images = (ischar (view_fcn) | |
10549 | 345 && strcmpi (view_fcn, "gnuplot_internal")); |
6405 | 346 |
347 ximg_data = {}; | |
348 ximg_data_idx = 0; | |
349 | |
7865
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7726
diff
changeset
|
350 while (! isempty (kids)) |
6405 | 351 |
8344
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8322
diff
changeset
|
352 obj = get (kids(end)); |
b5f10b123440
__go_draw_axes__.m: Correct order for rendering children.
Ben Abbott <bpabbott@mac.com>
parents:
8322
diff
changeset
|
353 kids = kids(1:(end-1)); |
6405 | 354 |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8171
diff
changeset
|
355 if (strcmpi (obj.visible, "off")) |
10549 | 356 continue; |
8052
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8048
diff
changeset
|
357 endif |
961d4c52ffae
Convert stem and stem3 to use stem series objects
David Bateman <dbateman@free.fr>
parents:
8048
diff
changeset
|
358 |
8171
15ffb9836c01
__go_draw_axes__.m: Remove depdenence on gnuplot version.
Ben Abbott <bpabbott@mac.com>
parents:
8166
diff
changeset
|
359 ## Check for facecolor interpolation for surfaces. |
15ffb9836c01
__go_draw_axes__.m: Remove depdenence on gnuplot version.
Ben Abbott <bpabbott@mac.com>
parents:
8166
diff
changeset
|
360 doing_interp_color = ... |
15ffb9836c01
__go_draw_axes__.m: Remove depdenence on gnuplot version.
Ben Abbott <bpabbott@mac.com>
parents:
8166
diff
changeset
|
361 isfield (obj, "facecolor") && strncmp (obj.facecolor, "interp", 6); |
8166
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
362 |
6405 | 363 switch (obj.type) |
10549 | 364 case "image" |
365 img_data = obj.cdata; | |
366 img_xdata = obj.xdata; | |
367 img_ydata = obj.ydata; | |
6405 | 368 |
10549 | 369 if (use_gnuplot_for_images) |
6405 | 370 |
10549 | 371 if (ndims (img_data) == 3) |
372 truecolor = true; | |
373 elseif (strcmpi (obj.cdatamapping, "direct")) | |
374 cdatadirect = true; | |
375 endif | |
376 data_idx++; | |
377 is_image_data(data_idx) = true; | |
378 parametric(data_idx) = false; | |
379 have_cdata(data_idx) = false; | |
380 have_3d_patch(data_idx) = false; | |
6405 | 381 |
10549 | 382 [y_dim, x_dim] = size (img_data(:,:,1)); |
383 if (x_dim > 1) | |
384 dx = abs (img_xdata(2)-img_xdata(1))/(x_dim-1); | |
385 else | |
386 x_dim = 2; | |
387 img_data = [img_data, img_data]; | |
388 dx = abs (img_xdata(2)-img_xdata(1)); | |
389 endif | |
390 if (y_dim > 1) | |
391 dy = abs (img_ydata(2)-img_ydata(1))/(y_dim-1); | |
392 else | |
393 y_dim = 2; | |
394 img_data = [img_data; img_data]; | |
395 dy = abs (img_ydata(2)-img_ydata(1)); | |
396 endif | |
397 x_origin = min (img_xdata); | |
398 y_origin = min (img_ydata); | |
6405 | 399 |
10549 | 400 if (ndims (img_data) == 3) |
401 data{data_idx} = permute (img_data, [3, 1, 2])(:); | |
402 format = "1:2:3"; | |
403 imagetype = "rgbimage"; | |
404 else | |
405 data{data_idx} = img_data(:); | |
406 format = "1"; | |
407 imagetype = "image"; | |
408 endif | |
6405 | 409 |
10549 | 410 titlespec{data_idx} = "title \"\""; |
411 usingclause{data_idx} = sprintf ("binary array=%dx%d scan=yx origin=(%.15g,%.15g) dx=%.15g dy=%.15g using %s", | |
412 x_dim, y_dim, x_origin, y_origin, dx, dy, format); | |
413 withclause{data_idx} = sprintf ("with %s;", imagetype); | |
6405 | 414 |
10549 | 415 else |
416 ximg_data{++ximg_data_idx} = img_data; | |
417 endif | |
6405 | 418 |
10549 | 419 case "line" |
420 if (strncmp (obj.linestyle, "none", 4) | |
421 && (! isfield (obj, "marker") | |
422 || (isfield (obj, "marker") | |
423 && strncmp (obj.marker, "none", 4)))) | |
424 continue; | |
425 endif | |
426 data_idx++; | |
427 is_image_data(data_idx) = false; | |
428 parametric(data_idx) = true; | |
429 have_cdata(data_idx) = false; | |
430 have_3d_patch(data_idx) = false; | |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
431 |
10549 | 432 if (isempty (obj.keylabel)) |
433 titlespec{data_idx} = "title \"\""; | |
434 else | |
435 tmp = undo_string_escapes (__maybe_munge_text__ (enhanced, obj, "keylabel")); | |
436 titlespec{data_idx} = cstrcat ("title \"", tmp, "\""); | |
437 endif | |
438 usingclause{data_idx} = sprintf ("record=%d", numel (obj.xdata)); | |
439 errbars = ""; | |
440 if (nd == 3) | |
441 xdat = obj.xdata(:); | |
442 ydat = obj.ydata(:); | |
443 if (! isempty (obj.zdata)) | |
444 zdat = obj.zdata(:); | |
445 else | |
446 zdat = zeros (size (xdat)); | |
447 endif | |
448 data{data_idx} = [xdat, ydat, zdat]'; | |
449 usingclause{data_idx} = sprintf ("record=%d using ($1):($2):($3)", numel (xdat)); | |
450 ## fputs (plot_stream, "set parametric;\n"); | |
451 else | |
452 xdat = obj.xdata(:); | |
453 ydat = obj.ydata(:); | |
10597
ba346313bdc1
__go_draw_axes__.m: Remove gnuplot errorbar code.
Ben Abbott <bpabbott@mac.com>
parents:
10582
diff
changeset
|
454 data{data_idx} = [xdat, ydat]'; |
ba346313bdc1
__go_draw_axes__.m: Remove gnuplot errorbar code.
Ben Abbott <bpabbott@mac.com>
parents:
10582
diff
changeset
|
455 usingclause{data_idx} = sprintf ("record=%d using ($1):($2) axes %s%s", |
ba346313bdc1
__go_draw_axes__.m: Remove gnuplot errorbar code.
Ben Abbott <bpabbott@mac.com>
parents:
10582
diff
changeset
|
456 rows(xdat), xaxisloc_using, yaxisloc_using); |
10549 | 457 endif |
7510
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7472
diff
changeset
|
458 |
10549 | 459 style = do_linestyle_command (obj, obj.color, data_idx, mono, |
460 plot_stream, errbars); | |
7510
f3e6ada67d9e
improve handling line style for errorbar plots
John W. Eaton <jwe@octave.org>
parents:
7472
diff
changeset
|
461 |
10111
b52cba8be2eb
Fix for markerfacecolor and markeredgecolor properties with unfillable markers like '+'
David Bateman <dbateman@free.fr>
parents:
10089
diff
changeset
|
462 withclause{data_idx} = sprintf ("with %s linestyle %d", |
10549 | 463 style{1}, data_idx); |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
464 |
10549 | 465 if (length (style) > 1) |
466 data_idx++; | |
467 is_image_data(data_idx) = is_image_data(data_idx - 1); | |
468 parametric(data_idx) = parametric(data_idx - 1); | |
469 have_cdata(data_idx) = have_cdata(data_idx - 1); | |
470 have_3d_patch(data_idx) = have_3d_patch(data_idx - 1); | |
471 titlespec{data_idx} = "title \"\""; | |
472 usingclause{data_idx} = usingclause{data_idx - 1}; | |
473 data{data_idx} = data{data_idx - 1}; | |
474 withclause{data_idx} = sprintf ("with %s linestyle %d", | |
475 style{2}, data_idx); | |
476 endif | |
477 if (length (style) > 2) | |
478 data_idx++; | |
479 is_image_data(data_idx) = is_image_data(data_idx - 1); | |
480 parametric(data_idx) = parametric(data_idx - 1); | |
481 have_cdata(data_idx) = have_cdata(data_idx - 1); | |
482 have_3d_patch(data_idx) = have_3d_patch(data_idx - 1); | |
483 titlespec{data_idx} = "title \"\""; | |
484 usingclause{data_idx} = usingclause{data_idx - 1}; | |
485 data{data_idx} = data{data_idx - 1}; | |
486 withclause{data_idx} = sprintf ("with %s linestyle %d", | |
487 style{3}, data_idx); | |
488 endif | |
6405 | 489 |
6790 | 490 case "patch" |
6885 | 491 cmap = parent_figure_obj.colormap; |
10549 | 492 [nr, nc] = size (obj.xdata); |
7189 | 493 |
10549 | 494 if (! isempty (obj.cdata)) |
495 cdat = obj.cdata; | |
496 if (strcmpi (obj.cdatamapping, "direct")) | |
497 cdatadirect = true; | |
498 endif | |
499 else | |
500 cdat = []; | |
501 endif | |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
502 |
10549 | 503 data_3d_idx = NaN; |
504 for i = 1:nc | |
505 xcol = obj.xdata(:,i); | |
506 ycol = obj.ydata(:,i); | |
507 if (nd == 3) | |
508 if (! isempty (obj.zdata)) | |
509 zcol = obj.zdata(:,i); | |
510 else | |
511 zcol = zeros (size (xcol)); | |
512 endif | |
513 endif | |
514 | |
515 if (! isnan (xcol) && ! isnan (ycol)) | |
516 ## Is the patch closed or not | |
517 if (strncmp (obj.facecolor, "none", 4)) | |
518 hidden_removal = false; | |
519 else | |
7170 | 520 |
10549 | 521 if (isnan (hidden_removal)) |
522 hidden_removal = true; | |
523 endif | |
524 if (nd == 3) | |
525 if (numel (xcol) > 3) | |
10635
d1978e7364ad
Print name of function in error() string messages.
Rik <octave@nomad.inbox5.com>
parents:
10597
diff
changeset
|
526 error ("__go_draw_axes__: gnuplot (as of v4.2) only supports 3D filled triangular patches"); |
10549 | 527 else |
528 if (isnan (data_3d_idx)) | |
529 data_idx++; | |
530 data_3d_idx = data_idx; | |
531 is_image_data(data_idx) = false; | |
532 parametric(data_idx) = false; | |
533 have_cdata(data_idx) = true; | |
534 have_3d_patch(data_idx) = true; | |
535 withclause{data_3d_idx} = sprintf ("with pm3d"); | |
536 usingclause{data_3d_idx} = "using 1:2:3:4"; | |
537 data{data_3d_idx} = []; | |
538 endif | |
539 local_idx = data_3d_idx; | |
540 ccdat = NaN; | |
541 endif | |
7170 | 542 else |
10549 | 543 data_idx++; |
544 local_idx = data_idx; | |
545 is_image_data(data_idx) = false; | |
546 parametric(data_idx) = false; | |
547 have_cdata(data_idx) = false; | |
548 have_3d_patch(data_idx) = false; | |
7170 | 549 endif |
550 | |
10549 | 551 if (i > 1 || isempty (obj.keylabel)) |
552 titlespec{local_idx} = "title \"\""; | |
553 else | |
554 tmp = undo_string_escapes (__maybe_munge_text__ (enhanced, obj, "keylabel")); | |
555 titlespec{local_idx} = cstrcat ("title \"", tmp, "\""); | |
556 endif | |
557 if (isfield (obj, "facecolor")) | |
558 if ((strncmp (obj.facecolor, "flat", 4) | |
559 || strncmp (obj.facecolor, "interp", 6)) | |
560 && isfield (obj, "cdata")) | |
561 if (ndims (obj.cdata) == 2 | |
562 && (size (obj.cdata, 2) == nc | |
563 && (size (obj.cdata, 1) == 1 | |
564 || size (obj.cdata, 1) == 3))) | |
565 ccol = cdat (:, i); | |
566 elseif (ndims (obj.cdata) == 2 | |
567 && (size (obj.cdata, 1) == nc | |
568 && (size (obj.cdata, 2) == 1 | |
569 || size (obj.cdata, 2) == 3))) | |
570 ccol = cdat (i, :); | |
571 elseif (ndims (obj.cdata) == 3) | |
572 ccol = permute (cdat (:, i, :), [1, 3, 2]); | |
573 else | |
574 ccol = cdat; | |
575 endif | |
576 if (strncmp (obj.facecolor, "flat", 4)) | |
577 if (numel(ccol) == 3) | |
578 color = ccol; | |
579 elseif (nd == 3 && numel (xcol) == 3) | |
580 ccdat = ccol * ones (3,1); | |
581 else | |
582 r = 1 + round ((size (cmap, 1) - 1) | |
583 * (ccol - clim(1))/(clim(2) - clim(1))); | |
584 r = max (1, min (r, size (cmap, 1))); | |
585 color = cmap(r, :); | |
586 endif | |
587 elseif (strncmp (obj.facecolor, "interp", 6)) | |
588 if (nd == 3 && numel (xcol) == 3) | |
589 ccdat = ccol; | |
590 if (! isvector (ccdat)) | |
591 tmp = rows(cmap) + rows(addedcmap) + ... | |
592 [1 : rows(ccdat)]; | |
593 addedcmap = [addedcmap; ccdat]; | |
594 ccdat = tmp(:); | |
595 else | |
596 ccdat = ccdat(:); | |
597 endif | |
598 else | |
599 warning ("\"interp\" not supported, using 1st entry of cdata"); | |
600 r = 1 + round ((size (cmap, 1) - 1) * ccol(1)); | |
601 r = max (1, min (r, size (cmap, 1))); | |
602 color = cmap(r,:); | |
603 endif | |
604 endif | |
605 elseif (isnumeric (obj.facecolor)) | |
606 color = obj.facecolor; | |
607 else | |
608 color = [0, 1, 0]; | |
609 endif | |
610 else | |
611 color = [0, 1, 0]; | |
612 endif | |
613 | |
614 if (nd == 3 && numel (xcol) == 3) | |
615 if (isnan (ccdat)) | |
616 ccdat = (rows (cmap) + rows(addedcmap) + 1) * ones(3, 1); | |
617 addedcmap = [addedcmap; reshape(color, 1, 3)]; | |
618 endif | |
619 data{data_3d_idx} = [data{data_3d_idx}, ... | |
620 [[xcol; xcol(end)], [ycol; ycol(end)], ... | |
621 [zcol; zcol(end)], [ccdat; ccdat(end)]]']; | |
622 else | |
623 if (mono) | |
624 colorspec = ""; | |
625 elseif (__gnuplot_has_feature__ ("transparent_patches") | |
626 && isscalar (obj.facealpha)) | |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
627 colorspec = sprintf ("lc rgb \"#%02x%02x%02x\" fillstyle transparent solid %f", |
10549 | 628 round (255*color), obj.facealpha); |
629 else | |
630 colorspec = sprintf ("lc rgb \"#%02x%02x%02x\"", | |
631 round (255*color)); | |
632 endif | |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
633 |
10549 | 634 withclause{data_idx} = sprintf ("with filledcurve %s", |
635 colorspec); | |
636 data{data_idx} = [xcol, ycol]'; | |
637 usingclause{data_idx} = sprintf ("record=%d using ($1):($2)", | |
638 numel (xcol)); | |
639 endif | |
640 endif | |
641 endif | |
7170 | 642 |
643 ## patch outline | |
10549 | 644 if (!(strncmp (obj.edgecolor, "none", 4) |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
645 && strncmp (obj.markeredgecolor, "none", 4) |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
646 && strncmp (obj.markerfacecolor, "none", 4))) |
7170 | 647 |
10549 | 648 data_idx++; |
7170 | 649 is_image_data(data_idx) = false; |
650 parametric(data_idx) = false; | |
10549 | 651 have_cdata(data_idx) = false; |
652 have_3d_patch(data_idx) = false; | |
7170 | 653 titlespec{data_idx} = "title \"\""; |
10549 | 654 usingclause{data_idx} = sprintf ("record=%d", numel (obj.xdata)); |
7189 | 655 |
10549 | 656 if (isfield (obj, "markersize")) |
657 mdat = obj.markersize / 3; | |
658 endif | |
7189 | 659 |
660 if (isfield (obj, "edgecolor")) | |
10135
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
661 ## FIXME |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
662 ## This is the wrong thing to do as edgecolor, markeredgecolor |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
663 ## and markerfacecolor can have different values and we should |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
664 ## treat them seperately. However, the below allow the scatter |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
665 ## functions to work as expected, where only one of these values |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
666 ## is set |
10549 | 667 if (strncmp (obj.edgecolor, "none", 4)) |
10135
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
668 if (strncmp (obj.markeredgecolor, "none", 4)) |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
669 ec = obj.markerfacecolor; |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
670 else |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
671 ec = obj.markeredgecolor; |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
672 endif |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
673 else |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
674 ec = obj.edgecolor; |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
675 endif |
4516a0c97ced
Handle linestyleorder. Remove @ markers. Treat edgecolor, markeredgecolor and markerfacecolor correctly in scatter.
David Bateman <dbateman@free.fr>
parents:
10121
diff
changeset
|
676 |
10549 | 677 if ((strncmp (ec, "flat", 4) |
678 || strncmp (ec, "interp", 6)) | |
679 && isfield (obj, "cdata")) | |
680 if (ndims (obj.cdata) == 2 | |
681 && (size (obj.cdata, 2) == nc | |
682 && (size (obj.cdata, 1) == 1 | |
683 || size (obj.cdata, 1) == 3))) | |
684 ccol = cdat (:, i); | |
685 elseif (ndims (obj.cdata) == 2 | |
686 && (size (obj.cdata, 1) == nc | |
687 && (size (obj.cdata, 2) == 1 | |
688 || size (obj.cdata, 2) == 3))) | |
689 ccol = cdat (i, :); | |
690 elseif (ndims (obj.cdata) == 3) | |
691 ccol = permute (cdat (:, i, :), [1, 3, 2]); | |
692 else | |
693 ccol = cdat; | |
694 endif | |
695 if (strncmp (ec, "flat", 4)) | |
696 if (numel(ccol) == 3) | |
697 color = ccol; | |
698 else | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
699 if (isscalar (ccol)) |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
700 ccol = repmat(ccol, numel (xcol), 1); |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
701 endif |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
702 color = "flat"; |
10549 | 703 have_cdata(data_idx) = true; |
704 endif | |
705 elseif (strncmp (ec, "interp", 6)) | |
706 if (numel(ccol) == 3) | |
707 warning ("\"interp\" not supported, using 1st entry of cdata"); | |
708 color = ccol(1,:); | |
709 else | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
710 if (isscalar (ccol)) |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
711 ccol = repmat(ccol, numel (xcol), 1); |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
712 endif |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
713 color = "interp"; |
10549 | 714 have_cdata(data_idx) = true; |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
715 endif |
10549 | 716 endif |
717 elseif (isnumeric (ec)) | |
718 color = ec; | |
719 else | |
720 color = [0, 0, 0]; | |
721 endif | |
7020 | 722 else |
10549 | 723 color = [0, 0, 0]; |
724 endif | |
725 | |
726 if (isfield (obj, "linestyle")) | |
727 switch (obj.linestyle) | |
728 case "-" | |
729 lt = "lt 1"; | |
730 case "--" | |
731 lt = "lt 2"; | |
732 case ":" | |
733 lt = "lt 3"; | |
734 case "-." | |
735 lt = "lt 6"; | |
736 case "none" | |
737 lt = ""; | |
738 otherwise | |
739 lt = ""; | |
740 endswitch | |
741 else | |
742 lt = ""; | |
743 endif | |
744 | |
745 if (isfield (obj, "linewidth")) | |
746 lw = sprintf("linewidth %f", obj.linewidth); | |
747 else | |
748 lw = ""; | |
7020 | 749 endif |
7189 | 750 |
10925
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
751 [pt, pt2] = gnuplot_pointtype (obj); |
7189 | 752 |
10549 | 753 if (mono) |
754 colorspec = ""; | |
755 else | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
756 if (ischar (color)) |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
757 colorspec = "palette"; |
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
758 else |
10549 | 759 colorspec = sprintf ("lc rgb \"#%02x%02x%02x\"", |
760 round (255*color)); | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
761 endif |
10549 | 762 endif |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
763 |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
764 sidx = 1; |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
765 if (isempty (lt)) |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
766 style = ""; |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
767 else |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
768 style = "lines"; |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
769 endif |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
770 tmpwith = {}; |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
771 |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
772 facesame = true; |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
773 if (! isequal (pt, pt2) && isfield (obj, "markerfacecolor") |
10549 | 774 && !strncmp (obj.markerfacecolor, "none", 4)) |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
775 if (strncmp (obj.markerfacecolor, "auto", 4) |
10549 | 776 || ! isnumeric (obj.markerfacecolor) |
777 || (isnumeric (obj.markerfacecolor) | |
778 && isequal (color, obj.markerfacecolor))) | |
779 style = strcat (style, "points"); | |
780 if (isfield (obj, "markersize")) | |
781 if (length (mdat) == nc) | |
782 m = mdat(i); | |
783 else | |
784 m = mdat; | |
785 endif | |
786 ps = sprintf("pointsize %f", m / 3); | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
787 else |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
788 ps = ""; |
10549 | 789 endif |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
790 |
10549 | 791 tmpwith{sidx} = sprintf ("with %s %s %s %s %s %s", |
792 style, lw, pt2, lt, ps, | |
793 colorspec); | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
794 else |
10549 | 795 facesame = false; |
796 if (! isempty (style)) | |
797 tmpwith{sidx} = sprintf ("with %s %s %s %s", | |
798 style, lw, lt, | |
799 colorspec); | |
800 sidx ++; | |
801 endif | |
802 if (isnumeric (obj.markerfacecolor) && ! mono) | |
803 colorspec = sprintf ("lc rgb \"#%02x%02x%02x\"", | |
804 round (255*obj.markerfacecolor)); | |
805 endif | |
806 style = "points"; | |
807 if (isfield (obj, "markersize")) | |
808 if (length (mdat) == nc) | |
809 m = mdat(i); | |
810 else | |
811 m = mdat; | |
812 endif | |
813 ps = sprintf("pointsize %f", m / 3); | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
814 else |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
815 ps = ""; |
10549 | 816 endif |
817 tmpwith{sidx} = sprintf ("with %s %s %s %s %s %s", | |
818 style, lw, pt2, lt, ps, | |
819 colorspec); | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
820 endif |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
821 endif |
6790 | 822 |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
823 if (isfield (obj, "markeredgecolor") |
10549 | 824 && !strncmp (obj.markeredgecolor, "none", 4)) |
10137
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
825 if (facesame && !isempty (pt) |
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
826 && (strncmp (obj.markeredgecolor, "auto", 4) |
10549 | 827 || ! isnumeric (obj.markeredgecolor) |
828 || (isnumeric (obj.markeredgecolor) | |
829 && isequal (color, obj.markeredgecolor)))) | |
830 if (sidx == 1 && ((length (style) == 5 | |
831 && strncmp (style, "lines", 5)) | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
832 || isempty (style))) |
10549 | 833 style = strcat (style, "points"); |
834 if (isfield (obj, "markersize")) | |
835 if (length (mdat) == nc) | |
836 m = mdat(i); | |
837 else | |
838 m = mdat; | |
839 endif | |
840 ps = sprintf("pointsize %f", m / 3); | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
841 else |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
842 ps = ""; |
10549 | 843 endif |
844 tmpwith{sidx} = sprintf ("with %s %s %s %s %s %s", | |
845 style, lw, pt, lt, ps, | |
846 colorspec); | |
847 endif | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
848 else |
10549 | 849 if (!isempty (style)) |
10137
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
850 if (length(tmpwith) < sidx || isempty (tmpwith{sidx})) |
10549 | 851 tmpwith{sidx} = sprintf ("with %s %s %s %s", |
852 style, lw, lt, | |
853 colorspec); | |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
854 endif |
10549 | 855 sidx ++; |
856 endif | |
10137
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
857 |
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
858 if (!isempty (pt)) |
10549 | 859 if (! mono) |
860 if (strncmp (obj.markeredgecolor, "auto", 4)) | |
861 colorspec = sprintf ("lc rgb \"#%02x%02x%02x\"", | |
862 round (255*color)); | |
863 elseif (isnumeric (obj.markeredgecolor) && ! mono) | |
864 colorspec = sprintf ("lc rgb \"#%02x%02x%02x\"", | |
865 round (255*obj.markeredgecolor)); | |
866 endif | |
867 endif | |
868 style = "points"; | |
869 if (isfield (obj, "markersize")) | |
870 if (length (mdat) == nc) | |
871 m = mdat(i); | |
872 else | |
873 m = mdat; | |
874 endif | |
875 ps = sprintf("pointsize %f", m / 3); | |
10137
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
876 else |
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
877 ps = ""; |
10549 | 878 endif |
879 tmpwith{sidx} = sprintf ("with %s %s %s %s %s %s", | |
880 style, lw, pt, lt, ps, | |
881 colorspec); | |
10137
cf6a01e0e93f
Fix unrequested markers for patch objects
David Bateman <dbateman@free.fr>
parents:
10135
diff
changeset
|
882 endif |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
883 endif |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
884 endif |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
885 |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
886 if (isempty (tmpwith)) |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
887 withclause{data_idx} = sprintf ("with %s %s %s %s %s", |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
888 style, lw, pt, lt, |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
889 colorspec); |
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
890 else |
10549 | 891 withclause{data_idx} = tmpwith{1}; |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
892 endif |
10549 | 893 if (nd == 3) |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
894 if (ischar (color)) |
10549 | 895 if (! isnan (xcol) && ! isnan (ycol) && ! isnan (zcol)) |
896 data{data_idx} = [[xcol; xcol(1)], [ycol; ycol(1)], ... | |
897 [zcol; zcol(1)], [ccol; ccol(1)]]'; | |
898 else | |
899 data{data_idx} = [xcol, ycol, zcol, ccol]'; | |
900 endif | |
901 usingclause{data_idx} = sprintf ("record=%d using ($1):($2):($3):($4)", columns (data{data_idx})); | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
902 else |
10549 | 903 if (! isnan (xcol) && ! isnan (ycol) && ! isnan (zcol)) |
904 data{data_idx} = [[xcol; xcol(1)], [ycol; ycol(1)], ... | |
905 [zcol; zcol(1)]]'; | |
906 else | |
907 data{data_idx} = [xcol, ycol, zcol]'; | |
908 endif | |
909 usingclause{data_idx} = sprintf ("record=%d using ($1):($2):($3)", columns (data{data_idx})); | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
910 endif |
10549 | 911 else |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
912 if (ischar (color)) |
10549 | 913 if (! isnan (xcol) && ! isnan (ycol)) |
914 data{data_idx} = [[xcol; xcol(1)], [ycol; ycol(1)], ... | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
915 [ccol; ccol(1)]]'; |
10549 | 916 else |
917 data{data_idx} = [xcol, ycol, ccol]'; | |
918 endif | |
919 usingclause{data_idx} = sprintf ("record=%d using ($1):($2):($3)", columns (data{data_idx})); | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
920 else |
10549 | 921 if (! isnan (xcol) && ! isnan (ycol)) |
922 data{data_idx} = [[xcol; xcol(1)], [ycol; ycol(1)]]'; | |
923 else | |
924 data{data_idx} = [xcol, ycol]'; | |
925 endif | |
926 usingclause{data_idx} = sprintf ("record=%d using ($1):($2)", columns (data{data_idx})); | |
10236
8e58c402ebb2
Accelerate colormap colored scatter plots
David Bateman <dbateman@free.fr>
parents:
10226
diff
changeset
|
927 endif |
10549 | 928 endif |
10089
dd70982c81a3
Allow markerfacecolor and markeredgecolor to be set and used for patch objects
David Bateman <dbateman@free.fr>
parents:
9793
diff
changeset
|
929 |
10549 | 930 if (length (tmpwith) > 1) |
931 data_idx++; | |
932 is_image_data(data_idx) = is_image_data(data_idx - 1); | |
933 parametric(data_idx) = parametric(data_idx - 1); | |
934 have_cdata(data_idx) = have_cdata(data_idx - 1); | |
935 have_3d_patch(data_idx) = have_3d_patch(data_idx - 1); | |
936 titlespec{data_idx} = "title \"\""; | |
937 usingclause{data_idx} = usingclause{data_idx - 1}; | |
938 data{data_idx} = data{data_idx - 1}; | |
939 withclause{data_idx} = tmpwith{2}; | |
940 endif | |
941 if (length (tmpwith) > 2) | |
942 data_idx++; | |
943 is_image_data(data_idx) = is_image_data(data_idx - 1); | |
944 parametric(data_idx) = parametric(data_idx - 1); | |
945 have_cdata(data_idx) = have_cdata(data_idx - 1); | |
946 have_3d_patch(data_idx) = have_3d_patch(data_idx - 1); | |
947 titlespec{data_idx} = "title \"\""; | |
948 usingclause{data_idx} = usingclause{data_idx - 1}; | |
949 data{data_idx} = data{data_idx - 1}; | |
950 withclause{data_idx} = tmpwith{3}; | |
951 endif | |
952 endif | |
953 endfor | |
6790 | 954 |
10549 | 955 case "surface" |
956 view_map = true; | |
7110 | 957 if (! (strncmp (obj.edgecolor, "none", 4) |
10549 | 958 && strncmp (obj.facecolor, "none", 4))) |
959 data_idx++; | |
960 is_image_data(data_idx) = false; | |
961 parametric(data_idx) = false; | |
962 have_cdata(data_idx) = true; | |
963 have_3d_patch(data_idx) = false; | |
964 style = do_linestyle_command (obj, obj.edgecolor, | |
965 data_idx, mono, | |
966 plot_stream); | |
967 if (isempty (obj.keylabel)) | |
968 titlespec{data_idx} = "title \"\""; | |
969 else | |
970 tmp = undo_string_escapes (__maybe_munge_text__ (enhanced, obj, "keylabel")); | |
971 titlespec{data_idx} = cstrcat ("title \"", tmp, "\""); | |
972 endif | |
973 withclause{data_idx} = sprintf ("with pm3d linestyle %d", | |
974 data_idx); | |
975 withpm3d = true; | |
976 pm3didx = data_idx; | |
7109 | 977 |
10549 | 978 xdat = obj.xdata; |
979 ydat = obj.ydata; | |
980 zdat = obj.zdata; | |
981 cdat = obj.cdata; | |
7110 | 982 |
10549 | 983 err = false; |
7109 | 984 if (! size_equal(zdat, cdat)) |
6405 | 985 err = true; |
7109 | 986 endif |
10549 | 987 if (isvector (xdat) && isvector (ydat) && ismatrix (zdat)) |
988 if (rows (zdat) == length (ydat) | |
989 && columns (zdat) == length (xdat)) | |
7109 | 990 [xdat, ydat] = meshgrid (xdat, ydat); |
10549 | 991 else |
7109 | 992 err = true; |
10549 | 993 endif |
994 elseif (ismatrix (xdat) && ismatrix (ydat) && ismatrix (zdat)) | |
995 if (! size_equal (xdat, ydat, zdat)) | |
7109 | 996 err = true; |
10549 | 997 endif |
998 else | |
999 err = true; | |
1000 endif | |
1001 if (err) | |
1002 error ("__go_draw_axes__: invalid grid data"); | |
1003 endif | |
1004 xlen = columns (zdat); | |
1005 ylen = rows (zdat); | |
1006 if (xlen == columns (xdat) && xlen == columns (ydat) | |
1007 && ylen == rows (xdat) && ylen == rows (ydat)) | |
1008 len = 4 * xlen; | |
1009 zz = zeros (ylen, len); | |
1010 k = 1; | |
1011 for kk = 1:4:len | |
1012 zz(:,kk) = xdat(:,k); | |
1013 zz(:,kk+1) = ydat(:,k); | |
1014 zz(:,kk+2) = zdat(:,k); | |
1015 zz(:,kk+3) = cdat(:,k); | |
1016 k++; | |
1017 endfor | |
1018 data{data_idx} = zz.'; | |
1019 endif | |
7109 | 1020 |
10549 | 1021 if (doing_interp_color) |
1022 interp_str = "interpolate 0, 0"; | |
1023 else | |
1024 ## No interpolation of facecolors. | |
1025 interp_str = ""; | |
1026 endif | |
1027 usingclause{data_idx} = sprintf ("record=%dx%d using ($1):($2):($3):($4)", ylen, xlen); | |
8166
4024fc815f8d
__go_draw_axes__.m: Fix interpolation of facecolors.
Ben Abbott <bpabbott@mac.com>
parents:
8164
diff
changeset
|
1028 |
7119 | 1029 flat_interp_face = (strncmp (obj.facecolor, "flat", 4) |
10549 | 1030 || strncmp (obj.facecolor, "interp", 6)); |
7119 | 1031 flat_interp_edge = (strncmp (obj.edgecolor, "flat", 4) |
10549 | 1032 || strncmp (obj.edgecolor, "interp", 6)); |
7154 | 1033 |
10549 | 1034 facecolor_none_or_white = (strncmp (obj.facecolor, "none", 4) |
1035 || (isnumeric (obj.facecolor) | |
1036 && all (obj.facecolor == 1))); | |
1037 hidden_removal = false; | |
7592 | 1038 fputs (plot_stream, "set style increment default;\n"); |
7318 | 1039 if (flat_interp_edge && facecolor_none_or_white) |
10549 | 1040 withpm3d = false; |
1041 withclause{data_idx} = sprintf ("with %s palette", style {1}); | |
1042 fputs (plot_stream, "unset pm3d\n"); | |
1043 if (all (obj.facecolor == 1)) | |
7592 | 1044 hidden_removal = true; |
7582 | 1045 endif |
10549 | 1046 elseif (facecolor_none_or_white) |
1047 if (all (obj.facecolor == 1)) | |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1048 hidden_removal = true; |
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1049 endif |
10549 | 1050 fputs(plot_stream,"unset pm3d;\n"); |
1051 fputs(plot_stream,"set style increment user;\n"); | |
1052 withpm3d = false; | |
1053 withclause{data_idx} = sprintf("with %s linestyle %d", | |
1054 style{1}, data_idx); | |
1055 fputs (plot_stream, "unset pm3d\n"); | |
7119 | 1056 endif |
7109 | 1057 |
10549 | 1058 if (doing_interp_color) |
1059 ## "depthorder" interferes with interpolation of colors. | |
1060 dord = "scansautomatic"; | |
1061 else | |
1062 dord = "depthorder"; | |
1063 endif | |
7109 | 1064 |
10549 | 1065 if (flat_interp_face && strncmp (obj.edgecolor, "flat", 4)) |
7318 | 1066 fprintf (plot_stream, "set pm3d explicit at s %s %s corners2color c3;\n", |
10549 | 1067 interp_str, dord); |
7318 | 1068 elseif (!facecolor_none_or_white) |
7119 | 1069 if (strncmp (obj.edgecolor, "none", 4)) |
8645 | 1070 if (__gnuplot_has_feature__ ("transparent_surface") |
1071 && isscalar (obj.facealpha)) | |
1072 fprintf (plot_stream, | |
1073 "set style fill transparent solid %f;\n", | |
1074 obj.facealpha); | |
1075 endif | |
7318 | 1076 fprintf (plot_stream, "set pm3d explicit at s %s corners2color c3;\n", |
10549 | 1077 interp_str, dord); |
7109 | 1078 else |
7318 | 1079 fprintf (plot_stream, "set pm3d explicit at s hidden3d %d %s %s corners2color c3;\n", |
10549 | 1080 data_idx, interp_str, dord); |
7119 | 1081 |
8645 | 1082 if (__gnuplot_has_feature__ ("transparent_surface") |
1083 && isscalar (obj.facealpha)) | |
1084 fprintf (plot_stream, | |
1085 "set style fill transparent solid %f;\n", | |
1086 obj.facealpha); | |
1087 endif | |
7109 | 1088 endif |
7119 | 1089 endif |
10549 | 1090 |
1091 zz = []; | |
1092 if (length (style) > 1) | |
1093 len = 3 * xlen; | |
1094 zz = zeros (ylen, len); | |
1095 k = 1; | |
1096 for kk = 1:3:len | |
1097 zz(:,kk) = xdat(:,k); | |
1098 zz(:,kk+1) = ydat(:,k); | |
1099 zz(:,kk+2) = zdat(:,k); | |
1100 k++; | |
1101 endfor | |
1102 zz = zz.'; | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1103 |
10549 | 1104 data_idx++; |
1105 is_image_data(data_idx) = is_image_data(data_idx - 1); | |
1106 parametric(data_idx) = parametric(data_idx - 1); | |
1107 have_cdata(data_idx) = false; | |
1108 have_3d_patch(data_idx) = have_3d_patch(data_idx - 1); | |
1109 titlespec{data_idx} = "title \"\""; | |
1110 usingclause{data_idx} = sprintf ("record=%dx%d using ($1):($2):($3)", ylen, xlen); | |
1111 data{data_idx} = zz; | |
1112 withclause{data_idx} = sprintf ("with %s linestyle %d", | |
1113 style{2}, data_idx); | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1114 |
10549 | 1115 endif |
1116 if (length (style) > 2) | |
1117 data_idx++; | |
1118 is_image_data(data_idx) = is_image_data(data_idx - 1); | |
1119 parametric(data_idx) = parametric(data_idx - 1); | |
1120 have_cdata(data_idx) = false; | |
1121 have_3d_patch(data_idx) = have_3d_patch(data_idx - 1); | |
1122 titlespec{data_idx} = "title \"\""; | |
1123 usingclause{data_idx} = sprintf ("record=%dx%d using ($1):($2):($3)", ylen, xlen); | |
1124 data{data_idx} = zz; | |
1125 withclause{data_idx} = sprintf ("with %s linestyle %d", | |
1126 style{3}, data_idx); | |
1127 endif | |
1128 if (withpm3d && strncmp (style {1}, "linespoints", 11)) | |
1129 if (isempty(zz)) | |
1130 len = 3 * xlen; | |
1131 zz = zeros (ylen, len); | |
1132 k = 1; | |
1133 for kk = 1:3:len | |
1134 zz(:,kk) = xdat(:,k); | |
1135 zz(:,kk+1) = ydat(:,k); | |
1136 zz(:,kk+2) = zdat(:,k); | |
1137 k++; | |
1138 endfor | |
1139 zz = zz.'; | |
1140 endif | |
1141 data_idx++; | |
1142 is_image_data(data_idx) = is_image_data(data_idx - 1); | |
1143 parametric(data_idx) = parametric(data_idx - 1); | |
1144 have_cdata(data_idx) = false; | |
1145 have_3d_patch(data_idx) = have_3d_patch(data_idx - 1); | |
1146 titlespec{data_idx} = "title \"\""; | |
1147 usingclause{data_idx} = sprintf ("record=%dx%d using ($1):($2):($3)", ylen, xlen); | |
1148 data{data_idx} = zz; | |
1149 withclause{data_idx} = sprintf ("with points linestyle %d", | |
1150 pm3didx); | |
1151 endif | |
1152 endif | |
6405 | 1153 |
10549 | 1154 case "text" |
1155 [label, f, s] = __maybe_munge_text__ (enhanced, obj, "string"); | |
1156 fontspec = create_fontspec (f, s, gnuplot_term); | |
1157 lpos = obj.position; | |
1158 halign = obj.horizontalalignment; | |
1159 angle = obj.rotation; | |
6752 | 1160 units = obj.units; |
10549 | 1161 color = obj.color; |
6758 | 1162 if (strcmpi (units, "normalized")) |
6752 | 1163 units = "graph"; |
10912
9abc67b4bd4f
__go_draw_axes__.m: For yaxislocation == 'right' associate text position with 'second' coordinate system.
Ben Abbott <bpabbott@mac.com>
parents:
10911
diff
changeset
|
1164 elseif (strcmp (axis_obj.yaxislocation, "right") |
9abc67b4bd4f
__go_draw_axes__.m: For yaxislocation == 'right' associate text position with 'second' coordinate system.
Ben Abbott <bpabbott@mac.com>
parents:
10911
diff
changeset
|
1165 && strcmp (units, "data")) |
9abc67b4bd4f
__go_draw_axes__.m: For yaxislocation == 'right' associate text position with 'second' coordinate system.
Ben Abbott <bpabbott@mac.com>
parents:
10911
diff
changeset
|
1166 units = "second"; |
6752 | 1167 else |
1168 units = ""; | |
1169 endif | |
10549 | 1170 |
1171 if (isnumeric (color)) | |
1172 colorspec = get_text_colorspec (color, mono); | |
1173 endif | |
6829 | 1174 |
10549 | 1175 if (nd == 3) |
1176 fprintf (plot_stream, | |
1177 "set label \"%s\" at %s %.15g,%.15g,%.15g %s rotate by %f %s %s front %s;\n", | |
1178 undo_string_escapes (label), units, lpos(1), | |
1179 lpos(2), lpos(3), halign, angle, fontspec, | |
1180 __do_enhanced_option__ (enhanced, obj), colorspec); | |
1181 else | |
1182 fprintf (plot_stream, | |
1183 "set label \"%s\" at %s %.15g,%.15g %s rotate by %f %s %s front %s;\n", | |
1184 undo_string_escapes (label), units, | |
1185 lpos(1), lpos(2), halign, angle, fontspec, | |
1186 __do_enhanced_option__ (enhanced, obj), colorspec); | |
1187 endif | |
6405 | 1188 |
7865
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7726
diff
changeset
|
1189 case "hggroup" |
10549 | 1190 ## Push group children into the kid list. |
1191 if (isempty (kids)) | |
1192 kids = obj.children; | |
1193 elseif (! isempty (obj.children)) | |
1194 kids = [kids; obj.children]; | |
1195 endif | |
7865
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7726
diff
changeset
|
1196 |
10549 | 1197 otherwise |
1198 error ("__go_draw_axes__: unknown object class, %s", | |
1199 obj.type); | |
6405 | 1200 endswitch |
1201 | |
7865
b74039822fd2
Add support for hggroup
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7726
diff
changeset
|
1202 endwhile |
6405 | 1203 |
7692
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7676
diff
changeset
|
1204 ## This is need to prevent warnings for rotations in 3D plots, while |
8506 | 1205 ## allowing colorbars with contours. |
8042
827d4f24ec6c
Fix for meshed surfaces with more than one oobject per plot
David Bateman <dbateman@free.fr>
parents:
7930
diff
changeset
|
1206 if (nd == 2 || (data_idx > 1 && !view_map)) |
7692
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7676
diff
changeset
|
1207 fputs (plot_stream, "set pm3d implicit;\n"); |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7676
diff
changeset
|
1208 else |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7676
diff
changeset
|
1209 fputs (plot_stream, "set pm3d explicit;\n"); |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7676
diff
changeset
|
1210 endif |
da1f4bc7cbe8
Conditionally set 'set pm3d implicit'
David Bateman <dbateman@free.fr>
parents:
7676
diff
changeset
|
1211 |
7175 | 1212 if (isnan(hidden_removal) || hidden_removal) |
7149 | 1213 fputs (plot_stream, "set hidden3d;\n"); |
1214 else | |
1215 fputs (plot_stream, "unset hidden3d;\n"); | |
1216 endif | |
1217 | |
8048
2f7ff06c0c7b
__go_draw_axes__.m (__gnuplot_write_data__): write "Inf Inf\n" if all data pairs contain NaN values
John W. Eaton <jwe@octave.org>
parents:
8042
diff
changeset
|
1218 have_data = (! (isempty (data) || all (cellfun (@isempty, data)))); |
6405 | 1219 |
8208 | 1220 ## Note we don't use the [xy]2range of gnuplot as we don't use the |
8506 | 1221 ## dual axis plotting features of gnuplot. |
7222 | 1222 if (isempty (xlim)) |
1223 return; | |
6405 | 1224 endif |
6758 | 1225 if (strcmpi (axis_obj.xdir, "reverse")) |
6405 | 1226 xdir = "reverse"; |
1227 else | |
1228 xdir = "noreverse"; | |
1229 endif | |
8208 | 1230 fprintf (plot_stream, "set xrange [%.15e:%.15e] %s;\n", xlim, xdir); |
9281
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1231 if (strcmpi (axis_obj.xaxislocation, "top")) |
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1232 fprintf (plot_stream, "set x2range [%.15e:%.15e] %s;\n", xlim, xdir); |
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1233 endif |
6405 | 1234 |
7222 | 1235 if (isempty (ylim)) |
1236 return; | |
6405 | 1237 endif |
6758 | 1238 if (strcmpi (axis_obj.ydir, "reverse")) |
6405 | 1239 ydir = "reverse"; |
1240 else | |
1241 ydir = "noreverse"; | |
1242 endif | |
8208 | 1243 fprintf (plot_stream, "set yrange [%.15e:%.15e] %s;\n", ylim, ydir); |
9281
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1244 if (strcmpi (axis_obj.yaxislocation, "right")) |
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1245 fprintf (plot_stream, "set y2range [%.15e:%.15e] %s;\n", ylim, ydir); |
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1246 endif |
6405 | 1247 |
7119 | 1248 if (nd == 3) |
7222 | 1249 if (isempty (zlim)) |
10549 | 1250 return; |
6405 | 1251 endif |
6758 | 1252 if (strcmpi (axis_obj.zdir, "reverse")) |
10549 | 1253 zdir = "reverse"; |
6405 | 1254 else |
10549 | 1255 zdir = "noreverse"; |
6405 | 1256 endif |
8171
15ffb9836c01
__go_draw_axes__.m: Remove depdenence on gnuplot version.
Ben Abbott <bpabbott@mac.com>
parents:
8166
diff
changeset
|
1257 fprintf (plot_stream, "set zrange [%.15e:%.15e] %s;\n", zlim, zdir); |
6405 | 1258 endif |
7110 | 1259 |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1260 cmap = parent_figure_obj.colormap; |
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1261 cmap_sz = rows(cmap); |
7189 | 1262 if (! any (isinf (clim))) |
7930
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1263 if (truecolor || ! cdatadirect) |
10549 | 1264 if (rows(addedcmap) > 0) |
1265 for i = 1:data_idx | |
1266 if (have_3d_patch(i)) | |
1267 data{i}(end,:) = clim(2) * (data{i}(end, :) - 0.5) / cmap_sz; | |
1268 endif | |
1269 endfor | |
1270 fprintf (plot_stream, "set cbrange [%g:%g];\n", clim(1), clim(2) * | |
1271 (cmap_sz + rows(addedcmap)) / cmap_sz); | |
1272 else | |
1273 fprintf (plot_stream, "set cbrange [%g:%g];\n", clim); | |
1274 endif | |
7930
1f6eb3de1c4e
__img__.m, imshow.m, __go_draw_axes__.m: improve handling of truecolor images
John W. Eaton <jwe@octave.org>
parents:
7873
diff
changeset
|
1275 else |
10549 | 1276 fprintf (plot_stream, "set cbrange [1:%d];\n", cmap_sz + |
1277 rows (addedcmap)); | |
7471
86ba621332ff
Implement cdatamapping and respect to to allow correct image/imagesc rendering
David Bateman <dbateman@free.fr>
parents:
7462
diff
changeset
|
1278 endif |
7189 | 1279 endif |
1280 | |
6758 | 1281 if (strcmpi (axis_obj.box, "on")) |
7119 | 1282 if (nd == 3) |
10549 | 1283 fputs (plot_stream, "set border 4095;\n"); |
6405 | 1284 else |
10549 | 1285 fputs (plot_stream, "set border 431;\n"); |
6405 | 1286 endif |
1287 else | |
7119 | 1288 if (nd == 3) |
10549 | 1289 fputs (plot_stream, "set border 895;\n"); |
6405 | 1290 else |
10549 | 1291 if (strcmpi (axis_obj.yaxislocation, "right")) |
1292 fprintf (plot_stream, "unset ytics; set y2tics %s nomirror\n", | |
1293 axis_obj.tickdir); | |
1294 if (strcmpi (axis_obj.xaxislocation, "top")) | |
1295 fprintf (plot_stream, "unset xtics; set x2tics %s nomirror\n", | |
1296 axis_obj.tickdir); | |
1297 fputs (plot_stream, "set border 12;\n"); | |
1298 else | |
1299 fprintf (plot_stream, "unset x2tics; set xtics %s nomirror\n", | |
1300 axis_obj.tickdir); | |
1301 fputs (plot_stream, "set border 9;\n"); | |
1302 endif | |
1303 else | |
1304 fprintf (plot_stream, "unset y2tics; set ytics %s nomirror\n", | |
1305 axis_obj.tickdir); | |
1306 if (strcmpi (axis_obj.xaxislocation, "top")) | |
1307 fprintf (plot_stream, "unset xtics; set x2tics %s nomirror\n", | |
1308 axis_obj.tickdir); | |
1309 fputs (plot_stream, "set border 6;\n"); | |
1310 else | |
1311 fprintf (plot_stream, "unset x2tics; set xtics %s nomirror\n", | |
1312 axis_obj.tickdir); | |
1313 fputs (plot_stream, "set border 3;\n"); | |
1314 endif | |
1315 endif | |
6405 | 1316 endif |
1317 endif | |
1318 | |
7060 | 1319 if (strcmpi (axis_obj.visible, "off")) |
1320 fputs (plot_stream, "unset border; unset tics\n"); | |
7565
1e6443ff960f
handle axes linewidth property
John W. Eaton <jwe@octave.org>
parents:
7564
diff
changeset
|
1321 else |
1e6443ff960f
handle axes linewidth property
John W. Eaton <jwe@octave.org>
parents:
7564
diff
changeset
|
1322 fprintf (plot_stream, "set border lw %f;\n", axis_obj.linewidth); |
7060 | 1323 endif |
1324 | |
6758 | 1325 if (strcmpi (axis_obj.key, "on")) |
1326 if (strcmpi (axis_obj.keybox, "on")) | |
10549 | 1327 box = "box"; |
6405 | 1328 else |
10549 | 1329 box = "nobox"; |
6405 | 1330 endif |
8291
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
1331 if (strcmpi (axis_obj.keyreverse, "on")) |
10549 | 1332 reverse = "reverse"; |
8291
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
1333 else |
10549 | 1334 reverse = "noreverse"; |
8291
53f35799b235
Add support for left/right argument to the legend function
David Bateman <dbateman@free.fr>
parents:
8242
diff
changeset
|
1335 endif |
6405 | 1336 inout = "inside"; |
6977 | 1337 keypos = axis_obj.keypos; |
1338 if (ischar (keypos)) | |
10549 | 1339 keypos = lower (keypos); |
1340 keyout = findstr (keypos, "outside"); | |
1341 if (! isempty (keyout)) | |
1342 inout = "outside"; | |
1343 keypos = keypos(1:keyout-1); | |
1344 endif | |
6977 | 1345 endif |
1346 switch (keypos) | |
10549 | 1347 case -1 |
1348 pos = "right top"; | |
1349 inout = "outside"; | |
1350 case 1 | |
1351 pos = "right top"; | |
1352 case 2 | |
1353 pos = "left top"; | |
1354 case 3 | |
1355 pos = "left bottom"; | |
1356 case {4, 0} | |
1357 pos = "right bottom"; | |
1358 case "north" | |
1359 pos = "center top"; | |
1360 case "south" | |
1361 pos = "center bottom"; | |
1362 case "east" | |
1363 pos = "right center"; | |
1364 case "west" | |
1365 pos = "left center"; | |
1366 case "northeast" | |
1367 pos = "right top"; | |
1368 case "northwest" | |
1369 pos = "left top"; | |
1370 case "southeast" | |
1371 pos = "right bottom"; | |
1372 case "southwest" | |
1373 pos = "left bottom"; | |
1374 case "best" | |
1375 pos = ""; | |
1376 warning ("legend: 'Best' not yet implemented for location specifier.\n"); | |
1377 ## Least conflict with data in plot. | |
1378 ## Least unused space outside plot. | |
1379 otherwise | |
1380 pos = ""; | |
6405 | 1381 endswitch |
9191
ad33527d2e51
Have 'legend' inherit font properties from the parent axis.
Ben Abbott <bpabbott@mac.com>
parents:
9110
diff
changeset
|
1382 if (__gnuplot_has_feature__ ("key_has_font_properties")) |
9257
ab952265ad06
__go_draw_axes__.m: Properly render TeX symbols for x11.
Ben Abbott <bpabbott@mac.com>
parents:
9191
diff
changeset
|
1383 fontspec = create_fontspec (axis_obj.fontname, axis_obj.fontsize, gnuplot_term); |
9191
ad33527d2e51
Have 'legend' inherit font properties from the parent axis.
Ben Abbott <bpabbott@mac.com>
parents:
9110
diff
changeset
|
1384 else |
10549 | 1385 fontspec = ""; |
9191
ad33527d2e51
Have 'legend' inherit font properties from the parent axis.
Ben Abbott <bpabbott@mac.com>
parents:
9110
diff
changeset
|
1386 endif |
ad33527d2e51
Have 'legend' inherit font properties from the parent axis.
Ben Abbott <bpabbott@mac.com>
parents:
9110
diff
changeset
|
1387 fprintf (plot_stream, "set key %s %s %s %s %s;\n", inout, pos, box, |
ad33527d2e51
Have 'legend' inherit font properties from the parent axis.
Ben Abbott <bpabbott@mac.com>
parents:
9110
diff
changeset
|
1388 reverse, fontspec); |
6405 | 1389 else |
1390 fputs (plot_stream, "unset key;\n"); | |
1391 endif | |
1392 | |
1393 fputs (plot_stream, "set style data lines;\n"); | |
1394 | |
1395 if (! use_gnuplot_for_images) | |
1396 for i = 1:ximg_data_idx | |
10549 | 1397 view_fcn (xlim, ylim, ximg_data{i}, view_zoom, view_cmd); |
6405 | 1398 endfor |
1399 endif | |
1400 | |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
1401 cmap = [cmap; addedcmap]; |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
1402 cmap_sz = cmap_sz + rows(addedcmap); |
7189 | 1403 if (length(cmap) > 0) |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1404 fprintf (plot_stream, |
10549 | 1405 "set palette positive color model RGB maxcolors %i;\n", |
1406 cmap_sz); | |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1407 fprintf (plot_stream, |
10549 | 1408 "set palette file \"-\" binary record=%d using 1:2:3:4;\n", |
1409 cmap_sz); | |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1410 fwrite (plot_stream, [1:cmap_sz; cmap.'], "float32"); |
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1411 fwrite (plot_stream, "\n"); |
7189 | 1412 endif |
8208 | 1413 |
1414 fputs (plot_stream, "unset colorbox;\n"); | |
7189 | 1415 |
6405 | 1416 if (have_data) |
1417 if (nd == 2) | |
10549 | 1418 plot_cmd = "plot"; |
6405 | 1419 else |
10549 | 1420 plot_cmd = "splot"; |
1421 rot_x = 90 - axis_obj.view(2); | |
1422 rot_z = axis_obj.view(1); | |
1423 while (rot_z < 0) | |
1424 rot_z += 360; | |
1425 endwhile | |
1426 fputs (plot_stream, "set ticslevel 0;\n"); | |
1427 if (view_map && rot_x == 0 && rot_z == 0) | |
1428 fputs (plot_stream, "set view map;\n"); | |
1429 else | |
1430 fprintf (plot_stream, "set view %.15g, %.15g;\n", rot_x, rot_z); | |
1431 endif | |
6405 | 1432 endif |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
1433 if (have_3d_patch (1)) |
10549 | 1434 fputs (plot_stream, "set pm3d depthorder\n"); |
1435 fprintf (plot_stream, "%s \"-\" %s %s %s \\\n", plot_cmd, | |
1436 usingclause{1}, titlespec{1}, withclause{1}); | |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
1437 elseif (is_image_data (1)) |
10549 | 1438 fprintf (plot_stream, "%s \"-\" %s %s %s \\\n", plot_cmd, |
1439 usingclause{1}, titlespec{1}, withclause{1}); | |
8226
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
1440 else |
10549 | 1441 fprintf (plot_stream, "%s \"-\" binary format='%%float64' %s %s %s \\\n", plot_cmd, |
1442 usingclause{1}, titlespec{1}, withclause{1}); | |
8226
50fa927b4e49
Fix for images with new gnuplot/binary transfer code
David Bateman <dbateman@free.fr>
parents:
8222
diff
changeset
|
1443 endif |
6405 | 1444 for i = 2:data_idx |
10549 | 1445 if (have_3d_patch (i)) |
1446 fprintf (plot_stream, ", \"-\" %s %s %s \\\n", | |
1447 usingclause{i}, titlespec{i}, withclause{i}); | |
1448 elseif (is_image_data (i)) | |
1449 if (! is_image_data (i-1)) | |
1450 fputs (plot_stream, "; "); | |
10528
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1451 if (bg_is_set) |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1452 fputs (plot_stream, "unset obj 1; \\\n"); |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1453 bg_is_set = false; |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1454 endif |
10549 | 1455 endif |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9098
diff
changeset
|
1456 fprintf (plot_stream, "%s \"-\" %s %s %s \\\n", plot_cmd, |
10549 | 1457 usingclause{i}, titlespec{i}, withclause{i}); |
1458 elseif (is_image_data (i-1)) | |
10528
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1459 if (bg_is_set) |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1460 fputs (plot_stream, "unset obj 1; \\\n"); |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1461 bg_is_set = false; |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1462 endif |
10549 | 1463 fprintf (plot_stream, "%s \"-\" binary format='%%float64' %s %s %s \\\n", plot_cmd, |
1464 usingclause{i}, titlespec{i}, withclause{i}); | |
1465 else | |
1466 fprintf (plot_stream, ", \"-\" binary format='%%float64' %s %s %s \\\n", | |
1467 usingclause{i}, titlespec{i}, withclause{i}); | |
1468 endif | |
6405 | 1469 endfor |
1470 fputs (plot_stream, ";\n"); | |
1471 for i = 1:data_idx | |
10549 | 1472 if (have_3d_patch (i)) |
1473 ## Can't write 3d patch data as binary as can't plot more than | |
1474 ## a single patch at a time and have to plot all patches together | |
1475 ## so that the gnuplot depth ordering is done correctly | |
1476 for j = 1 : 4 : columns(data{i}) | |
1477 if (j != 1) | |
1478 fputs (plot_stream, "\n\n"); | |
1479 endif | |
1480 fprintf (plot_stream, "%.15g %.15g %.15g %.15g\n", data{i}(:,j).'); | |
1481 fprintf (plot_stream, "%.15g %.15g %.15g %.15g\n\n", data{i}(:,j+1).'); | |
1482 fprintf (plot_stream, "%.15g %.15g %.15g %.15g\n", data{i}(:,j+2).'); | |
1483 fprintf (plot_stream, "%.15g %.15g %.15g %.15g\n", data{i}(:,j+3).'); | |
1484 endfor | |
1485 fputs (plot_stream, "e\n"); | |
1486 elseif (is_image_data(i)) | |
1487 fwrite (plot_stream, data{i}, "float32"); | |
1488 else | |
1489 __gnuplot_write_data__ (plot_stream, data{i}, nd, parametric(i), | |
1490 have_cdata(i)); | |
1491 endif | |
6405 | 1492 endfor |
6431 | 1493 else |
1494 fputs (plot_stream, "plot \"-\";\nInf Inf\ne\n"); | |
6405 | 1495 endif |
1496 | |
8506 | 1497 ## Needed to allow mouse rotation with pcolor. |
7271 | 1498 if (view_map) |
1499 fputs (plot_stream, "unset view;\n"); | |
1500 endif | |
10528
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1501 |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1502 if (bg_is_set) |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1503 fputs (plot_stream, "unset obj 1;\n"); |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1504 bg_is_set = false; |
6a2e4e464d38
Unset figure color in __go_draw_axes__ (partial fix for bug #29060)
David Bateman <dbateman@free.fr>
parents:
10451
diff
changeset
|
1505 endif |
7271 | 1506 |
6405 | 1507 fflush (plot_stream); |
1508 | |
1509 else | |
1510 print_usage (); | |
7109 | 1511 endif |
6405 | 1512 |
1513 endfunction | |
1514 | |
9257
ab952265ad06
__go_draw_axes__.m: Properly render TeX symbols for x11.
Ben Abbott <bpabbott@mac.com>
parents:
9191
diff
changeset
|
1515 function fontspec = create_fontspec (f, s, gp_term) |
9468
5af462716bff
Add support for gnuplot's Lua-TikZ terminal.
Ben Abbott <bpabbott@mac.com>
parents:
9438
diff
changeset
|
1516 if (strcmp (f, "*") || strcmp (gp_term, "tikz")) |
9098
5ecdb3d3568f
Allow fontsize to be specified for all objects with fontname == "*".
Ben Abbott <bpabbott@mac.com>
parents:
9083
diff
changeset
|
1517 fontspec = sprintf ("font \",%d\"", s); |
9063
a6cf0ad87eee
__go_draw_axes__.m: New subfunction create_fontspec(). Allow fontsize to be specified when the fontname is anonymous.
Ben Abbott <bpabbott@mac.com>
parents:
9050
diff
changeset
|
1518 else |
a6cf0ad87eee
__go_draw_axes__.m: New subfunction create_fontspec(). Allow fontsize to be specified when the fontname is anonymous.
Ben Abbott <bpabbott@mac.com>
parents:
9050
diff
changeset
|
1519 fontspec = sprintf ("font \"%s,%d\"", f, s); |
a6cf0ad87eee
__go_draw_axes__.m: New subfunction create_fontspec(). Allow fontsize to be specified when the fontname is anonymous.
Ben Abbott <bpabbott@mac.com>
parents:
9050
diff
changeset
|
1520 endif |
a6cf0ad87eee
__go_draw_axes__.m: New subfunction create_fontspec(). Allow fontsize to be specified when the fontname is anonymous.
Ben Abbott <bpabbott@mac.com>
parents:
9050
diff
changeset
|
1521 endfunction |
a6cf0ad87eee
__go_draw_axes__.m: New subfunction create_fontspec(). Allow fontsize to be specified when the fontname is anonymous.
Ben Abbott <bpabbott@mac.com>
parents:
9050
diff
changeset
|
1522 |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1523 function style = do_linestyle_command (obj, linecolor, idx, mono, |
10549 | 1524 plot_stream, errbars = "") |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1525 style = {}; |
6405 | 1526 |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1527 fprintf (plot_stream, "set style line %d default;\n", idx); |
6405 | 1528 fprintf (plot_stream, "set style line %d", idx); |
1529 | |
1530 found_style = false; | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1531 if (isnumeric (linecolor)) |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1532 color = linecolor; |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1533 if (! mono) |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1534 fprintf (plot_stream, " linecolor rgb \"#%02x%02x%02x\"", |
10549 | 1535 round (255*color)); |
6405 | 1536 endif |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1537 else |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1538 color = [0, 0, 0]; |
6405 | 1539 endif |
1540 | |
1541 if (isfield (obj, "linestyle")) | |
1542 switch (obj.linestyle) | |
1543 case "-" | |
10549 | 1544 lt = "1"; |
6405 | 1545 case "--" |
10549 | 1546 lt = "2"; |
6405 | 1547 case ":" |
10549 | 1548 lt = "3"; |
6405 | 1549 case "-." |
10549 | 1550 lt = "6"; |
6405 | 1551 case "none" |
10549 | 1552 lt = ""; |
6405 | 1553 otherwise |
10549 | 1554 lt = ""; |
6405 | 1555 endswitch |
6843 | 1556 |
1557 ## FIXME -- linetype is currently broken, since it disables the | |
1558 ## gnuplot default dashed and solid linestyles with the only | |
1559 ## benefit of being able to specify '--' and get a single sized | |
1560 ## dashed line of identical dash pattern for all called this way. | |
1561 ## All dash patterns are a subset of "with lines" and none of the | |
1562 ## lt specifications will correctly propagate into the x11 terminal | |
1563 ## or the print command. Therefore, it is currently disabled in | |
1564 ## order to allow print (..., "-dashed") etc. to work correctly. | |
1565 | |
1566 ## if (! isempty (lt)) | |
1567 ## fprintf (plot_stream, " linetype %s", lt); | |
1568 ## endif | |
1569 | |
6405 | 1570 else |
1571 lt = ""; | |
1572 endif | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1573 if (! isempty (errbars)) |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1574 found_style = true; |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1575 endif |
6405 | 1576 |
1577 if (isfield (obj, "linewidth")) | |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1578 fprintf (plot_stream, " linewidth %f", obj.linewidth); |
6405 | 1579 found_style = true; |
1580 endif | |
1581 | |
10925
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1582 [pt, pt2] = gnuplot_pointtype (obj); |
6405 | 1583 |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1584 if (! isempty (pt)) |
6465 | 1585 found_style = true; |
1586 endif | |
1587 | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1588 sidx = 1; |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1589 if (isempty (errbars)) |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1590 if (isempty (lt)) |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1591 style {sidx} = ""; |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1592 else |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1593 style {sidx} = "lines"; |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1594 endif |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1595 |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1596 facesame = true; |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1597 if (! isequal (pt, pt2) && isfield (obj, "markerfacecolor") |
10549 | 1598 && !strncmp (obj.markerfacecolor, "none", 4)) |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1599 if (strncmp (obj.markerfacecolor, "auto", 4) |
10549 | 1600 || ! isnumeric (obj.markerfacecolor) |
1601 || (isnumeric (obj.markerfacecolor) | |
1602 && isequal (color, obj.markerfacecolor))) | |
1603 if (! isempty (pt2)) | |
1604 fprintf (plot_stream, " pointtype %s", pt2); | |
1605 style {sidx} = strcat (style{sidx}, "points"); | |
1606 endif | |
1607 if (isfield (obj, "markersize")) | |
1608 fprintf (plot_stream, " pointsize %f", obj.markersize / 3); | |
1609 endif | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1610 else |
10549 | 1611 facesame = false; |
1612 if (! found_style) | |
1613 fputs (plot_stream, " default"); | |
1614 endif | |
1615 fputs (plot_stream, ";\n"); | |
1616 if (! isempty (style {sidx})) | |
1617 sidx ++; | |
1618 idx ++; | |
1619 else | |
1620 fputs (plot_stream, ";\n"); | |
1621 endif | |
1622 fprintf (plot_stream, "set style line %d default;\n", idx); | |
1623 fprintf (plot_stream, "set style line %d", idx); | |
1624 if (isnumeric (obj.markerfacecolor) && ! mono) | |
1625 fprintf (plot_stream, " linecolor rgb \"#%02x%02x%02x\"", | |
1626 round (255*obj.markerfacecolor)); | |
1627 endif | |
1628 if (! isempty (pt2)) | |
1629 style {sidx} = "points"; | |
1630 fprintf (plot_stream, " pointtype %s", pt2); | |
1631 endif | |
1632 if (isfield (obj, "markersize")) | |
1633 fprintf (plot_stream, " pointsize %f", obj.markersize / 3); | |
1634 endif | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1635 endif |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1636 endif |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1637 if (isfield (obj, "markeredgecolor") |
10549 | 1638 && !strncmp (obj.markeredgecolor, "none", 4)) |
10157
cf17f22f1fd4
trivial fix to durface and lines for empty markers
David Bateman <dbateman@free.fr>
parents:
10137
diff
changeset
|
1639 if (facesame && !isempty (pt) |
cf17f22f1fd4
trivial fix to durface and lines for empty markers
David Bateman <dbateman@free.fr>
parents:
10137
diff
changeset
|
1640 && (strncmp (obj.markeredgecolor, "auto", 4) |
10549 | 1641 || ! isnumeric (obj.markeredgecolor) |
1642 || (isnumeric (obj.markeredgecolor) | |
1643 && isequal (color, obj.markeredgecolor)))) | |
1644 if (sidx == 1 && ((length (style {sidx}) == 5 | |
1645 && strncmp (style {sidx}, "lines", 5)) || isempty (style {sidx}))) | |
1646 if (! isempty (pt)) | |
1647 style {sidx} = strcat (style{sidx}, "points"); | |
1648 fprintf (plot_stream, " pointtype %s", pt); | |
1649 endif | |
1650 if (isfield (obj, "markersize")) | |
1651 fprintf (plot_stream, " pointsize %f", obj.markersize / 3); | |
1652 endif | |
1653 endif | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1654 else |
10549 | 1655 if (! found_style) |
1656 fputs (plot_stream, " default"); | |
1657 endif | |
1658 fputs (plot_stream, ";\n"); | |
1659 if (!isempty (style {sidx})) | |
1660 sidx ++; | |
1661 idx ++; | |
1662 else | |
1663 fputs (plot_stream, ";\n"); | |
1664 endif | |
1665 fprintf (plot_stream, "set style line %d default;\n", idx); | |
1666 fprintf (plot_stream, "set style line %d", idx); | |
1667 if (! mono) | |
1668 if (strncmp (obj.markeredgecolor, "auto", 4)) | |
1669 fprintf (plot_stream, " linecolor rgb \"#%02x%02x%02x\"", | |
1670 round (255*color)); | |
1671 elseif (isnumeric (obj.markeredgecolor) && ! mono) | |
1672 fprintf (plot_stream, " linecolor rgb \"#%02x%02x%02x\"", | |
1673 round (255*obj.markeredgecolor)); | |
1674 endif | |
1675 endif | |
1676 if (! isempty (pt)) | |
1677 style {sidx} = "points"; | |
1678 fprintf (plot_stream, " pointtype %s", pt); | |
1679 endif | |
1680 if (isfield (obj, "markersize")) | |
1681 fprintf (plot_stream, " pointsize %f", obj.markersize / 3); | |
1682 endif | |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1683 endif |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1684 endif |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1685 else |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1686 style{1} = errbars; |
10582
9676d0255440
Use "." for marker when plotting with errorbars. (bug #29057)
Rik <octave@nomad.inbox5.com>
parents:
10563
diff
changeset
|
1687 fputs (plot_stream, " pointtype 0"); |
9729
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1688 endif |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1689 |
3b7e644bb46d
Treat markerfacecolor and markeredgecolor properties for lines and surfaces
David Bateman <dbateman@free.fr>
parents:
9472
diff
changeset
|
1690 if (! found_style && isempty (style {1})) |
6405 | 1691 fputs (plot_stream, " default"); |
1692 endif | |
1693 | |
1694 fputs (plot_stream, ";\n"); | |
1695 | |
1696 endfunction | |
6510 | 1697 |
10925
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1698 function [pt, pt2] = gnuplot_pointtype (obj) |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1699 if (isfield (obj, "marker")) |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1700 switch (obj.marker) |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1701 case "+" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1702 pt = pt2 = "1"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1703 case "o" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1704 pt = "6"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1705 pt2 = "7"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1706 case "*" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1707 pt = pt2 = "3"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1708 case "." |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1709 pt = pt2 = "0"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1710 case "x" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1711 pt = pt2 = "2"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1712 case {"square", "s"} |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1713 pt = "4"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1714 pt2 = "5"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1715 case {"diamond", "d"} |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1716 pt = "12"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1717 pt2 = "13"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1718 case "^" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1719 pt = "8"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1720 pt2 = "9"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1721 case "v" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1722 pt = "10"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1723 pt2 = "11"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1724 case ">" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1725 ## FIXME -- should be triangle pointing right, use triangle pointing up |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1726 pt = "8"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1727 pt2 = "9"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1728 case "<" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1729 ## FIXME -- should be triangle pointing left, use triangle pointing down |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1730 pt = "10"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1731 pt2 = "11"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1732 case {"pentagram", "p"} |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1733 ## FIXME -- should be pentagram, using pentagon |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1734 pt = "14"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1735 pt2 = "15"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1736 case {"hexagram", "h"} |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1737 ## FIXME -- should be 6 pt start, using "*" instead |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1738 pt = pt2 = "3"; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1739 case "none" |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1740 pt = pt2 = ""; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1741 otherwise |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1742 pt = pt2 = ""; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1743 endswitch |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1744 else |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1745 pt = pt2 = ""; |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1746 endif |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1747 endfunction |
2f9de135e7f9
__go_draw_axes__.m: Use gnuplot's pentagon for marker == 'p'.
Ben Abbott <bpabbott@mac.com>
parents:
10920
diff
changeset
|
1748 |
7119 | 1749 function __gnuplot_write_data__ (plot_stream, data, nd, parametric, cdata) |
6510 | 1750 |
1751 ## DATA is already transposed. | |
1752 | |
1753 ## FIXME -- this may need to be converted to C++ for speed. | |
1754 | |
6605 | 1755 ## Convert NA elements to normal NaN values because fprintf writes |
1756 ## "NA" and that confuses gnuplot. | |
1757 idx = find (isna (data)); | |
1758 if (any (idx)) | |
1759 data(idx) = NaN; | |
1760 endif | |
1761 | |
6510 | 1762 if (nd == 2) |
8217
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
1763 fwrite (plot_stream, data, "float64"); |
7109 | 1764 elseif (nd == 3) |
6510 | 1765 if (parametric) |
8217
f74cb5e3a6c1
send binary data to gnuplot
Daniel J. Sebald <daniel.sebald@ieee.org>
parents:
8216
diff
changeset
|
1766 fwrite (plot_stream, data, "float64"); |
6510 | 1767 else |
7170 | 1768 nr = rows (data); |
7119 | 1769 if (cdata) |
10549 | 1770 for j = 1:4:nr |
1771 fwrite (plot_stream, data(j:j+3,:), "float64"); | |
1772 endfor | |
7119 | 1773 else |
10549 | 1774 for j = 1:3:nr |
1775 fwrite (plot_stream, data(j:j+2,:), "float64"); | |
1776 endfor | |
7119 | 1777 endif |
7109 | 1778 endif |
6510 | 1779 endif |
1780 | |
1781 endfunction | |
6745 | 1782 |
9257
ab952265ad06
__go_draw_axes__.m: Properly render TeX symbols for x11.
Ben Abbott <bpabbott@mac.com>
parents:
9191
diff
changeset
|
1783 function do_tics (obj, plot_stream, ymirror, mono, gnuplot_term) |
8222
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1784 |
8518
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8510
diff
changeset
|
1785 obj.xticklabel = ticklabel_to_cell (obj.xticklabel); |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8510
diff
changeset
|
1786 obj.yticklabel = ticklabel_to_cell (obj.yticklabel); |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8510
diff
changeset
|
1787 obj.zticklabel = ticklabel_to_cell (obj.zticklabel); |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8510
diff
changeset
|
1788 |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1789 if (strcmp (obj.xminorgrid, "on")) |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1790 obj.xminortick = "on"; |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1791 endif |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1792 if (strcmp (obj.yminorgrid, "on")) |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1793 obj.yminortick = "on"; |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1794 endif |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1795 if (strcmp (obj.zminorgrid, "on")) |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1796 obj.zminortick = "on"; |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1797 endif |
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1798 |
8220
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1799 [fontname, fontsize] = get_fontname_and_size (obj); |
9257
ab952265ad06
__go_draw_axes__.m: Properly render TeX symbols for x11.
Ben Abbott <bpabbott@mac.com>
parents:
9191
diff
changeset
|
1800 fontspec = create_fontspec (fontname, fontsize, gnuplot_term); |
8222
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1801 |
8740
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8665
diff
changeset
|
1802 ## A Gnuplot tic scale of 69 is equivalent to Octave's 0.5. |
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8665
diff
changeset
|
1803 ticklength = sprintf ("scale %4.1f", (69/0.5)*obj.ticklength(1)); |
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8665
diff
changeset
|
1804 |
6809 | 1805 if (strcmpi (obj.xaxislocation, "top")) |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1806 do_tics_1 (obj.xtickmode, obj.xtick, obj.xminortick, obj.xticklabelmode, |
10549 | 1807 obj.xticklabel, obj.xcolor, "x2", plot_stream, true, mono, |
1808 "border", obj.tickdir, ticklength, fontname, fontspec, | |
1809 obj.interpreter, obj.xscale); | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1810 do_tics_1 ("manual", [], "off", obj.xticklabelmode, obj.xticklabel, |
10549 | 1811 obj.xcolor, "x", plot_stream, true, mono, "border", |
1812 "", "", fontname, fontspec, obj.interpreter, obj.xscale); | |
7321 | 1813 elseif (strcmpi (obj.xaxislocation, "zero")) |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1814 do_tics_1 (obj.xtickmode, obj.xtick, obj.xminortick, obj.xticklabelmode, |
10549 | 1815 obj.xticklabel, obj.xcolor, "x", plot_stream, true, mono, |
1816 "axis", obj.tickdir, ticklength, fontname, fontspec, | |
1817 obj.interpreter, obj.xscale); | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1818 do_tics_1 ("manual", [], "off", obj.xticklabelmode, obj.xticklabel, |
10549 | 1819 obj.xcolor, "x2", plot_stream, true, mono, "axis", |
1820 "", "", fontname, fontspec, obj.interpreter, obj.xscale); | |
6809 | 1821 else |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1822 do_tics_1 (obj.xtickmode, obj.xtick, obj.xminortick, obj.xticklabelmode, |
10549 | 1823 obj.xticklabel, obj.xcolor, "x", plot_stream, true, mono, |
1824 "border", obj.tickdir, ticklength, fontname, fontspec, | |
1825 obj.interpreter, obj.xscale); | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1826 do_tics_1 ("manual", [], "off", obj.xticklabelmode, obj.xticklabel, |
10549 | 1827 obj.xcolor, "x2", plot_stream, true, mono, "border", |
1828 "", "", fontname, fontspec, obj.interpreter, obj.xscale); | |
6809 | 1829 endif |
1830 if (strcmpi (obj.yaxislocation, "right")) | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1831 do_tics_1 (obj.ytickmode, obj.ytick, obj.yminortick, obj.yticklabelmode, |
10549 | 1832 obj.yticklabel, obj.ycolor, "y2", plot_stream, ymirror, mono, |
1833 "border", obj.tickdir, ticklength, fontname, fontspec, | |
1834 obj.interpreter, obj.yscale); | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1835 do_tics_1 ("manual", [], "off", obj.yticklabelmode, obj.yticklabel, |
10549 | 1836 obj.ycolor, "y", plot_stream, ymirror, mono, "border", |
1837 "", "", fontname, fontspec, obj.interpreter, obj.yscale); | |
8943
4a312440b262
__go_draw_axes__.m (do_tics): fix typo
Ben Abbott <bpabbott@mac.com>
parents:
8920
diff
changeset
|
1838 elseif (strcmpi (obj.yaxislocation, "zero")) |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1839 do_tics_1 (obj.ytickmode, obj.ytick, obj.yminortick, obj.yticklabelmode, |
10549 | 1840 obj.yticklabel, obj.ycolor, "y", plot_stream, ymirror, mono, |
1841 "axis", obj.tickdir, ticklength, fontname, fontspec, | |
1842 obj.interpreter, obj.yscale); | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1843 do_tics_1 ("manual", [], "off", obj.yticklabelmode, obj.yticklabel, |
10549 | 1844 obj.ycolor, "y2", plot_stream, ymirror, mono, "axis", |
1845 "", "", fontname, fontspec, obj.interpreter, obj.yscale); | |
6809 | 1846 else |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1847 do_tics_1 (obj.ytickmode, obj.ytick, obj.yminortick, obj.yticklabelmode, |
10549 | 1848 obj.yticklabel, obj.ycolor, "y", plot_stream, ymirror, mono, |
1849 "border", obj.tickdir, ticklength, fontname, fontspec, | |
1850 obj.interpreter, obj.yscale); | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1851 do_tics_1 ("manual", [], "off", obj.yticklabelmode, obj.yticklabel, |
10549 | 1852 obj.ycolor, "y2", plot_stream, ymirror, mono, "border", |
1853 "", "", fontname, fontspec, obj.interpreter, obj.yscale); | |
6809 | 1854 endif |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1855 do_tics_1 (obj.ztickmode, obj.ztick, obj.zminortick, obj.zticklabelmode, |
10549 | 1856 obj.zticklabel, obj.zcolor, "z", plot_stream, true, mono, |
1857 "border", obj.tickdir, ticklength, fontname, fontspec, | |
1858 obj.interpreter, obj.yscale); | |
6745 | 1859 endfunction |
1860 | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1861 function do_tics_1 (ticmode, tics, mtics, labelmode, labels, color, ax, |
10549 | 1862 plot_stream, mirror, mono, axispos, tickdir, ticklength, |
1863 fontname, fontspec, interpreter, scale) | |
8222
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1864 persistent warned_latex = false; |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1865 if (strcmpi (interpreter, "tex")) |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1866 for n = 1 : numel(labels) |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1867 labels{n} = __tex2enhanced__ (labels{n}, fontname, false, false); |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1868 endfor |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1869 elseif (strcmpi (interpreter, "latex")) |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1870 if (! warned_latex) |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1871 warning ("latex markup not supported for tick marks"); |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1872 warned_latex = true; |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1873 endif |
11badf6c9e9f
__go_draw_axes__.m: Support axes interpreter poperty for tick labels.
Ben Abbott <bpabbott@mac.com>
parents:
8220
diff
changeset
|
1874 endif |
9302
5542c40e40ac
__go_draw_axes__.m: Change strncmpi(scale,'lo') -> strcmp(scale,'log').
Ben Abbott <bpabbott@mac.com>
parents:
9301
diff
changeset
|
1875 if (strcmp (scale, "log")) |
9301
f2152fad3563
__go_draw_axes__.m: For log-scale axes use format '10^{%T}'.
Ben Abbott <bpabbott@mac.com>
parents:
9281
diff
changeset
|
1876 fmt = "10^{%T}"; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1877 num_mtics = 10; |
9301
f2152fad3563
__go_draw_axes__.m: For log-scale axes use format '10^{%T}'.
Ben Abbott <bpabbott@mac.com>
parents:
9281
diff
changeset
|
1878 else |
f2152fad3563
__go_draw_axes__.m: For log-scale axes use format '10^{%T}'.
Ben Abbott <bpabbott@mac.com>
parents:
9281
diff
changeset
|
1879 fmt = "%g"; |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1880 num_mtics = 5; |
9301
f2152fad3563
__go_draw_axes__.m: For log-scale axes use format '10^{%T}'.
Ben Abbott <bpabbott@mac.com>
parents:
9281
diff
changeset
|
1881 endif |
7269 | 1882 colorspec = get_text_colorspec (color, mono); |
8112
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
1883 if (strcmpi (ticmode, "manual") || strcmpi (labelmode, "manual")) |
6745 | 1884 if (isempty (tics)) |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1885 fprintf (plot_stream, "unset %stics;\nunset m%stics;\n", ax, ax); |
8953
a6945f92b868
__go_draw_axes__.m: Unset the {x,y,z}ticks when initializing\n\teach axis. Set ticklabels when the ticklabels are empty and when\n\tticklabelmode=="manual".
Ben Abbott <bpabbott@mac.com>
parents:
8943
diff
changeset
|
1886 elseif (strcmpi (labelmode, "manual")) |
6751 | 1887 if (ischar (labels)) |
10549 | 1888 labels = cellstr (labels); |
6751 | 1889 endif |
8354
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8344
diff
changeset
|
1890 if (isnumeric (labels)) |
10549 | 1891 labels = num2str (real (labels(:))); |
8354
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8344
diff
changeset
|
1892 endif |
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8344
diff
changeset
|
1893 if (ischar (labels)) |
10549 | 1894 labels = permute (cellstr (labels), [2, 1]); |
8354
534fd216278c
__go_draw_axes__.m: xticklabel should accept a numeric vector.
Ben Abbott <bpabbott@mac.com>
parents:
8344
diff
changeset
|
1895 endif |
6745 | 1896 if (iscellstr (labels)) |
10549 | 1897 k = 1; |
1898 ntics = numel (tics); | |
1899 nlabels = numel (labels); | |
1900 fprintf (plot_stream, "set format %s \"%%s\";\n", ax); | |
1901 if (mirror) | |
1902 fprintf (plot_stream, "set %stics %s %s %s mirror (", ax, | |
1903 tickdir, ticklength, axispos); | |
1904 else | |
1905 fprintf (plot_stream, "set %stics %s %s %s nomirror (", ax, | |
1906 tickdir, ticklength, axispos); | |
1907 endif | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1908 |
10549 | 1909 labels = regexprep(labels, "%", "%%"); |
1910 for i = 1:ntics | |
1911 fprintf (plot_stream, " \"%s\" %.15g", labels{k++}, tics(i)); | |
1912 if (i < ntics) | |
1913 fputs (plot_stream, ", "); | |
1914 endif | |
1915 if (k > nlabels) | |
1916 k = 1; | |
1917 endif | |
1918 endfor | |
1919 fprintf (plot_stream, ") %s %s;\n", colorspec, fontspec); | |
1920 if (strcmp (mtics, "on")) | |
1921 fprintf (plot_stream, "set m%stics %d;\n", ax, num_mtics); | |
1922 else | |
1923 fprintf (plot_stream, "unset m%stics;\n", ax); | |
1924 endif | |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1925 else |
10635
d1978e7364ad
Print name of function in error() string messages.
Rik <octave@nomad.inbox5.com>
parents:
10597
diff
changeset
|
1926 error ("__go_draw_axes__: unsupported type of ticklabel"); |
6745 | 1927 endif |
1928 else | |
9301
f2152fad3563
__go_draw_axes__.m: For log-scale axes use format '10^{%T}'.
Ben Abbott <bpabbott@mac.com>
parents:
9281
diff
changeset
|
1929 fprintf (plot_stream, "set format %s \"%s\";\n", ax, fmt); |
7206 | 1930 if (mirror) |
10549 | 1931 fprintf (plot_stream, "set %stics %s %s %s mirror (", ax, tickdir, |
1932 ticklength, axispos); | |
7206 | 1933 else |
10549 | 1934 fprintf (plot_stream, "set %stics %s %s %s nomirror (", ax, tickdir, |
1935 ticklength, axispos); | |
7206 | 1936 endif |
8112
31e86163b752
Add the datetick function
David Bateman <dbateman@free.fr>
parents:
8102
diff
changeset
|
1937 fprintf (plot_stream, " %.15g,", tics(1:end-1)); |
8220
4e05ba66ead2
x/y/z-ticklabels respect axis font properties.
Ben Abbott <bpabbott@mac.com>
parents:
8218
diff
changeset
|
1938 fprintf (plot_stream, " %.15g) %s;\n", tics(end), fontspec); |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1939 if (strcmp (mtics, "on")) |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1940 fprintf (plot_stream, "set m%stics %d;\n", ax, num_mtics); |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1941 else |
10549 | 1942 fprintf (plot_stream, "unset m%stics;\n", ax); |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1943 endif |
6745 | 1944 endif |
1945 else | |
9301
f2152fad3563
__go_draw_axes__.m: For log-scale axes use format '10^{%T}'.
Ben Abbott <bpabbott@mac.com>
parents:
9281
diff
changeset
|
1946 fprintf (plot_stream, "set format %s \"%s\";\n", ax, fmt); |
7206 | 1947 if (mirror) |
8740
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8665
diff
changeset
|
1948 fprintf (plot_stream, "set %stics %s %s %s mirror %s %s;\n", ax, |
10549 | 1949 axispos, tickdir, ticklength, colorspec, fontspec); |
7206 | 1950 else |
8740
cb0ea772a4af
Initialize axes ticklength property.
Ben Abbott <bpabbott@mac.com>
parents:
8665
diff
changeset
|
1951 fprintf (plot_stream, "set %stics %s %s %s nomirror %s %s;\n", ax, |
10549 | 1952 tickdir, ticklength, axispos, colorspec, fontspec); |
7206 | 1953 endif |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1954 if (strcmp (mtics, "on")) |
9374
6a035159ba0e
grid.m: Add missing semi-colon. Fix grid toggle. Allow minor grid when no minor tick.
Ben Abbott <bpabbott@mac.com>
parents:
9361
diff
changeset
|
1955 fprintf (plot_stream, "set m%stics %d;\n", ax, num_mtics); |
8322
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1956 else |
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1957 fprintf (plot_stream, "unset m%stics;\n", ax); |
f32a91d99156
Respect the minortick property of the axis objects
David Bateman <dbateman@free.fr>
parents:
8291
diff
changeset
|
1958 endif |
7194 | 1959 endif |
1960 endfunction | |
1961 | |
9281
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1962 function ticklabel = ticklabel_to_cell (ticklabel) |
9472
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1963 if (isnumeric (ticklabel)) |
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1964 ## Use upto 5 significant digits |
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1965 ticklabel = num2str (ticklabel(:), 5); |
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1966 endif |
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1967 if (ischar (ticklabel)) |
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1968 if (size (ticklabel, 1) == 1 && any (ticklabel == "|")) |
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1969 n = setdiff (findstr (ticklabel, "|"), findstr (ticklabel, '\|')); |
9281
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1970 ticklabel = strsplit (ticklabel, "|"); |
9280
40fb718a2e67
__go_draw_axes__.m: Add support for ticklabel separator '|'.
Ben Abbott <bpabbott@mac.com>
parents:
9272
diff
changeset
|
1971 else |
9281
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1972 ticklabel = cellstr (ticklabel); |
9280
40fb718a2e67
__go_draw_axes__.m: Add support for ticklabel separator '|'.
Ben Abbott <bpabbott@mac.com>
parents:
9272
diff
changeset
|
1973 endif |
9472
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1974 elseif (isempty (ticklabel)) |
303f862a896d
__go_draw_axes__.m: Fix ticklabels specified as 2D character array.
Ben Abbott <bpabbott@mac.com>
parents:
9468
diff
changeset
|
1975 ticklabel = {""}; |
9280
40fb718a2e67
__go_draw_axes__.m: Add support for ticklabel separator '|'.
Ben Abbott <bpabbott@mac.com>
parents:
9272
diff
changeset
|
1976 else |
9281
02b16eeb3167
Fix yticklabels for log scale colorbar.
Ben Abbott <bpabbott@mac.com>
parents:
9280
diff
changeset
|
1977 ticklabel = ticklabel; |
8518
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8510
diff
changeset
|
1978 endif |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8510
diff
changeset
|
1979 endfunction |
c2c018d7c501
__go_draw_axes__.m: __go_draw_axes__.m: Support non-cell ticklabels.
Ben Abbott <bpabbott@mac.com>
parents:
8510
diff
changeset
|
1980 |
7269 | 1981 function colorspec = get_text_colorspec (color, mono) |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1982 if (mono) |
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1983 colorspec = ""; |
7194 | 1984 else |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
1985 colorspec = sprintf ("textcolor rgb \"#%02x%02x%02x\"", |
10549 | 1986 round (255*color)); |
6745 | 1987 endif |
1988 endfunction | |
7163 | 1989 |
7189 | 1990 function [f, s, fnt, it, bld] = get_fontname_and_size (t) |
7163 | 1991 if (isempty (t.fontname)) |
7372 | 1992 fnt = "Helvetica"; |
7163 | 1993 else |
7372 | 1994 fnt = t.fontname; |
7168 | 1995 endif |
7189 | 1996 f = fnt; |
1997 it = false; | |
1998 bld = false; | |
7372 | 1999 if (! isempty (t.fontweight) && strcmpi (t.fontweight, "bold")) |
7168 | 2000 if (! isempty(t.fontangle) |
10549 | 2001 && (strcmpi (t.fontangle, "italic") |
2002 || strcmpi (t.fontangle, "oblique"))) | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2003 f = cstrcat (f, "-bolditalic"); |
7189 | 2004 it = true; |
2005 bld = true; | |
7168 | 2006 else |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2007 f = cstrcat (f, "-bold"); |
7189 | 2008 bld = true; |
7168 | 2009 endif |
2010 elseif (! isempty(t.fontangle) | |
10549 | 2011 && (strcmpi (t.fontangle, "italic") |
2012 || strcmpi (t.fontangle, "oblique"))) | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2013 f = cstrcat (f, "-italic"); |
7189 | 2014 it = true; |
7163 | 2015 endif |
2016 if (isempty (t.fontsize)) | |
2017 s = 10; | |
2018 else | |
2019 s = t.fontsize; | |
2020 endif | |
2021 endfunction | |
7189 | 2022 |
8164
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
2023 function [str, f, s] = __maybe_munge_text__ (enhanced, obj, fld) |
0d37c99fc06f
__go_draw_axes__.m: eliminate have_newer_gnuplot variable
John W. Eaton <jwe@octave.org>
parents:
8112
diff
changeset
|
2024 |
7189 | 2025 persistent warned_latex = false; |
2026 | |
2027 if (strcmp (fld, "string")) | |
2028 [f, s, fnt, it, bld] = get_fontname_and_size (obj); | |
2029 else | |
7372 | 2030 f = "Helvetica"; |
7189 | 2031 s = 10; |
2032 fnt = f; | |
2033 it = false; | |
2034 bld = false; | |
2035 endif | |
2036 | |
2037 str = getfield (obj, fld); | |
2038 if (enhanced) | |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8171
diff
changeset
|
2039 if (strcmpi (obj.interpreter, "tex")) |
7189 | 2040 str = __tex2enhanced__ (str, fnt, it, bld); |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8171
diff
changeset
|
2041 elseif (strcmpi (obj.interpreter, "latex")) |
7189 | 2042 if (! warned_latex) |
10549 | 2043 warning ("latex markup not supported for text objects"); |
2044 warned_latex = true; | |
7189 | 2045 endif |
2046 endif | |
2047 endif | |
2048 endfunction | |
2049 | |
2050 function str = __tex2enhanced__ (str, fnt, it, bld) | |
2051 persistent sym = __setup_sym_table__ (); | |
2052 persistent flds = fieldnames (sym); | |
2053 | |
2054 [s, e, m] = regexp(str,'\\([a-zA-Z]+|0)','start','end','matches'); | |
2055 | |
2056 for i = length (s) : -1 : 1 | |
2057 ## special case for "\0" and replace with "{/Symbol \306}' | |
2058 if (strncmp (m{i}, '\0', 2)) | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2059 str = cstrcat (str(1:s(i) - 1), '{/Symbol \306}', str(s(i) + 2:end)); |
7189 | 2060 else |
2061 f = m{i}(2:end); | |
2062 if (isfield (sym, f)) | |
10549 | 2063 g = getfield(sym, f); |
2064 ## FIXME The symbol font doesn't seem to support bold or italic | |
2065 ##if (bld) | |
2066 ## if (it) | |
2067 ## g = regexprep (g, '/Symbol', '/Symbol-bolditalic'); | |
2068 ## else | |
2069 ## g = regexprep (g, '/Symbol', '/Symbol-bold'); | |
2070 ## endif | |
2071 ##elseif (it) | |
2072 ## g = regexprep (g, '/Symbol', '/Symbol-italic'); | |
2073 ##endif | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2074 str = cstrcat (str(1:s(i) - 1), g, str(e(i) + 1:end)); |
7189 | 2075 elseif (strncmp (f, "rm", 2)) |
10549 | 2076 bld = false; |
2077 it = false; | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2078 str = cstrcat (str(1:s(i) - 1), '/', fnt, ' ', str(s(i) + 3:end)); |
7189 | 2079 elseif (strncmp (f, "it", 2) || strncmp (f, "sl", 2)) |
10549 | 2080 it = true; |
2081 if (bld) | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2082 str = cstrcat (str(1:s(i) - 1), '/', fnt, '-bolditalic ', |
10549 | 2083 str(s(i) + 3:end)); |
7189 | 2084 else |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2085 str = cstrcat (str(1:s(i) - 1), '/', fnt, '-italic ', |
10549 | 2086 str(s(i) + 3:end)); |
7189 | 2087 endif |
2088 elseif (strncmp (f, "bf", 2)) | |
10549 | 2089 bld = true; |
2090 if (it) | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2091 str = cstrcat (str(1:s(i) - 1), '/', fnt, '-bolditalic ', |
10549 | 2092 str(2(i) + 3:end)); |
7189 | 2093 else |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2094 str = cstrcat (str(1:s(i) - 1), '/', fnt, '-bold ', |
10549 | 2095 str(s(i) + 3:end)); |
7189 | 2096 endif |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8171
diff
changeset
|
2097 elseif (strcmpi (f, "color")) |
10549 | 2098 ## FIXME Ignore \color but remove trailing {} block as well |
2099 d = strfind(str(e(i) + 1:end),'}'); | |
7189 | 2100 if (isempty (d)) |
10549 | 2101 warning ('syntax error in \color argument'); |
2102 else | |
2103 str = cstrcat (str(1:s(i) - 1), str(e(i) + d + 1:end)); | |
7189 | 2104 endif |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8171
diff
changeset
|
2105 elseif(strcmpi (f, "fontname")) |
10549 | 2106 b1 = strfind(str(e(i) + 1:end),'{'); |
2107 b2 = strfind(str(e(i) + 1:end),'}'); | |
7189 | 2108 if (isempty(b1) || isempty(b2)) |
10549 | 2109 warning ('syntax error in \fontname argument'); |
2110 else | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2111 str = cstrcat (str(1:s(i) - 1), '/', |
10549 | 2112 str(e(i)+b1(1) + 1:e(i)+b2(1)-1), '{}', |
2113 str(e(i) + b2(1) + 1:end)); | |
7189 | 2114 endif |
8190
73d6b71788c0
use case-insensitive comparison for graphics properties; misc style fixes
John W. Eaton <jwe@octave.org>
parents:
8171
diff
changeset
|
2115 elseif(strcmpi (f, "fontsize")) |
10549 | 2116 b1 = strfind(str(e(i) + 1:end),'{'); |
2117 b2 = strfind(str(e(i) + 1:end),'}'); | |
7189 | 2118 if (isempty(b1) || isempty(b2)) |
10549 | 2119 warning ('syntax error in \fontname argument'); |
2120 else | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2121 str = cstrcat (str(1:s(i) - 1), '/=', |
10549 | 2122 str(e(i)+b1(1) + 1:e(i)+b2(1)-1), '{}', |
2123 str(e(i) + b2(1) + 1:end)); | |
7189 | 2124 endif |
2125 else | |
10549 | 2126 ## Last desperate attempt to treat the symbol. Look for things |
2127 ## like \pix, that should be translated to the symbol Pi and x | |
2128 for j = 1 : length (flds) | |
2129 if (strncmp (flds{j}, f, length (flds{j}))) | |
2130 g = getfield(sym, flds{j}); | |
2131 ## FIXME The symbol font doesn't seem to support bold or italic | |
2132 ##if (bld) | |
2133 ## if (it) | |
2134 ## g = regexprep (g, '/Symbol', '/Symbol-bolditalic'); | |
2135 ## else | |
2136 ## g = regexprep (g, '/Symbol', '/Symbol-bold'); | |
2137 ## endif | |
2138 ##elseif (it) | |
2139 ## g = regexprep (g, '/Symbol', '/Symbol-italic'); | |
2140 ##endif | |
7540
3422f39573b1
strcat.m: Matlab compatibility, with cstrcat.m replacing conventional strcat.m.
Ben Abbott <bpabbott@mac.com>
parents:
7513
diff
changeset
|
2141 str = cstrcat (str(1:s(i) - 1), g, |
10549 | 2142 str(s(i) + length (flds{j}) + 1:end)); |
2143 break; | |
2144 endif | |
2145 endfor | |
7189 | 2146 endif |
2147 endif | |
2148 endfor | |
2149 | |
8506 | 2150 ## Prepend @ to things things like _0^x or _{-100}^{100} for |
2151 ## alignment But need to put the shorter of the two arguments first. | |
2152 ## Carful of nested {} and unprinted characters when defining | |
2153 ## shortest.. Don't have to worry about things like ^\theta as they | |
2154 ## are already converted to ^{/Symbol q}. | |
7189 | 2155 |
8506 | 2156 ## FIXME -- This is a mess... Is it worth it just for a "@" character? |
7189 | 2157 |
2158 [s, m] = regexp(str,'[_\^]','start','matches'); | |
2159 i = 1; | |
2160 p = 0; | |
2161 while (i < length (s)) | |
2162 if (i < length(s)) | |
2163 if (str(s(i) + p + 1) == "{") | |
10549 | 2164 s1 = strfind(str(s(i) + p + 2:end),'{'); |
2165 si = 1; | |
2166 l1 = strfind(str(s(i) + p + 1:end),'}'); | |
7189 | 2167 li = 1; |
10549 | 2168 while (li <= length (l1) && si <= length (s1)) |
7189 | 2169 if (l1(li) < s1(si)) |
10549 | 2170 if (li == si) |
2171 break; | |
2172 endif | |
2173 li++; | |
2174 else | |
2175 si++; | |
2176 endif | |
2177 endwhile | |
2178 l1 = l1 (min (length(l1), si)); | |
7189 | 2179 if (s(i) + l1 + 1 == s(i+1)) |
10549 | 2180 if (str(s(i + 1) + p + 1) == "{") |
2181 s2 = strfind(str(s(i + 1) + p + 2:end),'{'); | |
2182 si = 1; | |
2183 l2 = strfind(str(s(i + 1) + p + 1:end),'}'); | |
7189 | 2184 li = 1; |
10549 | 2185 while (li <= length (l2) && si <= length (s2)) |
7189 | 2186 if (l2(li) < s2(si)) |
10549 | 2187 if (li == si) |
2188 break; | |
2189 endif | |
2190 li++; | |
2191 else | |
2192 si++; | |
2193 endif | |
2194 endwhile | |
2195 l2 = l2 (min (length(l2), si)); | |
2196 if (length_string (str(s(i)+p+2:s(i)+p+l1-1)) <= | |
2197 length_string(str(s(i+1)+p+2:s(i+1)+p+l2-1))) | |
2198 ## Shortest already first! | |
2199 str = cstrcat (str(1:s(i)+p-1), "@", str(s(i)+p:end)); | |
2200 else | |
2201 ## Have to swap sub/super-script to get shortest first. | |
2202 str = cstrcat (str(1:s(i)+p-1), "@", str(s(i+1)+p:s(i+1)+p+l2), | |
2203 str(s(i)+p:s(i)+p+l1), str(s(i+1)+p+l2+1:end)); | |
2204 endif | |
2205 else | |
2206 ## Have to swap sub/super-script to get shortest first. | |
2207 str = cstrcat (str(1:s(i)+p-1), "@", str(s(i+1)+p:s(i+1)+p+1), | |
2208 str(s(i)+p:s(i)+p+l1), str(s(i+1)+p+2:end)); | |
2209 endif | |
7189 | 2210 i += 2; |
10549 | 2211 p ++; |
2212 else | |
2213 i++; | |
2214 endif | |
7189 | 2215 else |
10549 | 2216 if (s(i+1) == s(i) + 2) |
2217 ## Shortest already first! | |
2218 str = cstrcat (str(1:s(i)+p-1), "@", str(s(i)+p:end)); | |
2219 p ++; | |
7189 | 2220 i += 2; |
10549 | 2221 else |
2222 i ++; | |
2223 endif | |
7189 | 2224 endif |
2225 else | |
2226 i ++; | |
2227 endif | |
2228 endwhile | |
2229 | |
2230 endfunction | |
2231 | |
2232 function l = length_string (s) | |
2233 l = length (s) - length (strfind(s,'{')) - length (strfind(s,'}')); | |
2234 m = regexp (s, '/([\w\-]+|[\w\-]+=\d+)', 'matches'); | |
2235 if (!isempty (m)) | |
2236 l = l - sum (cellfun (@length, m)); | |
2237 endif | |
2238 endfunction | |
2239 | |
2240 function sym = __setup_sym_table__ () | |
2241 ## Setup the translation table for TeX to gnuplot enhanced mode. | |
2242 sym.forall = '{/Symbol \042}'; | |
2243 sym.exists = '{/Symbol \044}'; | |
2244 sym.ni = '{/Symbol \047}'; | |
2245 sym.cong = '{/Symbol \100}'; | |
2246 sym.Delta = '{/Symbol D}'; | |
2247 sym.Phi = '{/Symbol F}'; | |
7608
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7603
diff
changeset
|
2248 sym.Gamma = '{/Symbol G}'; |
7190 | 2249 sym.vartheta = '{/Symbol J}'; |
7189 | 2250 sym.Lambda = '{/Symbol L}'; |
2251 sym.Pi = '{/Symbol P}'; | |
2252 sym.Theta = '{/Symbol Q}'; | |
2253 sym.Sigma = '{/Symbol S}'; | |
2254 sym.varsigma = '{/Symbol V}'; | |
7420 | 2255 sym.Omega = '{/Symbol W}'; |
7189 | 2256 sym.Xi = '{/Symbol X}'; |
2257 sym.Psi = '{/Symbol Y}'; | |
2258 sym.perp = '{/Symbol \136}'; | |
2259 sym.alpha = '{/Symbol a}'; | |
2260 sym.beta = '{/Symbol b}'; | |
2261 sym.chi = '{/Symbol c}'; | |
2262 sym.delta = '{/Symbol d}'; | |
2263 sym.epsilon = '{/Symbol e}'; | |
2264 sym.phi = '{/Symbol f}'; | |
7608
49810341db91
Correct typos in __go_draw_axes__.m and update Manual
godfrey@qss.Stanford.EDU
parents:
7603
diff
changeset
|
2265 sym.gamma = '{/Symbol g}'; |
7189 | 2266 sym.eta = '{/Symbol h}'; |
2267 sym.iota = '{/Symbol i}'; | |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2268 sym.varphi = '{/Symbol j}'; |
7189 | 2269 sym.kappa = '{/Symbol k}'; |
2270 sym.lambda = '{/Symbol l}'; | |
2271 sym.mu = '{/Symbol m}'; | |
2272 sym.nu = '{/Symbol n}'; | |
2273 sym.o = '{/Symbol o}'; | |
2274 sym.pi = '{/Symbol p}'; | |
2275 sym.theta = '{/Symbol q}'; | |
2276 sym.rho = '{/Symbol r}'; | |
2277 sym.sigma = '{/Symbol s}'; | |
2278 sym.tau = '{/Symbol t}'; | |
2279 sym.upsilon = '{/Symbol u}'; | |
2280 sym.varpi = '{/Symbol v}'; | |
2281 sym.omega = '{/Symbol w}'; | |
2282 sym.xi = '{/Symbol x}'; | |
2283 sym.psi = '{/Symbol y}'; | |
2284 sym.zeta = '{/Symbol z}'; | |
2285 sym.sim = '{/Symbol \176}'; | |
2286 sym.Upsilon = '{/Symbol \241}'; | |
2287 sym.prime = '{/Symbol \242}'; | |
2288 sym.leq = '{/Symbol \243}'; | |
2289 sym.infty = '{/Symbol \245}'; | |
2290 sym.clubsuit = '{/Symbol \247}'; | |
2291 sym.diamondsuit = '{/Symbol \250}'; | |
2292 sym.heartsuit = '{/Symbol \251}'; | |
2293 sym.spadesuit = '{/Symbol \252}'; | |
2294 sym.leftrightarrow = '{/Symbol \253}'; | |
2295 sym.leftarrow = '{/Symbol \254}'; | |
2296 sym.uparrow = '{/Symbol \255}'; | |
2297 sym.rightarrow = '{/Symbol \256}'; | |
2298 sym.downarrow = '{/Symbol \257}'; | |
2299 sym.circ = '{/Symbol \260}'; | |
2300 sym.pm = '{/Symbol \261}'; | |
2301 sym.geq = '{/Symbol \263}'; | |
2302 sym.times = '{/Symbol \264}'; | |
2303 sym.propto = '{/Symbol \265}'; | |
2304 sym.partial = '{/Symbol \266}'; | |
2305 sym.bullet = '{/Symbol \267}'; | |
2306 sym.div = '{/Symbol \270}'; | |
2307 sym.neq = '{/Symbol \271}'; | |
2308 sym.equiv = '{/Symbol \272}'; | |
2309 sym.approx = '{/Symbol \273}'; | |
2310 sym.ldots = '{/Symbol \274}'; | |
2311 sym.mid = '{/Symbol \275}'; | |
2312 sym.aleph = '{/Symbol \300}'; | |
2313 sym.Im = '{/Symbol \301}'; | |
2314 sym.Re = '{/Symbol \302}'; | |
2315 sym.wp = '{/Symbol \303}'; | |
2316 sym.otimes = '{/Symbol \304}'; | |
2317 sym.oplus = '{/Symbol \305}'; | |
2318 sym.oslash = '{/Symbol \306}'; | |
2319 sym.cap = '{/Symbol \307}'; | |
2320 sym.cup = '{/Symbol \310}'; | |
2321 sym.supset = '{/Symbol \311}'; | |
2322 sym.supseteq = '{/Symbol \312}'; | |
2323 sym.subset = '{/Symbol \314}'; | |
2324 sym.subseteq = '{/Symbol \315}'; | |
2325 sym.in = '{/Symbol \316}'; | |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2326 sym.notin = '{/Symbol \317}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2327 sym.angle = '{/Symbol \320}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2328 sym.bigtriangledown = '{/Symbol \321}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2329 sym.langle = '{/Symbol \341}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2330 sym.rangle = '{/Symbol \361}'; |
7189 | 2331 sym.nabla = '{/Symbol \321}'; |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2332 sym.prod = '{/Symbol \325}'; |
7189 | 2333 sym.surd = '{/Symbol \326}'; |
2334 sym.cdot = '{/Symbol \327}'; | |
2335 sym.neg = '{/Symbol \330}'; | |
2336 sym.wedge = '{/Symbol \331}'; | |
2337 sym.vee = '{/Symbol \332}'; | |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2338 sym.Leftrightarrow = '{/Symbol \333}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2339 sym.Leftarrow = '{/Symbol \334}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2340 sym.Uparrow = '{/Symbol \335}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2341 sym.Rightarrow = '{/Symbol \336}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2342 sym.Downarrow = '{/Symbol \337}'; |
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2343 sym.diamond = '{/Symbol \340}'; |
7189 | 2344 sym.copyright = '{/Symbol \343}'; |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2345 sym.lfloor = '{/Symbol \353}'; |
7189 | 2346 sym.lceil = '{/Symbol \351}'; |
7593
fdb6ff523237
__go_draw_axes__: use correct symbol codes
Michael D. Godfrey
parents:
7592
diff
changeset
|
2347 sym.rfloor = '{/Symbol \373}'; |
7189 | 2348 sym.rceil = '{/Symbol \371}'; |
2349 sym.int = '{/Symbol \362}'; | |
2350 endfunction | |
2351 | |
7390 | 2352 function retval = __do_enhanced_option__ (enhanced, obj) |
2353 retval = ""; | |
2354 if (enhanced) | |
2355 if (strcmpi (obj.interpreter, "none")) | |
2356 retval = "noenhanced"; | |
2357 else | |
2358 retval = "enhanced"; | |
2359 endif | |
2360 endif | |
2361 endfunction |