summaryrefslogtreecommitdiff
path: root/metapost/context/base/mp-grap.mpiv
blob: bc02e8610c657389ea3fa9ddb8f75baba36d8095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
%D \module
%D   [       file=mp-grap.mpiv,
%D        version=2012.10.16, % 2008.09.08 and earlier,
%D          title=\CONTEXT\ \METAPOST\ graphics,
%D       subtitle=graph packagesupport,
%D         author=Hans Hagen \& Alan Braslau,
%D           date=\currentdate,
%D      copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See licen-en.pdf for
%C details.

% maybe we should have another Gerr ... something grph_error_message

if known context_grap : endinput ; fi ;

boolean context_grap ; context_grap := true ;

input graph.mp ;

vardef roundd(expr x, d) =
    if abs d > 4 :
        if d > 0 :
            x
        else :
            0
        fi
    elseif d > 0 :
        save i ; i = floor x ;
        i + round(Ten_to[d]*(x-i))/Ten_to[d]
    else :
        round(x/Ten_to[-d])*Ten_to[-d]
    fi
enddef ;

Ten_to0 =     1 ;
Ten_to1 =    10 ;
Ten_to2 =   100 ;
Ten_to3 =  1000 ;
Ten_to4 = 10000 ;

def sFe_base = enddef ;

if unknown Fe_plus :
    picture Fe_plus ; Fe_plus := textext("+") ; % btex + etex ;
fi ;

vardef format    (expr f,x) = dofmt_.Feform_(f,x) enddef ;
vardef Mformat   (expr f,x) = dofmt_.Meform (f,x) enddef ;
vardef formatstr (expr f,x) = dofmt_.Feform_(f,x) enddef ;
vardef Mformatstr(expr f,x) = dofmt_.Meform(f,x) enddef ;

vardef escaped_format(expr s) =
    "" for n=1 upto length(s) : &
        if ASCII substring (n,n+1) of s = 37 :
            "@"
        else :
            substring (n,n+1) of s
        fi
    endfor
enddef ;

vardef dofmt_@#(expr f, x) =
    textext("\MPgraphformat{" & escaped_format(f) & "}{" & (if string x : x else: decimal x fi) & "}")
  % textext(mfun_format_number(escaped_format(f),x))
enddef ;

% We redefine autogrid from graph.mp adding the possibility of differing X and Y
% formats. Autoform is defined in graph.mp (by default "%g").
%
% string Autoform_X ; Autoform_X := "@.0e" ;
% string Autoform_Y ; Autoform_Y := "@.0e" ;

vardef autogrid(suffix tx, ty) text w =
    Gneedgr_ := false ;
    if str tx <> "" :
        for x=auto.x :
            tx (
                if string Autoform_X :
                    if Autoform_X <> "" :
                        Autoform_X
                    else :
                        Autoform
                    fi
                else :
                    Autoform
                fi,
                x) w ;
        endfor
    fi ;
    if str ty <> "" :
        for y=auto.y :
            ty (
                if string Autoform_Y :
                    if Autoform_Y <> "" :
                        Autoform_Y
                    else :
                        Autoform
                    fi
                else :
                    Autoform
                fi,
                y) w ;
        endfor
    fi ;
enddef ;

% A couple of extensions:

% Define a vector function sym returning a picture: 10 different shapes,
% unfilled outline, interior filled with different shades of the background.
% Thus, overlapping points on a plot are more clearly distinguishable.

% grap_symsize := fontsize defaultfont ; % can be redefined
%
% dynamic version:

vardef grap_symsize =
  % fontsize defaultfont
  % .8ExHeight
    .35BodyFontSize
enddef ;

path grap_sym[] ; % (internal) symbol path

grap_sym[0] := (0,0) ;                  % point
grap_sym[1] := fullcircle ;             % circle
grap_sym[2] := (up -- down) scaled .5 ; % vertical bar

for i = 3 upto 9 :                  % polygons
    grap_sym[i] :=
        for j = 0 upto i-1 :
            (up scaled .5) rotated (360j/i) --
        endfor cycle ;
endfor

grap_sym[12] := grap_sym[2] rotated +90 ;   % horizontal line
grap_sym[22] := grap_sym[2] rotated +45 ;   % backslash
grap_sym[32] := grap_sym[2] rotated -45 ;   % slash
grap_sym[13] := grap_sym[3] rotated 180 ;   % down  triangle
grap_sym[23] := grap_sym[3] rotated -90 ;   % right triangle
grap_sym[33] := grap_sym[3] rotated +90 ;   % left  triangle
grap_sym[14] := grap_sym[4] rotated +45 ;   % square
grap_sym[15] := grap_sym[5] rotated 180 ;   % down pentagon
grap_sym[16] := grap_sym[6] rotated +90 ;   % turned hexagon
grap_sym[17] := grap_sym[7] rotated 180 ;
grap_sym[18] := grap_sym[8] rotated +22.5 ;

numeric l ;

for j = 5 upto 9 :
    l := length(grap_sym[j]) ;
    pair p[] ;
    for i = 0 upto l :
        p[i] = whatever [point i             of grap_sym[j],
                         point (i+2   mod l) of grap_sym[j]] ;
        p[i] = whatever [point (i+1   mod l) of grap_sym[j],
                         point (i+l-1 mod l) of grap_sym[j]] ;
    endfor
    grap_sym[20+j] := for i = 0 upto l : point i of grap_sym[j]--p[i]--endfor cycle ;
endfor

path s    ; s := grap_sym[4] ;
path q    ; q := s scaled .25 ;
numeric l ; l := length(s) ;

pair p[] ;

grap_sym[24] := for i = 0 upto l-1 :
     hide(
         p[i]   = whatever [point i   of s, point (i+1   mod l) of s] ;
         p[i]   = whatever [point i   of q, point (i-1+l mod l) of q] ;
         p[i+l] = whatever [point i   of s, point (i+1   mod l) of s] ;
         p[i+l] = whatever [point i+1 of q, point (i+2   mod l) of q] ;
     )
     point i of q -- p[i] -- p[i+l] --
endfor cycle ;

grap_sym[34] := grap_sym[24] rotated 45 ;

    % usage: gdraw p plot plotsymbol(1,red,1) ;       % a filled red circle
    % usage: gdraw p plot plotsymbol(4,blue,0) ;      % a blue square
    % usage: gdraw p plot plotsymbol(14,green,0.5) ;  % a 50% filled green diamond

def plotsymbol(expr n,c,f) = % (number,color,color|number)
    if known grap_sym[n] :
        image(
            path p ; p := grap_sym[n] scaled grap_symsize ;
            undraw p withpen currentpen scaled 2 ;
            if cycle p : fill p withcolor
                if color f and known f :
                    f
                elseif numeric f and known f and color c and known c :
                    f[background,c]
                elseif numeric f and known f :
                    f[background,black]
                else :
                    background
                fi ;
            fi
            draw p if color c and known c : withcolor c fi ;
        )
    else :
        nullpicture
    fi
enddef ;

% Here starts a section with some extensions that come in handy when drawing
% polynomials. We assume that metapost is run in double number mode.

% Least-squares "fit" to a polynomial
%
% Example of use:
%
%   path p[] ;
%   numeric a[] ; a0 := 1 ; a1 := .1 ; a2 := .01 ; a3 := .001 ; a4 := 0.0001 ;
%   for i=0 upto 10:
%       x1 := 5i/10 ;
%       y1 := poly.a(4,x1) ;
%       augment.p0(z1) ;
%       augment.p1((x1,y1+.005normaldeviate)) ;
%   endfor
%   gdraw p0 ;
%   gdraw p1 plot plotsymbol(1,black,.5) ;
%
%   numeric chisq, b[] ;
%   polyfit.p1(chisq, b, 4) ;
%   for i=0 upto length p1 :
%       x1 := xpart(point i of p1) ;
%       y1 := poly.b(4,x1) ;
%       augment.p2(z1) ;
%   endfor
%   gdraw p2 ;
%
%   numeric c[] ;
%   linefit.p1(chisq, c) ;
%   for i=0 upto length p1 :
%       x1 := xpart(point i of p1) ;
%       y1 := line.c(x1) ;
%       augment.p3(z1) ;
%   endfor
%   gdraw p3 dashed evenly ;

vardef det@# (expr n) = % find the determinant of a (n+1)*(n+1) matrix
    % indices run from 0 to n.
    % first, we make a copy so as not to corrupt the matrix.
    save copy ; numeric copy[][] ;
    for k=0 upto n :
        for j=0 upto n :
            copy[k][j] := @#[k][j] ;
        endfor
    endfor
    numeric determinant, jj ; determinant := 1 ;
    boolean zero ; zero := false ;
    for k=0 upto n :
        if copy[k][k] = 0 :
            for 0 = k upto n :
                if copy[k][j]=0 :
                    zero := true ;
                else :
                    jj := j ;
                fi
                exitunless zero ;
            endfor
            if zero :
                determinant := 0 ;
            fi
            exitif zero ;
            for j = k upto n : % interchange the columns
                temp := copy[j][jj] ;
                copy[j][jj] := copy[j][k] ;
                copy[j][k] := temp ;
            endfor
            determinant = -determinant ;
        fi
        exitif zero ;
        determinant := determinant * copy[k][k] ;
        if k < n : % subtract row k from lower rows to get a diagonal matrix
            for j = k + 1 upto n :
                for i = k + 1 upto n :
                    copy[j][i] := copy[j][i] - copy[j][k] * copy[k][i] / copy[k][k] ;
                endfor
            endfor
        fi
    endfor ;
    determinant % no ;
enddef ;

% least-squares fit of a polynomial $ of order n to a path @#

vardef polyfit@# (suffix chisq, $) (expr n) =
    if not path begingroup @# endgroup :
        Gerr(begingroup @# endgroup, "Cannot fit--not a path") ;
    elseif length @# < n :
        Gerr(begingroup @# endgroup, "Cannot fit--not enough points") ;
    else:
        chisq := 0 ;
        % calculate sums of the data
        save sumx, sumy ; numeric sumx[], sumy[] ;
        save nmax ; numeric nmax ; nmax := 2*n ;
        for i = 0 upto nmax :
            sumx[i] := 0 ;
        endfor
        for i = 0 upto n :
            sumy[i] := 0 ;
        endfor
        save xp, yp ; numeric xp, yp ;
        save zi ; pair zi ;
        for i = 0 upto length @# :
            zi := point i of @# ;
            x0 := xpart zi ; y0 := ypart zi ;
            x1 := 1 ;
            for j = 0 upto nmax :
                sumx[j] := sumx[j] + x1 ;
                x1 := x1 * x0 ;
            endfor
            y1 := y0 ;
            for j = 0 upto n :
               sumy[j] := sumy[j] + y1 ;
               y1 := y1 * x0 ;
            endfor
            chisq := chisq + y0*y0 ;
        endfor
        % construct matrices and calculate the polynomial coefficients
        save m ; numeric m[][] ;
        for j = 0 upto n :
            for k = 0 upto n :
                i := j + k ;
                m[j][k] := sumx[i] ;
            endfor
        endfor
        save delta ; numeric delta ;
        delta := det.m(n) ;
        if delta = 0 :
            chisq := 0 ;
            for j=0 upto n :
                $[j] := 0 ;
            endfor
        else :
            for l = 0 upto n :
                for j = 0 upto n :
                    for k = 0 upto n :
                        i := j + k ;
                        m[j][k] := sumx[i] ;
                    endfor
                    m[j][l] := sumy[j] ;
                endfor
                $[l] := det.m(n) / delta ;
            endfor
            for j = 0 upto n :
                chisq := chisq - 2*$[j]*sumy[j] ;
                for k = 0 upto n :
                    i := j + k ;
                    chisq := chisq + $[j]*$[k]*sumx[i] ;
                endfor
            endfor
            % normalize by the number of degrees of freedom
            chisq := chisq / (length(@#) - n) ;
        fi
    fi
enddef ;

vardef poly@#(expr n, x) =
    for j = 0 upto n :
        + @#[j]*(x**j)
    endfor % no ;
enddef ;

vardef line@#(expr x) =
    poly@# (1,x)
enddef ;

vardef linefit@#(suffix chisq, $) =
    polyfit@#(chisq, $, 1) ;
enddef ;