[pstricks] smoothing 3d plot (pst-3dplot with fileplotThreeD)

Toche, Patrick ptoche at cityu.edu.hk
Mon Nov 14 14:47:58 CET 2011


Herbert, thanks for your suggestion. I don't follow the steps, but I'm good enough to copy-paste. As it happens, in your code lines like \pst at def were written \pst at def, and this caused error messages, but I was able to figure out the problem and fix it. That was pleasant.

I've now got quite a bit further: I can write a loop with multido which inputs my data files and plots all 5 trajectories (I haven't tested 100 trajectories yet)! I can also set a different color for each line. That's pretty much all I wanted.

Now I'm working on making the graph beautiful, and there's still some way to go. To see what I'm aiming at, here is the graph I got with Maple
patrick.toche.free.fr/stuff/urq.png
Maple does a very, very poor job of exporting its graphs, and for this reason I would like to rebuild the graph with PSTricks, if at all possible.

My first problem is that I don't understand how to set the units (and why there isn't a zunit!). 

Expressed in the actual units of the data, the range of interest for my plot is:

      xMin = -0.010
    , xMax = +0.000
    , yMin = +0.026
    , yMax = +0.030
    , zMin = +0.026
    , zMax = +0.030

(The numbers I selected below are just so I can see the trajectories and the axes, but it doesn't correspond to the final product, as I couldn't figure out the proper way to select units)

I want the pspicture to more or less fill an A4, or half of an A4 or even better an A4 in landscape mode rather than portrait. Or, rather, I want to maximize quality (file size is not a problem), however that may be achieved.

I just don't understand how to select the xunit and yunit.

Also, from what you wrote earlier, I gather that \pst at def{ScalePointsThreeD}< somehow redefines units. Is that right?

Any suggestions will be much appreciated. 

Below, I copy my data files again, where I have manually removed data I do not wish to plot. This would be very tedious in my real-life application, where I intend to produce 50 or so graphics with 100 multi-colored trajectories each... You say that readdata can be instructed to load only a subset of the data, do you have an example of that please?

many Thanks, Herbert, you've been very helpful,

Patrick.



%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}%
\usepackage{verbatim}%
\usepackage{pst-3dplot}%
\usepackage{pstricks-add}%

\makeatletter%
\pst at def{ScalePointsThreeD}<%
   counttomark dup dup cvi eq not { exch pop } if
   /m exch def /n m 3 div cvi def
   n {         %%%% now we have x y z
     tx at 3DPlotDict begin
     100 mul   %%%% 10*z
     3 -1 roll %%%% y 100*z x
     20 mul
     3 1 roll  %%%% 20*x y 100*z
     saveCoor
     ConvertTo2D
     x2D \pst at number\psxunit mul y2D \pst at number\psyunit mul
     end
     m 1 sub 1 roll m 1 sub 1 roll /m m 3 sub def } repeat>
\makeatother%

\pagestyle{empty}%

\begin{document}%

\begin{pspicture}(0,0)(\textwidth,\textheight)%

\begin{comment}% problem setting units
  \psset{%
  xunit = 10pt
  , yunit = 10pt
  }%
\end{comment}%

  \def\xMin{-10}%
  \def\xMax{0}%
  \def\yMin{0}%
  \def\yMax{10}%
  \def\zMin{0}%
  \def\zMax{10}%
  
  \def\N{5}%Number of Lines

  \pstThreeDCoor[%
      xMin = \xMin
    , xMax = \xMax
    , yMin = \yMin
    , yMax = \yMax
    , zMin = \zMin
    , zMax = \zMax
    , IIIDticks = true
    , IIIDlabels = true
    , IIIDticksize = 0.2
    , linecolor = red
    , linewidth = 2\pslinewidth
    , nameX = $\mathbf{x}$
    , nameY = $\mathbf{y}$
    , nameZ = $\mathbf{z}$
  ]%


\begin{comment}% single line plot
  \readdata{\data}{data/xyz1.txt}%
  \typeout{\data}%print data during debug
  \listplotThreeD[plotstyle=line,linecolor=blue]{\data}%
