home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / bit / listserv / sasl / 5090 < prev    next >
Encoding:
Internet Message Format  |  1992-11-18  |  1.4 KB

  1. Path: sparky!uunet!stanford.edu!bu.edu!olivea!sgigate!sgiblab!swrinde!zaphod.mps.ohio-state.edu!darwin.sura.net!paladin.american.edu!auvm!NCSUMVS.BITNET!NJMS
  2. From: NJMS@NCSUMVS.BITNET
  3. Newsgroups: bit.listserv.sas-l
  4. Subject: goption trantab is key to printing problem
  5. Message-ID: <SAS-L%92111820175464@VTVM2.CC.VT.EDU>
  6. Date: 18 Nov 92 15:40:00 GMT
  7. Sender: "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  8. Reply-To: NJMS@NCSUMVS.BITNET
  9. Lines: 33
  10. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  11.  
  12. Thanks to one and all for the help with my
  13. printing mainframe v607 graph to TI microlaser p35 printer
  14. attached to SUN wotkstations problem.
  15.  
  16. Nathan Mamias from Israel Institute of Technology and Martin Mincey
  17. at SAS Institute suggested the goption TRANTAB=gtabcms. This was
  18. a major break through. I have included the code that works.
  19.  
  20. Thanks again.
  21. Joy Smith                      njms@ncsumvs.cc.ncsu.edu
  22. Dept of Statistics             (919) 515-2585
  23. NCSU
  24. Raleigh, NC 27695
  25.  
  26. //SRCIS607 JOB ------------,SMITHJ
  27. // EXEC SAS607
  28. //PLT DD SYSOUT=A,DCB=(RECFM=VB,LRECL=136,BLKSIZE=1364),HOLD=YES
  29. *LIBNAME GDEVICE0 'NJMS.GDEVICE' DISP=SHR;
  30.  
  31. DATA A;
  32.   DO X=-5 TO 5 BY .25;
  33.   DO Y=-5 TO 5 BY .25;
  34.   Z=SIN(SQRT(X*X+Y*Y));
  35.   OUTPUT;
  36.   END;
  37.   END;
  38. GOPTIONS   DEVICE=PS300 ROTATE GSFMODE=REPLACE  GSFNAME=PLT
  39.                  TRANTAB=GTABCMS GSFLEN=132;
  40. TITLE1 'DEVICE=PS300 ROTATE GSFMODE=REPLACE  GSFNAME=PLT';
  41. TITLE2 '         TRANTAB=GTABCMS GSFLEN=132';
  42. PROC G3D;
  43. PLOT Y*X=Z;
  44. RUN;
  45.