| 1 |
%!PS-Adobe-3.0 EPSF-3.0 |
| 2 |
%%Creator: MATLAB, The Mathworks, Inc. |
| 3 |
%%Title: tapers.eps |
| 4 |
%%CreationDate: 09/27/ 1 11:15:18 |
| 5 |
%%DocumentNeededFonts: Helvetica |
| 6 |
%%DocumentProcessColors: Cyan Magenta Yellow Black |
| 7 |
%%LanguageLevel: 2 |
| 8 |
%%Pages: 1 |
| 9 |
%%BoundingBox: 58 198 553 589 |
| 10 |
%%EndComments |
| 11 |
|
| 12 |
%%BeginProlog |
| 13 |
|
| 14 |
% MathWorks dictionary |
| 15 |
/MathWorks 160 dict begin |
| 16 |
|
| 17 |
% definition operators |
| 18 |
/bdef {bind def} bind def |
| 19 |
/ldef {load def} bind def |
| 20 |
/xdef {exch def} bdef |
| 21 |
/xstore {exch store} bdef |
| 22 |
|
| 23 |
% operator abbreviations |
| 24 |
/c /clip ldef |
| 25 |
/cc /concat ldef |
| 26 |
/cp /closepath ldef |
| 27 |
/gr /grestore ldef |
| 28 |
/gs /gsave ldef |
| 29 |
/mt /moveto ldef |
| 30 |
/np /newpath ldef |
| 31 |
/cm /currentmatrix ldef |
| 32 |
/sm /setmatrix ldef |
| 33 |
/rc {rectclip} bdef |
| 34 |
/rf {rectfill} bdef |
| 35 |
/rm /rmoveto ldef |
| 36 |
/rl /rlineto ldef |
| 37 |
/s /show ldef |
| 38 |
/sc {setcmykcolor} bdef |
| 39 |
/sr /setrgbcolor ldef |
| 40 |
/sg /setgray ldef |
| 41 |
/w /setlinewidth ldef |
| 42 |
/j /setlinejoin ldef |
| 43 |
/cap /setlinecap ldef |
| 44 |
|
| 45 |
% page state control |
| 46 |
/pgsv () def |
| 47 |
/bpage {/pgsv save def} bdef |
| 48 |
/epage {pgsv restore} bdef |
| 49 |
/bplot /gsave ldef |
| 50 |
/eplot {stroke grestore} bdef |
| 51 |
|
| 52 |
% orientation switch |
| 53 |
/portraitMode 0 def |
| 54 |
/landscapeMode 1 def |
| 55 |
|
| 56 |
% coordinate system mappings |
| 57 |
/dpi2point 0 def |
| 58 |
|
| 59 |
% font control |
| 60 |
/FontSize 0 def |
| 61 |
/FMS { |
| 62 |
/FontSize xstore %save size off stack |
| 63 |
findfont |
| 64 |
[FontSize 0 0 FontSize neg 0 0] |
| 65 |
makefont |
| 66 |
setfont |
| 67 |
}bdef |
| 68 |
|
| 69 |
/reencode { |
| 70 |
exch dup where |
| 71 |
{pop load} {pop StandardEncoding} ifelse |
| 72 |
exch |
| 73 |
dup 3 1 roll |
| 74 |
findfont dup length dict begin |
| 75 |
{ 1 index /FID ne {def}{pop pop} ifelse } forall |
| 76 |
/Encoding exch def |
| 77 |
currentdict |
| 78 |
end |
| 79 |
definefont pop |
| 80 |
} bdef |
| 81 |
|
| 82 |
/isroman { |
| 83 |
findfont /CharStrings get |
| 84 |
/Agrave known |
| 85 |
} bdef |
| 86 |
|
| 87 |
/FMSR { |
| 88 |
3 1 roll 1 index |
| 89 |
dup isroman |
| 90 |
{reencode} {pop pop} ifelse |
| 91 |
exch FMS |
| 92 |
} bdef |
| 93 |
|
| 94 |
/csm { |
| 95 |
1 dpi2point div -1 dpi2point div scale |
| 96 |
neg translate |
| 97 |
landscapeMode eq {90 rotate} if |
| 98 |
} bdef |
| 99 |
|
| 100 |
% line types: solid, dotted, dashed, dotdash |
| 101 |
/SO { [] 0 setdash } bdef |
| 102 |
/DO { [.5 dpi2point mul 4 dpi2point mul] 0 setdash } bdef |
| 103 |
/DA { [6 dpi2point mul] 0 setdash } bdef |
| 104 |
/DD { [.5 dpi2point mul 4 dpi2point mul 6 dpi2point mul 4 dpi2point mul] 0 setdash } bdef |
| 105 |
|
| 106 |
% macros for lines and objects |
| 107 |
/L { |
| 108 |
lineto |
| 109 |
stroke |
| 110 |
} bdef |
| 111 |
/MP { |
| 112 |
3 1 roll moveto |
| 113 |
1 sub {rlineto} repeat |
| 114 |
} bdef |
| 115 |
/AP { |
| 116 |
{rlineto} repeat |
| 117 |
} bdef |
| 118 |
/PP { |
| 119 |
closepath eofill |
| 120 |
} bdef |
| 121 |
/DP { |
| 122 |
closepath stroke |
| 123 |
} bdef |
| 124 |
/MR { |
| 125 |
4 -2 roll moveto |
| 126 |
dup 0 exch rlineto |
| 127 |
exch 0 rlineto |
| 128 |
neg 0 exch rlineto |
| 129 |
closepath |
| 130 |
} bdef |
| 131 |
/FR { |
| 132 |
MR stroke |
| 133 |
} bdef |
| 134 |
/PR { |
| 135 |
MR fill |
| 136 |
} bdef |
| 137 |
/L1i { |
| 138 |
{ currentfile picstr readhexstring pop } image |
| 139 |
} bdef |
| 140 |
|
| 141 |
/tMatrix matrix def |
| 142 |
/MakeOval { |
| 143 |
newpath |
| 144 |
tMatrix currentmatrix pop |
| 145 |
translate scale |
| 146 |
0 0 1 0 360 arc |
| 147 |
tMatrix setmatrix |
| 148 |
} bdef |
| 149 |
/FO { |
| 150 |
MakeOval |
| 151 |
stroke |
| 152 |
} bdef |
| 153 |
/PO { |
| 154 |
MakeOval |
| 155 |
fill |
| 156 |
} bdef |
| 157 |
|
| 158 |
/PD { |
| 159 |
currentlinecap 1 setlinecap 3 1 roll 2 copy moveto lineto stroke setlinecap |
| 160 |
} bdef |
| 161 |
|
| 162 |
/FA { |
| 163 |
newpath |
| 164 |
tMatrix currentmatrix pop |
| 165 |
translate scale |
| 166 |
0 0 1 5 -2 roll arc |
| 167 |
tMatrix setmatrix |
| 168 |
stroke |
| 169 |
} bdef |
| 170 |
/PA { |
| 171 |
newpath |
| 172 |
tMatrix currentmatrix pop |
| 173 |
translate 0 0 moveto scale |
| 174 |
0 0 1 5 -2 roll arc |
| 175 |
closepath |
| 176 |
tMatrix setmatrix |
| 177 |
fill |
| 178 |
} bdef |
| 179 |
|
| 180 |
/FAn { |
| 181 |
newpath |
| 182 |
tMatrix currentmatrix pop |
| 183 |
translate scale |
| 184 |
0 0 1 5 -2 roll arcn |
| 185 |
tMatrix setmatrix |
| 186 |
stroke |
| 187 |
} bdef |
| 188 |
/PAn { |
| 189 |
newpath |
| 190 |
tMatrix currentmatrix pop |
| 191 |
translate 0 0 moveto scale |
| 192 |
0 0 1 5 -2 roll arcn |
| 193 |
closepath |
| 194 |
tMatrix setmatrix |
| 195 |
fill |
| 196 |
} bdef |
| 197 |
|
| 198 |
/vradius 0 def |
| 199 |
/hradius 0 def |
| 200 |
/lry 0 def |
| 201 |
/lrx 0 def |
| 202 |
/uly 0 def |
| 203 |
/ulx 0 def |
| 204 |
/rad 0 def |
| 205 |
|
| 206 |
/MRR { |
| 207 |
/vradius xdef |
| 208 |
/hradius xdef |
| 209 |
/lry xdef |
| 210 |
/lrx xdef |
| 211 |
/uly xdef |
| 212 |
/ulx xdef |
| 213 |
newpath |
| 214 |
tMatrix currentmatrix pop |
| 215 |
ulx hradius add uly vradius add translate |
| 216 |
hradius vradius scale |
| 217 |
0 0 1 180 270 arc |
| 218 |
tMatrix setmatrix |
| 219 |
lrx hradius sub uly vradius add translate |
| 220 |
hradius vradius scale |
| 221 |
0 0 1 270 360 arc |
| 222 |
tMatrix setmatrix |
| 223 |
lrx hradius sub lry vradius sub translate |
| 224 |
hradius vradius scale |
| 225 |
0 0 1 0 90 arc |
| 226 |
tMatrix setmatrix |
| 227 |
ulx hradius add lry vradius sub translate |
| 228 |
hradius vradius scale |
| 229 |
0 0 1 90 180 arc |
| 230 |
tMatrix setmatrix |
| 231 |
closepath |
| 232 |
} bdef |
| 233 |
/FRR { |
| 234 |
MRR stroke } bdef |
| 235 |
/PRR { |
| 236 |
MRR fill } bdef |
| 237 |
|
| 238 |
/MlrRR { |
| 239 |
/lry xdef |
| 240 |
/lrx xdef |
| 241 |
/uly xdef |
| 242 |
/ulx xdef |
| 243 |
/rad lry uly sub 2 div def |
| 244 |
newpath |
| 245 |
tMatrix currentmatrix pop |
| 246 |
ulx rad add uly rad add translate |
| 247 |
rad rad scale |
| 248 |
0 0 1 90 270 arc |
| 249 |
tMatrix setmatrix |
| 250 |
lrx rad sub lry rad sub translate |
| 251 |
rad rad scale |
| 252 |
0 0 1 270 90 arc |
| 253 |
tMatrix setmatrix |
| 254 |
closepath |
| 255 |
} bdef |
| 256 |
/FlrRR { |
| 257 |
MlrRR stroke } bdef |
| 258 |
/PlrRR { |
| 259 |
MlrRR fill } bdef |
| 260 |
|
| 261 |
/MtbRR { |
| 262 |
/lry xdef |
| 263 |
/lrx xdef |
| 264 |
/uly xdef |
| 265 |
/ulx xdef |
| 266 |
/rad lrx ulx sub 2 div def |
| 267 |
newpath |
| 268 |
tMatrix currentmatrix pop |
| 269 |
ulx rad add uly rad add translate |
| 270 |
rad rad scale |
| 271 |
0 0 1 180 360 arc |
| 272 |
tMatrix setmatrix |
| 273 |
lrx rad sub lry rad sub translate |
| 274 |
rad rad scale |
| 275 |
0 0 1 0 180 arc |
| 276 |
tMatrix setmatrix |
| 277 |
closepath |
| 278 |
} bdef |
| 279 |
/FtbRR { |
| 280 |
MtbRR stroke } bdef |
| 281 |
/PtbRR { |
| 282 |
MtbRR fill } bdef |
| 283 |
|
| 284 |
currentdict end def |
| 285 |
%%EndProlog |
| 286 |
|
| 287 |
%%BeginSetup |
| 288 |
MathWorks begin |
| 289 |
|
| 290 |
0 cap |
| 291 |
|
| 292 |
end |
| 293 |
%%EndSetup |
| 294 |
|
| 295 |
%%Page: 1 1 |
| 296 |
%%BeginPageSetup |
| 297 |
%%PageBoundingBox: 58 198 553 589 |
| 298 |
MathWorks begin |
| 299 |
bpage |
| 300 |
%%EndPageSetup |
| 301 |
|
| 302 |
%%BeginObject: obj1 |
| 303 |
bplot |
| 304 |
|
| 305 |
/dpi2point 12 def |
| 306 |
portraitMode 0216 7344 csm |
| 307 |
|
| 308 |
490 273 5933 4695 rc |
| 309 |
93 dict begin %Colortable dictionary |
| 310 |
/c0 { 0 0 0 sr} bdef |
| 311 |
/c1 { 1 1 1 sr} bdef |
| 312 |
/c2 { 1 0 0 sr} bdef |
| 313 |
/c3 { 0 1 0 sr} bdef |
| 314 |
/c4 { 0 0 1 sr} bdef |
| 315 |
/c5 { 1 1 0 sr} bdef |
| 316 |
/c6 { 1 0 1 sr} bdef |
| 317 |
/c7 { 0 1 1 sr} bdef |
| 318 |
c0 |
| 319 |
1 j |
| 320 |
1 sg |
| 321 |
0 0 6921 5185 rf |
| 322 |
6 w |
| 323 |
0 4224 5362 0 0 -4224 900 4613 4 MP |
| 324 |
PP |
| 325 |
-5362 0 0 4224 5362 0 0 -4224 900 4613 5 MP stroke |
| 326 |
4 w |
| 327 |
DO |
| 328 |
SO |
| 329 |
6 w |
| 330 |
0 sg |
| 331 |
900 4613 mt 6262 4613 L |
| 332 |
900 389 mt 6262 389 L |
| 333 |
900 4613 mt 900 389 L |
| 334 |
6262 4613 mt 6262 389 L |
| 335 |
900 4613 mt 6262 4613 L |
| 336 |
900 4613 mt 900 389 L |
| 337 |
900 4613 mt 900 4586 L |
| 338 |
900 389 mt 900 416 L |
| 339 |
900 4613 mt 900 4559 L |
| 340 |
900 389 mt 900 443 L |
| 341 |
%%IncludeResource: font Helvetica |
| 342 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 343 |
|
| 344 |
788 4796 mt |
| 345 |
(10) s |
| 346 |
%%IncludeResource: font Helvetica |
| 347 |
/Helvetica /ISOLatin1Encoding 80 FMSR |
| 348 |
|
| 349 |
921 4722 mt |
| 350 |
(-4) s |
| 351 |
1438 4613 mt 1438 4586 L |
| 352 |
1438 389 mt 1438 416 L |
| 353 |
1753 4613 mt 1753 4586 L |
| 354 |
1753 389 mt 1753 416 L |
| 355 |
1976 4613 mt 1976 4586 L |
| 356 |
1976 389 mt 1976 416 L |
| 357 |
2149 4613 mt 2149 4586 L |
| 358 |
2149 389 mt 2149 416 L |
| 359 |
2291 4613 mt 2291 4586 L |
| 360 |
2291 389 mt 2291 416 L |
| 361 |
2410 4613 mt 2410 4586 L |
| 362 |
2410 389 mt 2410 416 L |
| 363 |
2514 4613 mt 2514 4586 L |
| 364 |
2514 389 mt 2514 416 L |
| 365 |
2606 4613 mt 2606 4586 L |
| 366 |
2606 389 mt 2606 416 L |
| 367 |
2687 4613 mt 2687 4586 L |
| 368 |
2687 389 mt 2687 416 L |
| 369 |
2687 4613 mt 2687 4559 L |
| 370 |
2687 389 mt 2687 443 L |
| 371 |
%%IncludeResource: font Helvetica |
| 372 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 373 |
|
| 374 |
2575 4796 mt |
| 375 |
(10) s |
| 376 |
%%IncludeResource: font Helvetica |
| 377 |
/Helvetica /ISOLatin1Encoding 80 FMSR |
| 378 |
|
| 379 |
2708 4722 mt |
| 380 |
(-3) s |
| 381 |
3225 4613 mt 3225 4586 L |
| 382 |
3225 389 mt 3225 416 L |
| 383 |
3540 4613 mt 3540 4586 L |
| 384 |
3540 389 mt 3540 416 L |
| 385 |
3763 4613 mt 3763 4586 L |
| 386 |
3763 389 mt 3763 416 L |
| 387 |
3937 4613 mt 3937 4586 L |
| 388 |
3937 389 mt 3937 416 L |
| 389 |
4078 4613 mt 4078 4586 L |
| 390 |
4078 389 mt 4078 416 L |
| 391 |
4198 4613 mt 4198 4586 L |
| 392 |
4198 389 mt 4198 416 L |
| 393 |
4301 4613 mt 4301 4586 L |
| 394 |
4301 389 mt 4301 416 L |
| 395 |
4393 4613 mt 4393 4586 L |
| 396 |
4393 389 mt 4393 416 L |
| 397 |
4475 4613 mt 4475 4586 L |
| 398 |
4475 389 mt 4475 416 L |
| 399 |
4475 4613 mt 4475 4559 L |
| 400 |
4475 389 mt 4475 443 L |
| 401 |
%%IncludeResource: font Helvetica |
| 402 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 403 |
|
| 404 |
4363 4796 mt |
| 405 |
(10) s |
| 406 |
%%IncludeResource: font Helvetica |
| 407 |
/Helvetica /ISOLatin1Encoding 80 FMSR |
| 408 |
|
| 409 |
4496 4722 mt |
| 410 |
(-2) s |
| 411 |
5013 4613 mt 5013 4586 L |
| 412 |
5013 389 mt 5013 416 L |
| 413 |
5327 4613 mt 5327 4586 L |
| 414 |
5327 389 mt 5327 416 L |
| 415 |
5551 4613 mt 5551 4586 L |
| 416 |
5551 389 mt 5551 416 L |
| 417 |
5724 4613 mt 5724 4586 L |
| 418 |
5724 389 mt 5724 416 L |
| 419 |
5865 4613 mt 5865 4586 L |
| 420 |
5865 389 mt 5865 416 L |
| 421 |
5985 4613 mt 5985 4586 L |
| 422 |
5985 389 mt 5985 416 L |
| 423 |
6089 4613 mt 6089 4586 L |
| 424 |
6089 389 mt 6089 416 L |
| 425 |
6180 4613 mt 6180 4586 L |
| 426 |
6180 389 mt 6180 416 L |
| 427 |
6262 4613 mt 6262 4586 L |
| 428 |
6262 389 mt 6262 416 L |
| 429 |
6262 4613 mt 6262 4559 L |
| 430 |
6262 389 mt 6262 443 L |
| 431 |
%%IncludeResource: font Helvetica |
| 432 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 433 |
|
| 434 |
6150 4796 mt |
| 435 |
(10) s |
| 436 |
%%IncludeResource: font Helvetica |
| 437 |
/Helvetica /ISOLatin1Encoding 80 FMSR |
| 438 |
|
| 439 |
6283 4722 mt |
| 440 |
(-1) s |
| 441 |
900 4613 mt 954 4613 L |
| 442 |
6262 4613 mt 6208 4613 L |
| 443 |
%%IncludeResource: font Helvetica |
| 444 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 445 |
|
| 446 |
799 4657 mt |
| 447 |
(0) s |
| 448 |
900 4191 mt 954 4191 L |
| 449 |
6262 4191 mt 6208 4191 L |
| 450 |
699 4235 mt |
| 451 |
(0.1) s |
| 452 |
900 3768 mt 954 3768 L |
| 453 |
6262 3768 mt 6208 3768 L |
| 454 |
699 3812 mt |
| 455 |
(0.2) s |
| 456 |
900 3346 mt 954 3346 L |
| 457 |
6262 3346 mt 6208 3346 L |
| 458 |
699 3390 mt |
| 459 |
(0.3) s |
| 460 |
900 2923 mt 954 2923 L |
| 461 |
6262 2923 mt 6208 2923 L |
| 462 |
699 2967 mt |
| 463 |
(0.4) s |
| 464 |
900 2501 mt 954 2501 L |
| 465 |
6262 2501 mt 6208 2501 L |
| 466 |
699 2545 mt |
| 467 |
(0.5) s |
| 468 |
900 2079 mt 954 2079 L |
| 469 |
6262 2079 mt 6208 2079 L |
| 470 |
699 2123 mt |
| 471 |
(0.6) s |
| 472 |
900 1656 mt 954 1656 L |
| 473 |
6262 1656 mt 6208 1656 L |
| 474 |
699 1700 mt |
| 475 |
(0.7) s |
| 476 |
900 1234 mt 954 1234 L |
| 477 |
6262 1234 mt 6208 1234 L |
| 478 |
699 1278 mt |
| 479 |
(0.8) s |
| 480 |
900 811 mt 954 811 L |
| 481 |
6262 811 mt 6208 811 L |
| 482 |
699 855 mt |
| 483 |
(0.9) s |
| 484 |
900 389 mt 954 389 L |
| 485 |
6262 389 mt 6208 389 L |
| 486 |
799 433 mt |
| 487 |
(1) s |
| 488 |
900 4613 mt 6262 4613 L |
| 489 |
900 389 mt 6262 389 L |
| 490 |
900 4613 mt 900 389 L |
| 491 |
6262 4613 mt 6262 389 L |
| 492 |
gs 900 389 5363 4225 rc |
| 493 |
8 0 8 0 8 0 8 0 8 0 8 0 9 0 8 0 |
| 494 |
9 0 9 0 8 0 9 0 9 0 9 0 9 0 10 0 |
| 495 |
9 0 10 0 9 0 10 0 10 0 10 0 10 0 10 0 |
| 496 |
11 0 10 0 11 0 11 0 11 0 11 0 11 0 12 0 |
| 497 |
11 0 12 0 12 0 12 0 13 0 12 0 13 0 13 0 |
| 498 |
13 0 14 0 14 0 14 0 14 0 14 0 15 0 15 0 |
| 499 |
15 0 16 0 16 0 16 0 17 0 17 0 18 0 17 0 |
| 500 |
19 0 18 0 19 0 20 0 20 0 21 0 21 0 22 0 |
| 501 |
22 0 23 0 24 0 25 0 25 0 26 0 27 0 28 0 |
| 502 |
30 0 30 0 32 0 32 0 35 0 36 0 37 0 40 0 |
| 503 |
42 0 44 0 47 0 49 0 54 0 57 0 61 0 67 0 |
| 504 |
74 0 81 0 90 1 102 8 118 53 139 359 169 1481 217 1723 |
| 505 |
303 507 502 79 1861 11 900 391 100 MP stroke |
| 506 |
DA |
| 507 |
8 1 8 1 8 1 8 1 8 1 8 1 9 1 8 1 |
| 508 |
9 1 9 1 8 1 9 2 9 1 9 1 9 2 10 1 |
| 509 |
9 2 10 1 9 2 10 2 10 1 10 2 10 2 10 2 |
| 510 |
11 2 10 2 11 2 11 3 11 2 11 2 11 3 12 3 |
| 511 |
11 3 12 3 12 3 12 3 13 4 12 3 13 4 13 4 |
| 512 |
13 4 14 5 14 4 14 5 14 5 14 6 15 6 15 6 |
| 513 |
15 6 16 7 16 8 16 7 17 9 17 9 18 9 17 10 |
| 514 |
19 11 18 12 19 13 20 13 20 15 21 16 21 17 22 19 |
| 515 |
22 20 23 23 24 24 25 27 25 29 26 33 27 36 28 40 |
| 516 |
30 45 30 50 32 57 32 65 35 73 36 84 37 97 40 112 |
| 517 |
42 131 44 156 47 185 49 223 54 272 57 336 61 424 67 543 |
| 518 |
74 713 81 83 90 0 102 0 118 0 139 0 169 0 217 0 |
| 519 |
303 0 502 0 1861 0 900 389 100 MP stroke |
| 520 |
gr |
| 521 |
|
| 522 |
DA |
| 523 |
3340 4939 mt |
| 524 |
(Slope |S|) s |
| 525 |
644 2829 mt -90 rotate |
| 526 |
(Taper f) s |
| 527 |
90 rotate |
| 528 |
%%IncludeResource: font Helvetica |
| 529 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 530 |
|
| 531 |
584 2464 mt -90 rotate |
| 532 |
(n) s |
| 533 |
90 rotate |
| 534 |
%%IncludeResource: font Helvetica |
| 535 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 536 |
|
| 537 |
644 2411 mt -90 rotate |
| 538 |
( f\(S\)) s |
| 539 |
90 rotate |
| 540 |
SO |
| 541 |
1 sg |
| 542 |
0 391 2112 0 0 -391 960 4553 4 MP |
| 543 |
PP |
| 544 |
-2112 0 0 391 2112 0 0 -391 960 4553 5 MP stroke |
| 545 |
4 w |
| 546 |
DO |
| 547 |
SO |
| 548 |
6 w |
| 549 |
0 sg |
| 550 |
960 4553 mt 3072 4553 L |
| 551 |
960 4162 mt 3072 4162 L |
| 552 |
960 4553 mt 960 4162 L |
| 553 |
3072 4553 mt 3072 4162 L |
| 554 |
960 4553 mt 3072 4553 L |
| 555 |
960 4553 mt 960 4162 L |
| 556 |
960 4553 mt 3072 4553 L |
| 557 |
960 4162 mt 3072 4162 L |
| 558 |
960 4553 mt 960 4162 L |
| 559 |
3072 4553 mt 3072 4162 L |
| 560 |
1293 4228 mt |
| 561 |
(DM95 {1+tanh[ \(S) s |
| 562 |
%%IncludeResource: font Helvetica |
| 563 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 564 |
|
| 565 |
2310 4288 mt |
| 566 |
(c) s |
| 567 |
%%IncludeResource: font Helvetica |
| 568 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 569 |
|
| 570 |
2358 4228 mt |
| 571 |
(-|S|\)/S) s |
| 572 |
%%IncludeResource: font Helvetica |
| 573 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 574 |
|
| 575 |
2723 4288 mt |
| 576 |
(d) s |
| 577 |
%%IncludeResource: font Helvetica |
| 578 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 579 |
|
| 580 |
2776 4228 mt |
| 581 |
( ] }/2) s |
| 582 |
1293 4398 mt |
| 583 |
(GKW91 \(S) s |
| 584 |
%%IncludeResource: font Helvetica |
| 585 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 586 |
|
| 587 |
1866 4458 mt |
| 588 |
(max) s |
| 589 |
%%IncludeResource: font Helvetica |
| 590 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 591 |
|
| 592 |
2047 4398 mt |
| 593 |
(/|S|\)) s |
| 594 |
%%IncludeResource: font Helvetica |
| 595 |
/Helvetica /ISOLatin1Encoding 96 FMSR |
| 596 |
|
| 597 |
2262 4338 mt |
| 598 |
(2) s |
| 599 |
%%IncludeResource: font Helvetica |
| 600 |
/Helvetica /ISOLatin1Encoding 120 FMSR |
| 601 |
|
| 602 |
2315 4398 mt |
| 603 |
( ) s |
| 604 |
gs 960 4162 2113 392 rc |
| 605 |
200 0 1027 4270 2 MP stroke |
| 606 |
DA |
| 607 |
200 0 1027 4451 2 MP stroke |
| 608 |
gr |
| 609 |
|
| 610 |
DA |
| 611 |
SO |
| 612 |
|
| 613 |
end |
| 614 |
|
| 615 |
eplot |
| 616 |
%%EndObject |
| 617 |
|
| 618 |
epage |
| 619 |
end |
| 620 |
|
| 621 |
showpage |
| 622 |
|
| 623 |
%%Trailer |
| 624 |
%%EOF |