name=Yorick nameURL=ftp%3A%2F%2Ficf.llnl.gov%2Fpub%2FYorick%2Fhtml%2Fyorick_toc.html see= logo= type=M%20-%20Mathematical%20or%20Simulation desc=Yorick%20is%20an%20interpreted%20block-structured%0D%0Alanguage%20intended%20for%20data%20analysis%0D%0Aand%20data%20graphics.%20%20It%20is%20designed%20to%0D%0Abe%20easy%20to%20use%2C%20but%20scalable%20to%20very%0D%0Alarge%20datasets%20and%20very%20complex%20computations.%0D%0A%3Cbr%3E%0D%0AThe%20syntax%20of%20Yorick%20is%20very%20simple%2C%20and%0D%0Athe%20language%20looks%20somewhat%20like%20a%20simplified%0D%0AC.%20%20Variables%20need%20not%20be%20declared.%20%0D%0AData%20types%20supported%20include%20integers%2C%0D%0Afloating-point%20numbers%2C%20vectors%20of%20numbers%2C%0D%0Aand%20file%20handles.%20%20The%20language%20does%0D%0Asupport%20definition%20of%20procedures%20and%0D%0Afunctions%2C%20along%20with%20a%20simple%0D%0Aset%20of%20conditional%20and%20loop%20control%0D%0Astructures.%0D%0AYorick%20can%20also%20be%20extended%20with%20C%0D%0Acode%20and%20libraries.%0D%0A%3Cbr%3E%0D%0AYorick%20includes%20extensive%20facilities%20for%0D%0Acreating%20and%20manipulating%20numeric%20vectors%0D%0Aand%20datasets.%20%20Some%20versions%0D%0Acan%20read%20and%20write%0D%0Aa%20variety%20of%0D%0Ascientific%20data%20formats.%20%20Yorick%20has%0D%0Aa%20broad%20set%20of%20data%20display%20and%20graphing%0D%0Afacilities.%20%20One%20of%20the%20language%27s%0D%0Amain%20purposes%20is%20filtering%20and%0D%0Agraphing%20scientific%20data%0D%0Aobtained%20from%20huge%20experiments%20and%20%0D%0Anumeric%20simulations.%20%20%0D%0A%3Cbr%3E%0D%0AThere%20is%20only%20one%20implementation%20of%20Yorick%2C%0D%0Aavailable%20free%20from%20LLNL.%20%20It%20runs%20on%20Unix%20%0D%0Aand%20Linux%20systems%2C%20Macintoshes%2C%20and%0D%0A32-bit%20Windows. origin=Lawrence%20Livermore%20National%20Laboratory%2C%201994%3F seealso=S%2C%20Pari%2C%20Matlab remark=Yorick%20is%20not%20well%20known%2C%20but%20it%20is%20a%20very%0D%0Ahigh-performance%20computation%20language%20used%0D%0Aon%20supercomputers%20and%20Unix%20workstations%0D%0Aat%20LLNL.%20%20It%20is%20fairly%20low%20level%20for%20a%0D%0Amathematical%20analysis%20language%2C%20but%20%0D%0Amany%20higher-level%20facilities%20are%20available%0D%0Aas%20extensions. links1=Yorick%20FAQ%20List%3Dftp%3A%2F%2Fftp-icf.llnl.gov%2Fpub%2Fmunro%2Fyorickfaq.html links2=Yorick%20FTP%20Distribution%20Archive%3Dftp%3A%2F%2Fftp-icf.llnl.gov%2Fpub%2FYorick%2F links3= links4= links5= date=Last%20updated%2012%2F19%2F97 sample=Plot%20function%20for%20a%20complex%20scalar%20function%0D%0Aby%20Georg%20Michel.%0D%0A%3Cp%3E%0D%0A%3Cpre%3E%0D%0Afunc%20cmplxplot%28z%2C%20u%29%0D%0A%2F%2A%20DOCUMENT%20cmplxplot%2C%20z%2C%20u%0D%0A%20%2A%20plots%20a%20scalar%20complex%20function%20of%20a%20complex%20variable.%20%2A%2F%0D%0A%7B%0D%0A%20%20%20resx%3D100%3B%20resy%3D100%3B%0D%0A%20%20%20s%3D%5B%5Bsqrt%282.%2F3.%29%2C0%2C1%2Fsqrt%283%29%5D%2C%5B-1%2Fsqrt%282%2A3.0%29%2C1%2Fsqrt%282.%29%2C1%2Fsqrt%283%29%5D%2C%0D%0A%20%20%20%20%20%20%5B-1%2Fsqrt%282%2A3.0%29%2C-1%2Fsqrt%282.%29%2C1%2Fsqrt%283%29%5D%5D%3B%0D%0A%20%20%20phi%3Dspan%28-pi%2Cpi%2C256%29%3B%0D%0A%20%20%20vec%3Darray%28double%2C3%2C256%29%3B%0D%0A%20%20%20vec%281%2C%29%3Dcos%28phi%29%3B%20%20%20%20vec%282%2C%29%3Dsin%28phi%29%3B%20%20%20%20vec%283%2C%29%3D1%2Fsqrt%282%29%28-%29%3B%0D%0A%20%20%20f%3Ds%28%2B%2C%29%2Avec%28%2B%2C%29%3B%0D%0A%20%20%20palette%2Cbytscl%28f%282%2C%29%2Ctop%3D255%29%2Cbytscl%28f%281%2C%29%2Ctop%3D255%29%2Cbytscl%28f%283%2C%29%2Ctop%3D255%29%3B%0D%0A%20%20%20xmin%3Dmin%28u.re%29%3B%20%20%20xmax%3Dmax%28u.re%29%3B%0D%0A%20%20%20ymin%3Dmin%28u.im%29%3B%20%20%20ymax%3Dmax%28u.im%29%3B%0D%0A%20%20%20zi%3Darray%28complex%2Cresx%2Cresy%29%3B%0D%0A%20%20%20zi.re%3Dinterp2%28span%28ymin%2Cymax%2Cresy%29%28-%3A1%3Aresx%2C%29%2Cspan%28xmin%2Cxmax%2Cresx%29%28%2C-%3A1%3Aresy%29%2C%0D%0A%20%20%20%20%20%20%20%20%20z.re%2Cu.im%2Cu.re%29%3B%0D%0A%20%20%20zi.im%3Dinterp2%28span%28ymin%2Cymax%2Cresy%29%28-%3A1%3Aresx%2C%29%2Cspan%28xmin%2Cxmax%2Cresx%29%28%2C-%3A1%3Aresy%29%2C%0D%0A%20%20%20%20%20%20%20%20%20z.im%2Cu.im%2Cu.re%29%3B%0D%0A%20%20%20%2F%2F%20Caution%3A%20on%20some%20platforms%20atan%280%2C0%29%20crashes%20%21%0D%0A%20%20%20arr%3Dbytscl%28atan%28zi.im%2Czi.re%2B1e-200%29%2Ccmin%3D-pi%2Ccmax%3Dpi%29%3B%0D%0A%20%20%20pli%2Carr%2C%20xmin%2Cymin%2Cxmax%2Cymax%3B%0D%0A%20%20%20plc%2Cabs%28z%29%2Cu.im%2Cu.re%2Cmarks%3D0%3B%0D%0A%7D%0D%0A%3C%2Fpre%3E _store=1 _add=Yorick _usertab=1 _usersearch=0 _format=full =