home *** CD-ROM | disk | FTP | other *** search
- 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
- From: NJMS@NCSUMVS.BITNET
- Newsgroups: bit.listserv.sas-l
- Subject: goption trantab is key to printing problem
- Message-ID: <SAS-L%92111820175464@VTVM2.CC.VT.EDU>
- Date: 18 Nov 92 15:40:00 GMT
- Sender: "SAS(r) Discussion" <SAS-L@UGA.BITNET>
- Reply-To: NJMS@NCSUMVS.BITNET
- Lines: 33
- Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
-
- Thanks to one and all for the help with my
- printing mainframe v607 graph to TI microlaser p35 printer
- attached to SUN wotkstations problem.
-
- Nathan Mamias from Israel Institute of Technology and Martin Mincey
- at SAS Institute suggested the goption TRANTAB=gtabcms. This was
- a major break through. I have included the code that works.
-
- Thanks again.
- Joy Smith njms@ncsumvs.cc.ncsu.edu
- Dept of Statistics (919) 515-2585
- NCSU
- Raleigh, NC 27695
-
- //SRCIS607 JOB ------------,SMITHJ
- // EXEC SAS607
- //PLT DD SYSOUT=A,DCB=(RECFM=VB,LRECL=136,BLKSIZE=1364),HOLD=YES
- *LIBNAME GDEVICE0 'NJMS.GDEVICE' DISP=SHR;
-
- DATA A;
- DO X=-5 TO 5 BY .25;
- DO Y=-5 TO 5 BY .25;
- Z=SIN(SQRT(X*X+Y*Y));
- OUTPUT;
- END;
- END;
- GOPTIONS DEVICE=PS300 ROTATE GSFMODE=REPLACE GSFNAME=PLT
- TRANTAB=GTABCMS GSFLEN=132;
- TITLE1 'DEVICE=PS300 ROTATE GSFMODE=REPLACE GSFNAME=PLT';
- TITLE2 ' TRANTAB=GTABCMS GSFLEN=132';
- PROC G3D;
- PLOT Y*X=Z;
- RUN;
-