\end{comment}


%\begin{comment}% multiple line plot
\definecolorseries{lineColors}{hsb}{last}{red}{blue}%
\resetcolorseries[\N]{lineColors}%
\multido{\n=1+1}{\N}{%
  \readdata{\data}{data/xyz\n.txt}%
  \listplotThreeD[
    plotstyle = line
    , linecolor = {lineColors!![\n}% syntax is [\n ??
    ]{\data}%
}%
%\end{comment

  
\end{pspicture}%


\end{document}%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%



xyz1.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-8.9122193415559603e-002,5.7036367813019580e-002,7.0114067110762610e-002
-8.6775975148679824e-002,5.7378217056410191e-002,7.0145542977232037e-002
-8.4503451124030904e-002,5.7713244839130672e-002,7.0178830055704550e-002
-8.2301676051273698e-002,5.8041586219638369e-002,7.0214035224756929e-002
-8.0167739767180488e-002,5.8363373004699126e-002,7.0251265569863539e-002
-7.8098760903677317e-002,5.8678733391938069e-002,7.0290627839309866e-002
-7.6091880707077827e-002,5.8987791602077178e-002,7.0332227867242622e-002
-7.4144257006386480e-002,5.9290667500654357e-002,7.0376169969037006e-002
-7.2253058324011646e-002,5.9587476208852949e-002,7.0422556314866491e-002
-7.0415458123291585e-002,5.9878327703268848e-002,7.0471486288209984e-002
-6.8628629183978482e-002,6.0163326404369125e-002,7.0523055836687845e-002
-6.6889738093590737e-002,6.0442570753381622e-002,7.0577356823034315e-002
-6.5195939842680947e-002,6.0716152777468932e-002,7.0634476384557193e-002
-6.3544372505434266e-002,6.0984157642847862e-002,7.0694496309377547e-002
-6.1932151988689260e-002,6.1246663195709219e-002,7.0757492437991648e-002
-6.0356366824873366e-002,6.1503739490528259e-002,7.0823534098199956e-002
-5.8814072986124177e-002,6.1755448305549805e-002,7.0892683581309679e-002
-5.7302288689684747e-002,6.2001842644946993e-002,7.0964995666614877e-002
-5.5817989166184107e-002,6.2242966227317113e-002,7.1040517200642264e-002
-5.4358101356268944e-002,6.2478852959898065e-002,7.1119286736411158e-002
-5.2919498502405814e-002,6.2709526398017953e-002,7.1201334237151720e-002
-5.1498994597949120e-002,6.2934999189029214e-002,7.1286680847457040e-002
-5.0093338656747706e-002,6.3155272500082446e-002,7.1375338733892332e-002
-4.8699208763810613e-002,6.3370335428864097e-002,7.1467310995533551e-002
-4.7313205868217634e-002,6.3580164396495026e-002,7.1562591643940632e-002
-4.5931847279245916e-002,6.3784722521661855e-002,7.1661165650661843e-002
-4.4551559826568533e-002,6.3983958975007513e-002,7.1763009059378005e-002
-4.3168672647765215e-002,6.4177808312915183e-002,7.1868089158900791e-002
-4.1779409566107539e-002,6.4366189789624023e-002,7.1976364712067961e-002
-4.0379881025013414e-002,6.4549006646883858e-002,7.2087786235375803e-002
-3.8966075547190324e-002,6.4726145380299069e-002,7.2202296323238296e-002
-3.7533850689549730e-002,6.4897474981644332e-002,7.2319830010515965e-002
-3.6078923468263885e-002,6.5062846156668602e-002,7.2440315166803951e-002
-3.4596860232330807e-002,6.5222090518057579e-002,7.2563672915642224e-002
-3.3083065968382001e-002,6.5375019753570879e-002,7.2689818071803747e-002
-3.1532773024109284e-002,6.5521424769672945e-002,7.2818659589756515e-002
-2.9941029243689646e-002,6.5661074811460524e-002,7.2950101016158356e-002
-2.8302685516068800e-002,6.5793716560117246e-002,7.3084040937844763e-002
-2.6612382742322600e-002,6.5919073209859722e-002,7.3220373416993043e-002
-2.4864538240938379e-002,6.6036843526931344e-002,7.3358988400179001e-002
-2.3053331619837598e-002,6.6146700894119781e-002,7.3499772083376005e-002
-2.1172690162017033e-002,6.6248292345209930e-002,7.3642607201015856e-002
-1.9216273795802534e-002,6.6341237594943675e-002,7.3787373180008081e-002
-1.7177459764773240e-002,6.6425128071449277e-002,7.3933946033664766e-002
-1.5049327193964415e-002,6.6499525959829900e-002,7.4082197708487299e-002
-1.2824641936371100e-002,6.6563963268024343e-002,7.4231994140120730e-002
-1.0495842583890445e-002,6.6617940929986588e-002,7.4383189791735568e-002
-8.0550301583059980e-003,6.6660927969600270e-002,7.4535610521519760e-002
-5.4939710555762973e-003,6.6692360773869502e-002,7.4688984009955203e-002
-2.8041722953321244e-003,6.6711642644705457e-002,7.4842449582119844e-002
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

xyz2.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-8.7748588214584713e-002,5.7217854173284580e-002,7.0111722386520844e-002
-8.5445575495050413e-002,5.7555602263216307e-002,7.0143015963314445e-002
-8.3214987938180024e-002,5.7886610485364053e-002,7.0176133931379031e-002
-8.1053931647392122e-002,5.8211013883185538e-002,7.0211183897059118e-002
-7.8959545795155878e-002,5.8528944209253531e-002,7.0248273620897528e-002
-7.6928996401853744e-002,5.8840529570528835e-002,7.0287510462043706e-002
-7.4959470267604703e-002,5.9145894063400990e-002,7.0329000790067070e-002
-7.3048169052442061e-002,5.9445157398185594e-002,7.0372849369510909e-002
-7.1192303500290002e-002,5.9738434512808296e-002,7.0419158723351402e-002
-6.9389087801172838e-002,6.0025835175539388e-002,7.0468028482414610e-002
-6.7635734080994991e-002,6.0307463576445688e-002,7.0519554728247544e-002
-6.5929447009789491e-002,6.0583417907492353e-002,7.0573829337673005e-002
-6.4267418512676158e-002,6.0853789930968794e-002,7.0630939337379781e-002
-6.2646822568273974e-002,6.1118664536112623e-002,7.0690966277209666e-002
-6.1064810074114455e-002,6.1378119283627061e-002,7.0753985630644015e-002
-5.9518503756877582e-002,6.1632223937844677e-002,7.0820066230770071e-002
-5.8004993102093130e-002,6.1881039986209162e-002,7.0889269749542475e-002
-5.6521329274653226e-002,6.2124620145677302e-002,7.0961650227432449e-002
-5.5064520000003336e-002,6.2363007855637392e-002,7.1037253659789010e-002
-5.3631524371890442e-002,6.2596236756774074e-002,7.1116117645109611e-002
-5.2219247552547504e-002,6.2824330155366440e-002,7.1198271099427418e-002
-5.0824535327133491e-002,6.3047300472259149e-002,7.1283734039613050e-002
-4.9444168475598453e-002,6.3265148675884356e-002,7.1372517437340216e-002
-4.8074856921556754e-002,6.3477863698375103e-002,7.1464623143880329e-002
-4.6713233620147128e-002,6.3685421834058148e-002,7.1560043885008889e-002
-4.5355848144373122e-002,6.3887786119224577e-002,7.1658763323647706e-002
-4.3999159932107179e-002,6.4084905692360736e-002,7.1760756187291969e-002
-4.2639531155799111e-002,6.4276715133768800e-002,7.1865988455829644e-002
-4.1273219178586167e-002,6.4463133783609045e-002,7.1974417604794241e-002
-3.9896368563100755e-002,6.4644065037490789e-002,7.2085992898503357e-002
-3.8505002601101672e-002,6.4819395618707365e-002,7.2200655726724933e-002
-3.7095014335183064e-002,6.4988994826388244e-002,7.2318339978440477e-002
-3.5662157047159748e-002,6.5152713759022152e-002,7.2438972445969183e-002
-3.4202034191667112e-002,6.5310384512980560e-002,7.2562473252544960e-002
-3.2710088757762996e-002,6.5461819356001635e-002,7.2688756296459975e-002
-3.1181592045996583e-002,6.5606809875894068e-002,7.2817729704849385e-002
-2.9611631854651127e-002,6.5745126105206345e-002,7.2949296289898977e-002
-2.7995100075413011e-002,6.5876515623010071e-002,7.3083353999127174e-002
-2.6326679705122046e-002,6.6000702635705483e-002,7.3219796351363622e-002
-2.4600831291654787e-002,6.6117387039305309e-002,7.3358512845366389e-002
-2.2811778842771607e-002,6.6226243466582985e-002,7.3499389323051847e-002
-2.0953495243931173e-002,6.6326920323395905e-002,7.3642308255701505e-002
-1.9019687255523419e-002,6.6419038819647294e-002,7.3787148894093102e-002
-1.7003780203551873e-002,6.6502192001712326e-002,7.3933787157533640e-002
-1.4898902559401427e-002,6.6575943794893344e-002,7.4082094974709398e-002
-1.2697870791669005e-002,6.6639828066865650e-002,7.4231938332053105e-002
-1.0393175372722493e-002,6.6693347727000640e-002,7.4383171801569614e-002
-7.9769704555649346e-003,6.6735973884829228e-002,7.4535621387851872e-002
-5.4410767983672044e-003,6.6767145116059634e-002,7.4689014886926045e-002
-2.7770570340846907e-003,6.6786267005576494e-002,7.4842491159245614e-002
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

xyz3.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-8.6470274915997014e-002,5.7387361753408729e-002,7.0109384211699322e-002
-8.4207423867015435e-002,5.7721266877356223e-002,7.0140505928359118e-002
-8.2015822581199369e-002,5.8048509088585339e-002,7.0173464731501170e-002
-7.9892624627718359e-002,5.8369223389891069e-002,7.0208368926801962e-002
-7.7835014736108266e-002,5.8683541457118335e-002,7.0245326921813747e-002
-7.5840202679368432e-002,5.8991591286979693e-002,7.0284446659264602e-002
-7.3905417309924976e-002,5.9293496834631497e-002,7.0325835018003491e-002
-7.2027900744300252e-002,5.9589377640715237e-002,7.0369597187119645e-002
-7.0204902693886018e-002,5.9879348447712887e-002,7.0415836019770764e-002
-6.8433674933320393e-002,6.0163518805349842e-002,7.0464651373869300e-002
-6.6711465898841832e-002,6.0441992664881879e-002,7.0516139447491688e-002
-6.5035515405080804e-002,6.0714867962111937e-002,7.0570392117384639e-002
-6.3403049465563188e-002,6.0982236188875619e-002,7.0627496289129565e-002
-6.1811275201293141e-002,6.1244181952902724e-002,7.0687533267839608e-002
-6.0257375815770467e-002,6.1500782525694297e-002,7.0750578157911165e-002
-5.8738505615452463e-002,6.1752107378294271e-002,7.0816699300330993e-002
-5.7251785047790264e-002,6.1998217704489877e-002,7.0885957755203371e-002
-5.5794295730135030e-002,6.2239165931221134e-002,7.0958406836761440e-002
-5.4363075436342244e-002,6.2474995215608883e-002,7.1034091706888652e-002
-5.2955113009139396e-002,6.2705738928232585e-002,7.1113049032446585e-002
-5.1567343161113652e-002,6.2931420121932785e-002,7.1195306710192502e-002
-5.0196641128207140e-002,6.3152050985578079e-002,7.1280883662116892e-002
-4.8839817136344929e-002,6.3367632281964056e-002,7.1369789702430561e-002
-4.7493610642343281e-002,6.3578152769049656e-002,7.1462025476353996e-002
-4.6154684309526670e-002,6.3783588603656585e-002,7.1557582469435957e-002
-4.4819617678152346e-002,6.3983902726600622e-002,7.1656443084936156e-002
-4.3484900492654258e-002,6.4179044228392462e-002,7.1758580785904288e-002
-4.2146925647342431e-002,6.4368947694355111e-002,7.1863960297247134e-002
-4.0801981714897309e-002,6.4553532528262306e-002,7.1972537862729960e-002
-3.9446245023710143e-002,6.4732702253503430e-002,7.2084261550917211e-002
-3.8075771252376087e-002,6.4906343790867044e-002,7.2199071603611858e-002
-3.6686486512885176e-002,6.5074326712190350e-002,7.2316900820195984e-002
-3.5274177897218581e-002,6.5236502469263727e-002,7.2437674970955254e-002
-3.3834483466146710e-002,6.5392703597593069e-002,7.2561313232430341e-002
-3.2362881663014202e-002,6.5542742894916184e-002,7.2687728637863061e-002
-3.0854680140223648e-002,6.5686412574690115e-002,7.2816828535793549e-002
-2.9305003992298236e-002,6.5823483395228602e-002,7.2948515049518561e-002
-2.7708783395204859e-002,6.5953703765582336e-002,7.3082685529377314e-002
-2.6060740659247364e-002,6.6076798829988681e-002,7.3219232989168229e-002
-2.4355376712614767e-002,6.6192469533284032e-002,7.3358046514127667e-002
-2.2586957044595693e-002,6.6300391670562384e-002,7.3499011622179741e-002
-2.0749497153309128e-002,6.6400214925309620e-002,7.3642010547375070e-002
-1.8836747568650471e-002,6.6491561901363114e-002,7.3786922385937842e-002
-1.6842178562635059e-002,6.6574027155412260e-002,7.3933622980615413e-002
-1.4758964742465710e-002,6.6647176238474687e-002,7.4081984255782884e-002
-1.2579969908146983e-002,6.6710544757175513e-002,7.4231872258579995e-002
-1.0297733055749181e-002,6.6763637469568343e-002,7.4383141677190928e-002
-7.9044580418499138e-003,6.6805927438613605e-002,7.4535618670200046e-002
-5.3920164891563408e-003,6.6836855291609709e-002,7.4689031169941911e-002
-2.7520230626974043e-003,6.6855828755081073e-002,7.4842517737921291e-002
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

xyz4.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-8.5215949850476008e-002,5.7554262539052228e-002,7.0106937327588145e-002
-8.2992463600543534e-002,5.7884371915507160e-002,7.0137888357732561e-002
-8.0839079092535127e-002,5.8207894863266441e-002,7.0170689362459418e-002
-7.8752996120620172e-002,5.8524966319687073e-002,7.0205449355126806e-002
-7.6731443773152788e-002,5.8835717860199602e-002,7.0242277396316388e-002
-7.4771674417782985e-002,5.9140277348571108e-002,7.0281282015810534e-002
-7.2870957839118497e-002,5.9438768576891281e-002,7.0322570602431050e-002
-7.1026575527776123e-002,5.9731310895143060e-002,7.0366248767652143e-002
-6.9235815115206559e-002,6.0018018830084813e-002,7.0412419689661859e-002
-6.7495964947809864e-002,6.0299001693278703e-002,7.0461183445309161e-002
-6.5804308792561522e-002,6.0574363178140037e-002,7.0512636338111209e-002
-6.4158120660813264e-002,6.0844200945764884e-002,7.0566870230764897e-002
-6.2554659738234722e-002,6.1108606199468722e-002,7.0623971891134549e-002
-6.0991165401365503e-002,6.1367663247747971e-002,7.0684022360505680e-002
-5.9464852302574943e-002,6.1621449055543141e-002,7.0747096352998709e-002
-5.7972905498351483e-002,6.1870032783476532e-002,7.0813261694465626e-002
-5.6512475595931227e-002,6.2113475314808132e-002,7.0882578808782015e-002
-5.5080673888216754e-002,6.2351828769720320e-002,7.0955100258549203e-002
-5.3674567445683961e-002,6.2585136006489614e-002,7.1030870346327268e-002
-5.2291174131109536e-002,6.2813430109063914e-002,7.1109924781388043e-002
-5.0927457500689575e-002,6.3036733860386718e-002,7.1192290415707765e-002
-4.9580321554565605e-002,6.3255059200877095e-002,7.1277985051708348e-002
-4.8246605296838364e-002,6.3468406671187375e-002,7.1367017322736148e-002
-4.6923077066827280e-002,6.3676764838526648e-002,7.1459386646192460e-002
-4.5606428600385725e-002,6.3880109705496763e-002,7.1555083247577755e-002
-4.4293268782904911e-002,6.4078404100591416e-002,7.1654088252944378e-002
-4.2980117054538934e-002,6.4271597049273849e-002,7.1756373845748206e-002
-4.1663396430113069e-002,6.4459623124583823e-002,7.1861903483390777e-002
-4.0339426097987532e-002,6.4642401776319247e-002,7.1970632168020854e-002
-3.9004413563930050e-002,6.4819836637724268e-002,7.2082506765284868e-002
-3.7654446308505278e-002,6.4991814808780995e-002,7.2197466364524635e-002
-3.6285482929834204e-002,6.5158206115307940e-002,7.2315442673588484e-002
-3.4893343746626067e-002,6.5318862343207676e-002,7.2436360441216124e-002
-3.3473700840343609e-002,6.5473616447422292e-002,7.2560137899997906e-002
-3.2022067519516507e-002,6.5622281735442628e-002,7.2686687222913257e-002
-3.0533787194118762e-002,6.5764651025550847e-002,7.2815914986539679e-002
-2.9004021654232128e-002,6.5900495780382734e-002,7.2947722633382256e-002
-2.7427738751508796e-002,6.6029565216897845e-002,7.3082006926089960e-002
-2.5799699492359860e-002,6.6151585394452955e-002,7.3218660383943202e-002
-2.4114444558318255e-002,6.6266258283341567e-002,7.3357571689924794e-002
-2.2366280282854256e-002,6.6373260816977434e-002,7.3498626049829929e-002
-2.0549264128703795e-002,6.6472243931868055e-002,7.3641705472669544e-002
-1.8657189736283938e-002,6.6562831600615893e-002,7.3786688912446663e-002
-1.6683571653825488e-002,6.6644619864562354e-002,7.3933452147653372e-002
-1.4621629944182497e-002,6.6717175874377116e-002,7.4081867110406971e-002
-1.2464275048645643e-002,6.6780036949287649e-002,7.4231799920535690e-002
-1.0204093788078130e-002,6.6832709669547297e-002,7.4383105394272717e-002
-7.8333390161099692e-003,6.6874669025109884e-002,7.4535609856626814e-002
-5.3439325064254988e-003,6.6905357668685883e-002,7.4689041394119554e-002
-2.7275402310265109e-003,6.6924185442757078e-002,7.4842538341784434e-002
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

xyz5.txt
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-8.3971310591699613e-002,5.7720436672869496e-002,7.0104352762739020e-002
-8.1786843305768214e-002,5.8046755012902816e-002,7.0135132396263289e-002
-7.9671343867672328e-002,5.8366563784928646e-002,7.0167775241614716e-002
-7.7622057588790205e-002,5.8679997835987513e-002,7.0202391036227982e-002
-7.5636257228572243e-002,5.8987188616861003e-002,7.0239089507020666e-002
-7.3711237080805111e-002,5.9288263834705840e-002,7.0277979780666702e-002
-7.1844307213345379e-002,5.9583347095430540e-002,7.0319169762055475e-002
-7.0032787860314763e-002,5.9872557535695002e-002,7.0362765487105378e-002
-6.8274003961443480e-002,6.0156009444291655e-002,7.0408870456881406e-002
-6.6565279841878752e-002,6.0433811872753707e-002,7.0457584960703007e-002
-6.4903934024776955e-002,6.0706068235096458e-002,7.0509005396678925e-002
-6.3287274163081692e-002,6.0972875896463816e-002,7.0563223598333516e-002
-6.1712592078208249e-002,6.1234325750632423e-002,7.0620326176498133e-002
-6.0177158885859429e-002,6.1490501786107821e-002,7.0680393885421106e-002
-5.8678220190201087e-002,6.1741480640694762e-002,7.0743501022093688e-002
-5.7212991321134797e-002,6.1987331144243457e-002,7.0809714867194770e-002
-5.5778652588864205e-002,6.2228113849302304e-002,7.0879095175550508e-002
-5.4372344525605493e-002,6.2463880549320359e-002,7.0951693723102727e-002
-5.2991163082197375e-002,6.2694673783928109e-002,7.1027553916363964e-002
-5.1632154745440827e-002,6.2920526330848811e-002,7.1106710469231851e-002
-5.0292311538816387e-002,6.3141460683739881e-002,7.1189189150620724e-002
-4.8968565869630387e-002,6.3357488515398783e-002,7.1275006605228217e-002
-4.7657785182019213e-002,6.3568610125416827e-002,7.1364170248081865e-002
-4.6356766377410145e-002,6.3774813871561545e-002,7.1456678232519930e-002
-4.5062229961252975e-002,6.3976075583837416e-002,7.1552519489542749e-002
-4.3770813877058147e-002,6.4172357960294080e-002,7.1651673835646079e-002
-4.2479066988850428e-002,6.4363609943558442e-002,7.1754112144950685e-002
-4.1183442174084130e-002,6.4549766076937409e-002,7.1859796580468246e-002
-3.9880288991557628e-002,6.4730745839135684e-002,7.1968680878880587e-002
-3.8565845890525648e-002,6.4906452956500202e-002,7.2080710682322982e-002
-3.7236231929819799e-002,6.5076774691844960e-002,7.2195823910404466e-002
-3.5887437978871770e-002,6.5241581109007379e-002,7.2313951165494939e-002
-3.4515317375856593e-002,6.5400724312452210e-002,7.2435016164140206e-002
-3.3115576022031294e-002,6.5554037661434500e-002,7.2558936187529538e-002
-3.1683761895606385e-002,6.5701334958519458e-002,7.2685622543938164e-002
-3.0215253973224880e-002,6.5842409612579283e-002,7.2814981036173662e-002
-2.8705250552388376e-002,6.5977033776833852e-002,7.2946912427085273e-002
-2.7148756975550976e-002,6.6104957462899142e-002,7.3081312894804143e-002
-2.5540572762125138e-002,6.6225907632530445e-002,7.3218074469481864e-002
-2.3875278165437597e-002,6.6339587269312175e-002,7.3357085439061193e-002
-2.2147220182878066e-002,6.6445674433405960e-002,7.3498230705979092e-002
-2.0350498062853301e-002,6.6543821303405679e-002,7.3641392064144967e-002
-1.8478948378503075e-002,6.6633653210440888e-002,7.3786448336407975e-002
-1.6526129778085982e-002,6.6714767671027325e-002,7.3933275248816072e-002
-1.4485307605914105e-002,6.6786733426847752e-002,7.4081744753687728e-002
-1.2349438773244658e-002,6.6849089502025991e-002,7.4231723056339016e-002
-1.0111157758093046e-002,6.6901344292348258e-002,7.4383065114205699e-002
-7.7627662482395330e-003,6.6942974709257766e-002,7.4535597432596565e-002
-5.2962360113116740e-003,6.6973425426677932e-002,7.4689048268764810e-002
-2.7032841733293247e-003,6.6992108400305478e-002,7.4842555774844444e-002
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%


More information about the PSTricks mailing list