sysrpl-data.38G.el 280 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852
  1. #s(hash-table size 5541 test equal rehash-size 1.5 rehash-threshold 0.8 data ("any" ("0d 0h" "" "0403F" :NOSDIAG) "ZERO" ("0d 0h" "" "0403F" :NOSDIAG) "BINT0" ("0d 0h" "" "0403F" :NOSDIAG) "MEMERR" ("1d 1h" "" "04049" :NOSDIAG) "real" ("1d 1h" "" "04049" :NOSDIAG) "ONE" ("1d 1h" "" "04049" :NOSDIAG) "BINT1" ("1d 1h" "" "04049" :NOSDIAG) "cmp" ("2d 2h" "" "04053" :NOSDIAG) "TWO" ("2d 2h" "" "04053" :NOSDIAG) "BINT2" ("2d 2h" "" "04053" :NOSDIAG) "str" ("3d 3h" "" "0405D" :NOSDIAG) "THREE" ("3d 3h" "" "0405D" :NOSDIAG) "BINT3" ("3d 3h" "" "0405D" :NOSDIAG) "arry" ("4d 4h" "" "04067" :NOSDIAG) "FOUR" ("4d 4h" "" "04067" :NOSDIAG) "BINT4" ("4d 4h" "" "04067" :NOSDIAG) "list" ("5d 5h" "" "04071" :NOSDIAG) "FIVE" ("5d 5h" "" "04071" :NOSDIAG) "BINT5" ("5d 5h" "" "04071" :NOSDIAG) "idnt" ("6d 6h" "" "0407B" :NOSDIAG) "id" ("6d 6h" "" "0407B" :NOSDIAG) "SIX" ("6d 6h" "" "0407B" :NOSDIAG) "BINT6" ("6d 6h" "" "0407B" :NOSDIAG) "lam" ("7d 7h" "" "04085" :NOSDIAG) "SEVEN" ("7d 7h" "" "04085" :NOSDIAG) "BINT7" ("7d 7h" "" "04085" :NOSDIAG) "seco" ("8d 8h" "" "0408F" :NOSDIAG) "EIGHT" ("8d 8h" "" "0408F" :NOSDIAG) "BINT8" ("8d 8h" "" "0408F" :NOSDIAG) "symb" ("9d 9h" "" "04099" :NOSDIAG) "NINE" ("9d 9h" "" "04099" :NOSDIAG) "BINT9" ("9d 9h" "" "04099" :NOSDIAG) "sym" ("10d Ah" "" "040A3" :NOSDIAG) "TEN" ("10d Ah" "" "040A3" :NOSDIAG) "BINT10" ("10d Ah" "" "040A3" :NOSDIAG) "hxs" ("11d Bh" "" "040AD" :NOSDIAG) "ELEVEN" ("11d Bh" "" "040AD" :NOSDIAG) "BINT11" ("11d Bh" "" "040AD" :NOSDIAG) "grob" ("12d Ch" "" "040B7" :NOSDIAG) "TWELVE" ("12d Ch" "" "040B7" :NOSDIAG) "BINT12" ("12d Ch" "" "040B7" :NOSDIAG) "THIRTEEN" ("13d Dh" "" "040C1" :NOSDIAG) "TAGGED" ("13d Dh" "" "040C1" :NOSDIAG) "BINT13" ("13d Dh" "" "040C1" :NOSDIAG) "unitob" ("14d Eh" "" "040CB" :NOSDIAG) "FOURTEEN" ("14d Eh" "" "040CB" :NOSDIAG) "EXT" ("14d Eh" "" "040CB" :NOSDIAG) "BINT14" ("14d Eh" "" "040CB" :NOSDIAG) "rompointer" ("15d Fh" "" "040D5" :NOSDIAG) "FIFTEEN" ("15d Fh" "" "040D5" :NOSDIAG) "BINT15" ("15d Fh" "" "040D5" :NOSDIAG) "SIXTEEN" ("16d 10h" "" "040DF" :NOSDIAG) "REALOB" ("16d 10h" "" "040DF" :NOSDIAG) "BINT16" ("16d 10h" "" "040DF" :NOSDIAG) "REALREAL" ("17d 11h" "" "040E9" :NOSDIAG) "2REAL" ("17d 11h" "" "040E9" :NOSDIAG) "SEVENTEEN" ("17d 11h" "" "040E9" :NOSDIAG) "BINT17" ("17d 11h" "" "040E9" :NOSDIAG) "EIGHTEEN" ("18d 12h" "" "040F3" :NOSDIAG) "BINT18" ("18d 12h" "" "040F3" :NOSDIAG) "NINETEEN" ("19d 13h" "" "040FD" :NOSDIAG) "BINT19" ("19d 13h" "" "040FD" :NOSDIAG) "TWENTY" ("20d 14h" "" "04107" :NOSDIAG) "BINT20" ("20d 14h" "" "04107" :NOSDIAG) "TWENTYONE" ("21d 15h" "" "04111" :NOSDIAG) "BINT21" ("21d 15h" "" "04111" :NOSDIAG) "TWENTYTWO" ("22d 16h" "" "0411B" :NOSDIAG) "BINT22" ("22d 16h" "" "0411B" :NOSDIAG) "TWENTYTHREE" ("23d 17h" "" "04125" :NOSDIAG) "BINT23" ("23d 17h" "" "04125" :NOSDIAG) "TWENTYFOUR" ("24d 18h" "" "0412F" :NOSDIAG) "BINT24" ("24d 18h" "" "0412F" :NOSDIAG) "TWENTYFIVE" ("25d 19h" "" "04139" :NOSDIAG) "BINT25" ("25d 19h" "" "04139" :NOSDIAG) "TWENTYSIX" ("26d 1Ah" "" "04143" :NOSDIAG) "REALSYM" ("26d 1Ah" "" "04143" :NOSDIAG) "BINT26" ("26d 1Ah" "" "04143" :NOSDIAG) "TWENTYSEVEN" ("27d 1Bh" "" "0414D" :NOSDIAG) "BINT27" ("27d 1Bh" "" "0414D" :NOSDIAG) "TWENTYEIGHT" ("28d 1Ch" "" "04157" :NOSDIAG) "BINT28" ("28d 1Ch" "" "04157" :NOSDIAG) "TWENTYNINE" ("29d 1Dh" "" "04161" :NOSDIAG) "BINT29" ("29d 1Dh" "" "04161" :NOSDIAG) "THIRTY" ("30d 1Eh" "" "0416B" :NOSDIAG) "REALEXT" ("30d 1Eh" "" "0416B" :NOSDIAG) "BINT30" ("30d 1Eh" "" "0416B" :NOSDIAG) "THIRTYONE" ("31d 1Fh" "" "04175" :NOSDIAG) "BINT31" ("31d 1Fh" "" "04175" :NOSDIAG) "THIRTYTWO" ("32d 20h" "" "0417F" :NOSDIAG) "BINT32" ("32d 20h" "" "0417F" :NOSDIAG) "THIRTYTHREE" ("33d 21h" "" "04189" :NOSDIAG) "BINT33" ("33d 21h" "" "04189" :NOSDIAG) "THIRTYFOUR" ("34d 22h" "" "04193" :NOSDIAG) "BINT34" ("34d 22h" "" "04193" :NOSDIAG) "THIRTYFIVE" ("35d 23h" "" "0419D" :NOSDIAG) "BINT35" ("35d 23h" "" "0419D" :NOSDIAG) "THIRTYSEVEN" ("37d 25h" "" "041B1" :NOSDIAG) "BINT37" ("37d 25h" "" "041B1" :NOSDIAG) "THIRTYEIGHT" ("38d 26h" "" "041BB" :NOSDIAG) "BINT38" ("38d 26h" "" "041BB" :NOSDIAG) "THIRTYNINE" ("39d 27h" "" "041C5" :NOSDIAG) "BINT39" ("39d 27h" "" "041C5" :NOSDIAG) "FOURTY" ("40d 28h" "" "041CF" :NOSDIAG) "FORTY" ("40d 28h" "" "041CF" :NOSDIAG) "BINT40" ("40d 28h" "" "041CF" :NOSDIAG) "FORTYONE" ("41d 29h" "" "041D9" :NOSDIAG) "BINT41" ("41d 29h" "" "041D9" :NOSDIAG) "FORTYTWO" ("42d 2Ah" "" "041E3" :NOSDIAG) "BINT42" ("42d 2Ah" "" "041E3" :NOSDIAG) "FORTYTHREE" ("43d 2Bh" "" "041ED" :NOSDIAG) "BINT43" ("43d 2Bh" "" "041ED" :NOSDIAG) "(illnameerr)" ("44d 2Ch" "" "80000" :NOSDIAG) "FORTYFOUR" ("44d 2Ch" "" "80000" :NOSDIAG) "BINT44" ("44d 2Ch" "" "80000" :NOSDIAG) "FORTYFIVE" ("45d 2Dh" "" "8000A" :NOSDIAG) "BINT45" ("45d 2Dh" "" "8000A" :NOSDIAG) "FORTYSIX" ("46d 2Eh" "" "80014" :NOSDIAG) "BINT46" ("46d 2Eh" "" "80014" :NOSDIAG) "(rrp)" ("47d 2Fh" "" "8001E" :NOSDIAG) "FORTYSEVEN" ("47d 2Fh" "" "8001E" :NOSDIAG) "BINT47" ("47d 2Fh" "" "8001E" :NOSDIAG) "FORTYEIGHT" ("48d 30h" "" "80028" :NOSDIAG) "BINT48" ("48d 30h" "" "80028" :NOSDIAG) "FORTYNINE" ("49d 31h" "" "80032" :NOSDIAG) "BINT49" ("49d 31h" "" "80032" :NOSDIAG) "FIFTY" ("50d 32h" "" "8003C" :NOSDIAG) "BINT50" ("50d 32h" "" "8003C" :NOSDIAG) "FIFTYONE" ("51d 33h" "" "80046" :NOSDIAG) "BINT51" ("51d 33h" "" "80046" :NOSDIAG) "(THREEFOUR)" ("52d 34h" "" "80050" :NOSDIAG) "FIFTYTWO" ("52d 34h" "" "80050" :NOSDIAG) "BINT52" ("52d 34h" "" "80050" :NOSDIAG) "THREEFIVE" ("53d 35h" "" "8005A" :NOSDIAG) "STRLIST" ("53d 35h" "" "8005A" :NOSDIAG) "FIFTYTHREE" ("53d 35h" "" "8005A" :NOSDIAG) "BINT53" ("53d 35h" "" "8005A" :NOSDIAG) "FIFTYFOUR" ("54d 36h" "" "80064" :NOSDIAG) "BINT54" ("54d 36h" "" "80064" :NOSDIAG) "FIFTYFIVE" ("55d 37h" "" "8006E" :NOSDIAG) "(#THREESEVEN)" ("55d 37h" "" "8006E" :NOSDIAG) "BINT55" ("55d 37h" "" "8006E" :NOSDIAG) "#THREESEVEN" ("55d 37h" "" "8006E") "FIFTYSIX" ("56d 38h" "" "80078" :NOSDIAG) "BINT56" ("56d 38h" "" "80078" :NOSDIAG) "FIFTYSEVEN" ("57d 39h" "" "80082" :NOSDIAG) "BINT57" ("57d 39h" "" "80082" :NOSDIAG) "FIFTYEIGHT" ("58d 3Ah" "" "8008C" :NOSDIAG) "BINT58" ("58d 3Ah" "" "8008C" :NOSDIAG) "FIFTYNINE" ("59d 3Bh" "" "80096" :NOSDIAG) "BINT59" ("59d 3Bh" "" "80096" :NOSDIAG) "SIXTY" ("60d 3Ch" "" "800A0" :NOSDIAG) "BINT60" ("60d 3Ch" "" "800A0" :NOSDIAG) "SIXTYONE" ("61d 3Dh" "" "800AA" :NOSDIAG) "BINT61" ("61d 3Dh" "" "800AA" :NOSDIAG) "SIXTYTWO" ("62d 3Eh" "" "800B4" :NOSDIAG) "BINT62" ("62d 3Eh" "" "800B4" :NOSDIAG) "SIXTYTHREE" ("63d 3Fh" "" "800BE" :NOSDIAG) "(BINT3Fh)" ("63d 3Fh" "" "800BE" :NOSDIAG) "BINT63" ("63d 3Fh" "" "800BE" :NOSDIAG) "BINT3Fh" ("64d 3Fh" "" "800BE") "YHI" ("64d 40h" "" "800C8" :NOSDIAG) "SIXTYFOUR" ("64d 40h" "" "800C8" :NOSDIAG) "(BINT_40h)" ("64d 40h" "" "800C8" :NOSDIAG) "BINT40h" ("64d 40h" "" "800C8" :NOSDIAG) "BINT64" ("64d 40h" "" "800C8" :NOSDIAG) "(BINT_65d)" ("65d 41h" "" "800D2" :NOSDIAG) "ARRYREAL" ("65d 41h" "" "800D2" :NOSDIAG) "BINT65" ("65d 41h" "" "800D2" :NOSDIAG) "BINT_65d" ("65d 41h" "" "800D2") "SIXTYFIVE" ("65d 41h" "" "800D2") "(ARRYCMP)" ("66d 42h" "" "800DC" :NOSDIAG) "FOURTWO" ("66d 42h" "" "800DC" :NOSDIAG) "BINT66" ("66d 42h" "" "800DC" :NOSDIAG) "SIXTYSIX" ("66d 42h" "" "800DC") "FOURTHREE" ("67d 43h" "" "800E6" :NOSDIAG) "BINT67" ("67d 43h" "" "800E6" :NOSDIAG) "SIXTYEIGHT" ("68d 44h" "" "800F0" :NOSDIAG) "(2ARRY)" ("68d 44h" "" "800F0" :NOSDIAG) "BINT68" ("68d 44h" "" "800F0" :NOSDIAG) "2ARRY" ("68d 44h" "" "800F0") "FOURFIVE" ("69d 45h" "" "800FA" :NOSDIAG) "BINT69" ("69d 45h" "" "800FA" :NOSDIAG) "(ARRYID)" ("70d 46h" "" "80104" :NOSDIAG) "SEVENTY" ("70d 46h" "" "80104" :NOSDIAG) "BINT70" ("70d 46h" "" "80104" :NOSDIAG) "ARRYID" ("70d 46h" "" "80104") "SEVENTYONE" ("71d 47h" "" "8010E") "SEVENTYTWO" ("72h 48d" "" "80118") "SEVENTYTHREE" ("73d 49h" "" "80122") "SEVENTYFOUR" ("74d 4Ah" "" "8012C" :NOSDIAG) "BINT74" ("74d 4Ah" "" "8012C" :NOSDIAG) "SEVENTYFIVE" ("75d 4Bh" "" "80136") "SEVENTYSIX" ("76d 4Ch" "" "80140") "SEVENTYSEVEN" ("77d 4Dh" "" "8014A") "SEVENTYEIGHT" ("78d 4Eh" "" "80154") "SEVENTYNINE" ("79d 4Fh" "" "8015E" :NOSDIAG) "BINT79" ("79d 4Fh" "" "8015E" :NOSDIAG) "(LISTOB)" ("80d 50h" "" "80168" :NOSDIAG) "EIGHTY" ("80d 50h" "" "80168" :NOSDIAG) "BINT80" ("80d 50h" "" "80168" :NOSDIAG) "LISTOB" ("80d 50h" "" "80168") "LISTREAL" ("81d 51h" "" "80172" :NOSDIAG) "EIGHTYONE" ("81d 51h" "" "80172" :NOSDIAG) "BINT81" ("81d 51h" "" "80172" :NOSDIAG) "LISTCMP" ("82d 52h" "" "8017C" :NOSDIAG) "BINT82" ("82d 52h" "" "8017C" :NOSDIAG) "FIVETHREE" ("83d 53h" "" "80186" :NOSDIAG) "BINT83" ("83d 53h" "" "80186" :NOSDIAG) "FIVEFOUR" ("84d 54h" "" "80190" :NOSDIAG) "BINT84" ("84d 54h" "" "80190" :NOSDIAG) "2LIST" ("85d 55h" "" "8019A" :NOSDIAG) "BINT85" ("85d 55h" "" "8019A" :NOSDIAG) "(LISTID)" ("86d 56h" "" "801A4" :NOSDIAG) "FIVESIX" ("86d 56h" "" "801A4" :NOSDIAG) "BINT86" ("86d 56h" "" "801A4" :NOSDIAG) "LISTID" ("86d 56h" "" "801A4") "LISTLAM" ("87d 57h" "" "801AE" :NOSDIAG) "BINT87" ("87d 57h" "" "801AE" :NOSDIAG) "EIGHTYEIGHT" ("88d 58h" "" "801B8") "EIGHTYNINE" ("89d 59d" "" "801C2") "NINETY" ("90d 5Ah" "" "801CC") "BINT_91d" ("91d 5Bh" "" "801D6" :NOSDIAG) "BINT91" ("91d 5Bh" "" "801D6" :NOSDIAG) "NINETYTWO" ("92d 5Ch" "" "801E0") "NINETYTHREE" ("93d 5Dh" "" "801EA") "NINETYFOUR" ("94d 5Eh" "" "801F4") "NINETYFIVE" ("95d 5Fh" "" "801FE") "(idntany)" ("96d 60h" "" "80208" :NOSDIAG) "BINT_96d" ("96d 60h" "" "80208" :NOSDIAG) "BINT96" ("96d 60h" "" "80208" :NOSDIAG) "IDREAL" ("97d 61h" "" "80212" :NOSDIAG) "BINT97" ("97d 61h" "" "80212" :NOSDIAG) "IDCMP" ("98d 62h" "" "8021C") "NINETYEIGHT" ("98d 62h" "" "8021C") "NINETYNINE" ("99d 63h" "" "80226") "(IDARRY)" ("100d 64h" "" "80230" :NOSDIAG) "ONEHUNDRED" ("100d 64h" "" "80230" :NOSDIAG) "BINT100" ("100d 64h" "" "80230" :NOSDIAG) "IDARRY" ("100d 64h" "" "80230") "IDLIST" ("101d 65h" "" "8023A") "SIXFIVE" ("101d 65h" "" "8023A") "char" ("111d 6Fh" "" "80244" :NOSDIAG) "BINT111" ("111d 6Fh" "" "80244" :NOSDIAG) "LAMREAL" ("113d 71h" "" "80258") "BINT_114" ("114d 72hd" "" "80262") "BINT_115d" ("115d 73h" "" "8026C" :NOSDIAG) "BINT115" ("115d 73h" "" "8026C" :NOSDIAG) "BINT_116d" ("116d 74h" "" "80276" :NOSDIAG) "BINT116" ("116d 74h" "" "80276" :NOSDIAG) "LAMLIST" ("117d 75h" "" "80280") "BINT_117d" ("117d 75h" "" "80280") "BINT_122d" ("122d 7Ah" "" "8028A" :NOSDIAG) "BINT122" ("122d 7Ah" "" "8028A" :NOSDIAG) "BINT80h" ("128d 80h" "" "80294" :NOSDIAG) "BINT128" ("128d 80h" "" "80294" :NOSDIAG) "BINT_128d" ("128d 80h" "" "80294") "XHI-1" ("130d 82h" "" "8029E" :NOSDIAG) "BINT_130d" ("130d 82h" "" "8029E" :NOSDIAG) "BINT130d" ("130d 82h" "" "8029E" :NOSDIAG) "BINT130" ("130d 82h" "" "8029E" :NOSDIAG) "XHI" ("131d 83h" "" "802A8" :NOSDIAG) "BINT131d" ("131d 83h" "" "802A8" :NOSDIAG) "BINT_131d" ("131d 83h" "" "802A8" :NOSDIAG) "BINT131" ("131d 83h" "" "802A8" :NOSDIAG) "SYMBREAL" ("145d 91h" "" "802BC") "(SYMBCMP)" ("146d 92h" "" "802C6" :NOSDIAG) "SYMBCMP" ("146d 92h" "" "802C6" :NOSDIAG) "(SYMBSYM)" ("154d 9Ah" "" "802D0" :NOSDIAG) "(SYMCMP)" ("154d 9Ah" "" "802D0" :NOSDIAG) "SYMBSYM" ("154d 9Ah" "" "802D0" :NOSDIAG) "SYMBUNIT" ("158d 9Eh" "" "802DA") "backup" ("159d 9Fh" "" "802E4") "SYMOB" ("160d A0h" "" "802EE") "SYMREAL" ("161d A1h" "" "802F8") "SYMCMP" ("162d A2h" "" "80302" :NOSDIAG) "SYMARRY" ("164d A4h" "" "80316" :NOSDIAG) "SYMLIST" ("165d A5h" "" "80320" :NOSDIAG) "SYMID" ("166d A6h" "" "8032A") "SYMLAM" ("167d A7h" "" "80334") "SYMSYMB" ("169d A9h" "" "8033E" :NOSDIAG) "SYMSYM" ("170d AAh" "" "80348") "SYMEXT" ("174d AEh" "" "80352") "HXSREAL" ("177d B1h" "" "8035C" :NOSDIAG) "2HXS" ("187d BBh" "" "80366" :NOSDIAG) "BINTC0h" ("192d C0h" "" "80370" :NOSDIAG) "2GROB" ("204d CCh" "" "8037A") "TAGGEDANY" ("208d D0h" "" "80384") "EXTREAL" ("225d E1h" "" "8038E") "(UNITSYM)" ("234d EAh" "" "80398") "EXTSYM" ("234d EAh" "" "80398") "UNITSYM" ("234d EAh" "" "80398") "2EXT" ("238d EEh" "" "803A2") "ROMPANY" ("240d F0h" "" "803AC") "BINT253" ("253d FDh" "" "803B6") "BINT255d" ("255d FFh" "" "803C0") "(FSTFLOATROM#)" ("256d 100h" "" "803CA") "REALOBOB" ("256d 100h" "" "803CA") "(Err#Chr00)" ("258d 102h" "" "803D4") "(#_258_d)" ("258d 102h" "" "803D4") "#_102" ("258d 102h" "" "803D4") "#_258_d" ("258d 102h" "" "803D4") "#SyntaxErr" ("262d 106h" "" "803DE") "BINT_263d" ("263d 107h" "" "803E8" :NOSDIAG) "REALREALOB" ("272d 110h" "" "803F2" :NOSDIAG) "3REAL" ("273d 111h" "" "803FC") "(#_291_d)" ("291d 123h" "" "80406") "(#_123)" ("291d 123h" "" "80406") "Err#Kill" ("291d 123h" "" "80406") "#_291_d" ("291d 123h" "" "80406") "#_123" ("291d 123h" "" "80406") "#_124" ("292d 124h" "" "80410") "(#_292_d)" ("292d 124h" "" "80410") "(#_124)" ("292d 124h" "" "80410") "Err#NoLstStk" ("292d 124h" "" "80410") "#_292_d" ("292d 124h" "" "80410") "(BINT_305d)" ("305d 131h" "" "8041A") "#NoRoomForSt" ("305d 131h" "" "8041A") "BINT_305d" ("305d 131h" "" "8041A") "BINT_306d" ("306d 132h" "" "80424") "REALSTRSTR" ("307d 133h" "" "8042E") "BINT_307d" ("307d 133h" "" "8042E") "Err#Cont" ("318d 13Eh" "" "80492" :NOSDIAG) "(REALLISTREAL)" ("337d 151h" "" "8049C") "INTEGER337" ("337d 151h" "" "8049C") "CMPOBOB" ("512d 200h" "" "804A6" :NOSDIAG) "(#_517_d)" ("517d 205h" "" "804B0") "(#_205)" ("517d 205h" "" "804B0") "Err#NoLstArg" ("517d 205h" "" "804B0") "#_205" ("517d 205h" "" "804B0") "#_517_d" ("517d 205h" "" "804B0") "STRREALREAL" ("785d 311h" "" "804BA" :NOSDIAG) "ARRYREALREAL" ("1041d 411h" "" "804C4" :NOSDIAG) "ARRYREALCMP" ("1042d 412h" "" "804CE" :NOSDIAG) "3ARRY" ("1092d 444h" "" "804D8" :NOSDIAG) "ARRYLISTREAL" ("1105d 451h" "" "804E2" :NOSDIAG) "ARRYLISTCMP" ("1106d 452h" "" "804EC" :NOSDIAG) "LISTREALOB" ("1296d 510h" "" "804F6" :NOSDIAG) "LISTREALREAL" ("1297d 511h" "" "80500" :NOSDIAG) "LISTLISTOB" ("1360d 550h" "" "8050A" :NOSDIAG) "IDREALOB" ("1552d 610h" "" "80514" :NOSDIAG) "IDLISTOB" ("1616d 650h" "" "8051E" :NOSDIAG) "(LAMANYANY)" ("1792d 700h" "" "80528" :NOSDIAG) "FSTMACROROM#" ("1792d 700h" "" "80528" :NOSDIAG) "LAMANYANY" ("1792d 700h" "" "80528") "PROGIDREAL" ("2145d 861h" "" "80532" :NOSDIAG) "PROGIDCMP" ("2146d 862h" "" "8053C" :NOSDIAG) "PROGIDLIST" ("2149d 865h" "" "80546" :NOSDIAG) "PROGIDEXT" ("2158d 86Eh" "" "80550" :NOSDIAG) "ATTNERR" ("2563d A03h" "" "8055A") "SYMREALREAL" ("2577d A11h" "" "80564" :NOSDIAG) "SYMREALCMP" ("2578d A12h" "" "8056E" :NOSDIAG) "SYMREALSYM" ("2586d A1Ah" "" "80578" :NOSDIAG) "SYMCMPREAL" ("2593d A21h" "" "80582" :NOSDIAG) "SYMCMPCMP" ("2594d A22h" "" "8058C" :NOSDIAG) "SYMCMPSYM" ("2602d A2Ah" "" "80596" :NOSDIAG) "SYMIDREAL" ("2657d A61h" "" "805A0" :NOSDIAG) "SYMIDCMP" ("2658d A62h" "" "805AA" :NOSDIAG) "SYMIDLIST" ("2661d A65h" "" "805B4" :NOSDIAG) "SYMIDEXT" ("2670d A6Eh" "" "805BE" :NOSDIAG) "SYMSYMREAL" ("2721d AA1h" "" "805C8" :NOSDIAG) "SYMSYMCMP" ("2722d AA2h" "" "805D2" :NOSDIAG) "3SYM" ("2730d AAAh" "" "805DC" :NOSDIAG) "XFERFAIL" ("3078d C06h" "" "805E6" :NOSDIAG) "PROTERR" ("3079d C07h" "" "805F0" :NOSDIAG) "InvalServCmd" ("3080d C08h" "" "805FA" :NOSDIAG) "Connecting" ("3082d C0Ah" "" "80604") "Retry" ("3083d C0Bh" "" "8060E" :NOSDIAG) "#CAlarmErr" ("3583d DFFh" "" "80618" :NOSDIAG) "EXTOBOB" ("3584d E00h" "" "80622") "TYPEREAL" ("10547d 2933h" "" "03FDB") "TYPEEREL" ("10581d 2955h" "" "0402B") "TYPEIDNT" ("10568d 2948h" "" "03FF9") "TYPECMP" ("10615d 2977h" "" "03FE5") "TYPELIST" ("10868d 2A74h" "" "03FEF") "TYPERRP" ("10902d 2A96h" "" "04017") "TYPESYMB" ("10936d 2AB8h" "" "0400D") "TYPEEXT" ("10970d 2ADAh" "" "04035") "TYPECOL" ("11677d 2D9Dh" "" "04003") "TYPELAM" ("11885d 2E6Dh" "" "04021") "#EXITERR" ("458752d 70000h" "" "8062C") "MINUSFIVE" ("1048571d FFFFBh" "" "8065E") "MINUSFOUR" ("1048572d FFFFCh" "" "80654") "MINUSTHREE" ("1048573d FFFFDh" "" "8064A") "MINUSTWO" ("1048574d FFFFEh" "" "80640") "MINUSONE" ("1048575d FFFFFh" "" "80636") "ZEROZERO" ("--> #0 #0" "" "815D1") "ONEDUP" ("--> #1 #1" "" "844CF") "ONEONE" ("--> #1 #1" "" "844CF") "DROPZERO" ("ob --> #0" "" "8159A") "2DROP00" ("ob ob --> #0 #0" "" "8159F") "DROPONE" ("ob --> #1" "" "8156D") "DUPZERO" ("ob --> ob ob #0" "" "84493") "DUPONE" ("ob --> ob ob #1" "" "844A7") "DUPTWO" ("ob --> ob ob #2" "" "844E3") "SWAPONE" ("ob ob' --> ob' ob #1" "" "844BB") "ZEROSWAP" ("ob --> #0 ob" "" "838A9") "ZEROOVER" ("ob --> ob #0 ob" "" "83AE8") "ZEROFALSE" ("--> #0 F" "" "83F8E") "ONESWAP" ("ob --> #1 ob" "" "838D6") "ONEFALSE" ("--> #1 F" "" "83FA2") "COERCE" ("% --> #" "" "81CB1") "COERCEDUP" ("% --> # #" "" "83750") "COERCESWAP" ("ob % --> # ob" "" "838EA") "%ABSCOERCE" ("% --> #" "" "458CA") "CHR>#" ("chr --> #" "" "81C02") "#+" ("# #' --> #+#'" "" "817D4") "#1+" ("# --> #+1" "" "817E8") "#2+" ("# --> #+2" "" "817F7") "#3+" ("# --> #+3" "" "815A4") "#4+" ("# --> #+4" "" "815A9") "#5+" ("# --> #+5" "" "815AE") "#8+" ("# --> #+8" "" "DF0F3") "#-" ("# #' --> #-#'" "" "817D9") "#1-" ("# --> #-1" "" "817ED") "#2-" ("# --> #-2" "" "817FC") "#3-" ("# --> #-3" "" "DF133") "#*" ("# #' --> #*#'" "" "817CF") "#*OVF" ("# #' --> #*#'" "0 \\<= result \\<= FFFFF" "813B5") "#2*" ("# --> #*2" "" "817F2") "#/" ("# #' --> #r #q" "" "817DE") "#2/" ("# --> #/2" "Rounded down." "81801") "#-#2/" ("# #' --> (#-#')/2" "" "81595") "#+DUP" ("# #' --> #+#' #+#'" "" "8154F") "#+SWAP" ("ob # #' --> #+#' ob" "" "8386D") "#+OVER" ("ob # #' --> ob #+#' ob" "" "83AC0") "#-SWAP" ("ob # #' --> #-#' ob" "" "83881") "#-OVER" ("ob # #' --> ob #-#' ob" "" "83AD4") "#1+SWAP" ("ob # --> #+1 ob" "" "83895") "#1-ROT" ("ob ob' # --> ob' #-1 ob" "" "83A48") "#1-1SWAP" ("# --> 1 #-1" "Returns the bint ONE and the result." "838BD") "DUP#1+" ("# --> # #+1" "" "81563") "DUP3PICK#+" ("# #' --> # #' #+#'" "" "8415A") "2DUP#+" ("# #' --> # #' #+#'" "" "8415A") "DROP#1-" ("# ob --> #-1" "" "84236") "SWAP#-" ("# #' --> #'-#" "" "81540") "SWP1+" ("# ob --> ob #+1" "" "81568") "SWAP#1+" ("# ob --> ob #+1" "" "81568") "'RSWP1+" ("# --> nob #+1" "nob is the next object in the runstream." "82E95") "SWAP#1-" ("# ob --> ob #-1" "" "84222") "SWAPOVER#-" ("# #' --> #' #-#'" "" "841FA") "OVER#+" ("# #' --> # #'+#" "" "84182") "OVER#-" ("# #' --> # #'-#" "" "841D2") "OVER#1-" ("# #' --> # #' #''" "" "84A42") "ROT#+" ("# ob #' --> ob #'+#" "" "8416E") "ROT#-" ("# ob #' --> ob #'-#" "" "841BE") "ROT#1+" ("# ob ob' --> ob ob' #+1" "" "8420E") "ROT#1+UNROT" ("# ob ob' --> #+1 ob ob'" "" "81D2E") "ROT+SWAP" ("# ob #' --> #'+# ob" "" "8383B") "ROT#+SWAP" ("# ob #' --> #'+# ob" "" "8383B") "3PICK#+" ("# ob #' --> # ob #'+#" "" "84196") "4PICK#+" ("# ob1 ob2 #' --> # ob1 ob2 #'+#" "" "841AA") "4PICK+SWAP" ("# ob1 ob2 #' --> # ob1 #'+# ob2" "" "83854") "4PICK#+SWAP" ("# ob1 ob2 #' --> # ob1 #'+# ob2" "" "83854") "#MIN" ("# #' --> #''" "" "813A1") "#MAX" ("# #' --> #''" "" "8139C") "#AND" ("# #' --> #''" "Bitwise QANDQ." "817E3") "#=" ("# #' --> flag" "" "81806") "#<>" ("# #' --> flag" "" "8180B") "#<" ("# #' --> flag" "" "81810") "#<=" ("# #' --> flag" "" "81900") "#>" ("# #' --> flag" "" "81815") "#>=" ("# #' --> flag" "" "818FB") "#0<>" ("# --> flag" "" "8181F") "#0=" ("# --> flag" "" "8181A") "#1<>" ("# --> flag" "" "813BA") "#1=" ("# --> flag" "" "813BF") "#2<>" ("# --> flag" "" "8411E") "#2=" ("# --> flag" "" "813C4") "#3=" ("# --> flag" "" "81581") "#5=" ("# --> flag" "" "8410A") "#<3" ("# --> flag" "" "840C9") "ONE#>" ("# --> flag" "" "84146") "#>1" ("# --> flag" "" "84146") "2DUP#<" ("# #' --> # #' flag" "" "81572") "2DUP#>" ("# #' --> # #' flag" "" "8155E") "ONE_EQ" ("# --> flag" "Uses EQ test." "83DF4") "OVER#=" ("# #' --> # flag" "" "8151D") "2DUP#=" ("# #' --> # #' flag" "" "81577") "OVER#0=" ("# #' --> # #' flag" "" "840A1") "DUP#0=" ("# --> # flag" "" "8157C") "OVER#<" ("# #' --> # flag" "" "840B5") "DUP#1=" ("# --> # flag" "" "81586") "OVER#>" ("# #' --> # flag" "" "84132") "DUP#0<>" ("# --> # flag" "" "8158B") "DUP#<7" ("# --> # flag" "Returns TRUE if the argument is smaller than
  2. #7." "840DD") "2#0=OR" ("# # --> flag" "Returns TRUE if either argument is zero." "84083") "%-MAXREAL" ("-9.99E499" "" "8083B") "%-9" ("-9" "" "807E2") "%-8" ("-8" "" "807CD") "%-7" ("-7" "" "807B8") "%-6" ("-6" "" "807A3") "%-5" ("-5" "" "8078E") "%-4" ("-4" "" "80779") "%-3" ("-3" "" "80764") "%-2" ("-2" "" "8074F") "%-1" ("-1" "" "8073A") "%-MINREAL" ("-1E-499" "" "80865") "%0" ("0" "" "80668") "%MINREAL" ("1E-499" "" "80850") "%.5" (".5" "" "80979") "%-.5" ("-.5" "" "8098E") "%1" ("1" "" "8067D") "%2" ("2" "" "80692") "%e" ("e" "" "80964") "%3" ("3" "" "806A7") "%PI" ("\\pi" "" "807F7") "%4" ("4" "" "806BC") "%5" ("5" "" "806D1") "%6" ("6" "" "806E6") "%7" ("7" "" "806FB") "%8" ("8" "" "80710") "%9" ("9" "" "80725") "%10" ("10" "" "809A3") "%15" ("15" "" "48F1C") "%25" ("25" "" "48FB7") "%180" ("180" "" "809B8") "%200" ("200" "" "809CD") "%400" ("400" "" "809F7") "%360" ("360" "" "809E2") "%MAXREAL" ("9.99E499" "" "80826") "%%0" ("0" "" "8087A") "%%.1" ("0.1" "" "80916") "%%.5" ("0.5" "" "80930") "%%1" ("1" "" "80894") "%%2" ("2" "" "808AE") "%%3" ("3" "" "808C8") "%%PI" ("\\pi" "" "8080C") "%%4" ("4" "" "808E2") "%%5" ("5" "" "808FC") "%%10" ("10" "" "8094A") "%>%%" ("% --> %%" "" "81257") "%>%%SWAP" ("ob % --> %% ob" "" "838FE") "%%>%" ("%% --> %" "" "81252") "UNCOERCE" ("# --> %" "" "81CB6") "UNCOERCE%%" ("# --> %%" "" "845A1") "C%>%" ("C% --> %re %im" "" "81BFD") "%+" ("% %' --> %+%'" "" "8128E") "%-" ("% %' --> %-%'" "" "81293") "%*" ("% %' --> %*%'" "" "81289") "%/" ("% %' --> %/%'" "" "81298") "%^" ("% %' --> %^%'" "" "8129D") "%ABS" ("% --> %'" "" "812A2") "%CHS" ("% --> -%" "" "812D9") "%SGN" ("% --> -1/0/1" "" "8133D") "%SQRT" ("% --> \\v/%" "" "8134C") "%EXP" ("% --> e^%" "" "812ED") "%EXPM1" ("% --> e^%-1" "" "812F2") "%LN" ("% --> LN%" "" "8130B") "%LNP1" ("% --> LN(%+1)" "" "81310") "%LOG" ("% --> LOG%" "" "81315") "%ALOG" ("% --> 10^%" "" "812B1") "%SIN" ("% --> SIN%" "" "81342") "%COS" ("% --> COS%" "" "812E3") "%TAN" ("% --> TAN%" "" "81356") "%ASIN" ("% --> ASIN%" "" "812BB") "%ACOS" ("% --> ACOS%" "" "812A7") "%ATAN" ("% --> ATAN%" "" "812C5") "%SINH" ("% --> SINH%" "" "81347") "%COSH" ("% --> COSH%" "" "812E8") "%TANH" ("% --> TANH%" "" "8135B") "%ASINH" ("% --> ASINH%" "" "812C0") "%ACOSH" ("% --> ACOSH%" "" "812AC") "%ATANH" ("% --> ATANH%" "" "812CA") "%MANTISSA" ("% --> %mant" "" "8131A") "%EXPONENT" ("% --> %expn" "" "812F7") "%FP" ("% --> %frac" "" "81301") "%IP" ("% --> %int" "" "81306") "%FLOOR" ("% --> %maxint <=%" "" "812FC") "%CEIL" ("% --> %minint >=%" "" "812CF") "%MOD" ("% %' --> %rem" "" "8131F") "%ANGLE" ("%x %y --> %ang" "" "812B6") "RNDXY" ("% %places --> %'" "" "82FDF") "TRCXY" ("% %places --> %'" "" "82FF3") "%COMB" ("% %' --> COMB(%,%')" "" "812DE") "%PERM" ("% %' --> PERM(%,%')" "" "81333") "%NFACT" ("% --> %!" "Calculates factorial of number." "81324") "%FACT" ("% --> gamma(%+1)" "Calculates gamma(x+1)." "82F5D") "%NROOT" ("% %n --> %'" "Calculates the %nth root of the real
  3. number. Equivalent to user function XROOT." "81329") "%MIN" ("% %' --> %lesser" "" "82F99") "%MAX" ("% %' --> %greater" "" "82F8F") "%MAXorder" ("% %' --> %max %min" "" "837F0") "%RAN" ("--> %random" "Returns next random number." "81338") "%RANDOMIZE" ("%seed -->" "System level RDZ: seeds the random number
  4. generator. " "82FB7") "%OF" ("% %' --> %'/% * 100" "" "8132E") "%T" ("% %' --> %pctotal" "" "81351") "%CH" ("% %' --> %pcchange" "" "812D4") "%D>R" ("%deg --> %rad" "" "82F53") "%R>D" ("%rad --> %deg" "" "82FAD") "%REC>%POL" ("%r %ang --> %x %y" "" "82FC1") "%POL>%REC" ("%x %y --> %r %ang" "" "82FA3") "%SPH>%REC" ("%r %ang %ph --> %x %y %z" "" "82FCB") "SWAP%%/" ("%% %%' --> %%''" "" "845C9") "%%/>%" ("%% %%' --> %" "" "8458D") "%=" ("% %' --> flag" "" "8127F") "%<>" ("% %' --> flag" "" "8127A") "%<" ("% %' --> flag" "" "8126B") "%<=" ("% %' --> flag" "" "81270") "%>" ("% %' --> flag" "" "81284") "%>=" ("% %' --> flag" "" "81275") "%0=" ("% --> flag" "" "81266") "DUP%0=" ("% --> flag" "" "845B5") "%0<>" ("% --> flag" "Can be used to change a user flag into a
  5. system flag. " "82F3F") "%0<" ("% --> flag" "" "81261") "%0>" ("% --> flag" "" "8125C") "%0>=" ("% --> flag" "" "82F49") "%>C%" ("%re %im --> C%" "" "81BF8") "SWAP%>C%" ("%im %re --> C%" "" "83D18") "CHR_00" ("'\\00', CHR 0d 00h" "The NULL character." "80C80" :NOSDIAG) "CHR_Newline" ("'\\0a', CHR 10d 0Ah" "" "80ED3" :NOSDIAG) "CHR_..." ("'...', CHR 31d 1Fh" "" "80C87" :NOSDIAG) "CHR_Space" ("'\\ ', CHR 32d 20h" "The space character." "80EEF" :NOSDIAG) "CHR_DblQuote" ("'\"', CHR 34d 22h" "" "80C95" :NOSDIAG) "CHR_#" ("'#', CHR 35d 23h" "" "80C9C" :NOSDIAG) "CHR_LeftPar" ("'(', CHR 40d 28h" "" "80ECC" :NOSDIAG) "CHR_RightPar" ("')', CHR 41d 29h" "" "80EE1" :NOSDIAG) "CHR_*" ("'*', CHR 42d 2Ah" "" "80CA3" :NOSDIAG) "CHR_+" ("'+', CHR 43d 2Bh" "" "80CAA" :NOSDIAG) "CHR_," ("',', CHR 44d 2Ch" "" "80CB1" :NOSDIAG) "CHR_-" ("'-', CHR 45d 2Dh" "" "80CB8" :NOSDIAG) "CHR_." ("'.', CHR 46d 2Eh" "" "80CBF" :NOSDIAG) "CHR_/" ("'/', CHR 47d 2Fh" "" "80CC6" :NOSDIAG) "CHR_0" ("'0', CHR 48d 30h" "" "80CCD" :NOSDIAG) "CHR_1" ("'1', CHR 49d 31h" "" "80CD4" :NOSDIAG) "CHR_2" ("'2', CHR 50d 32h" "" "80CDB" :NOSDIAG) "CHR_3" ("'3', CHR 51d 33h" "" "80CE2" :NOSDIAG) "CHR_4" ("'4', CHR 52d 34h" "" "80CE9" :NOSDIAG) "CHR_5" ("'5', CHR 53d 35h" "" "80CF0" :NOSDIAG) "CHR_6" ("'6', CHR 54d 36h" "" "80CF7" :NOSDIAG) "CHR_7" ("'7', CHR 55d 37h" "" "80CFE" :NOSDIAG) "CHR_8" ("'8', CHR 56d 38h" "" "80D05" :NOSDIAG) "CHR_9" ("'9', CHR 57d 39h" "" "80D0C" :NOSDIAG) "CHR_:" ("':', CHR 58d 3Ah" "" "80D13" :NOSDIAG) "CHR_;" ("';', CHR 59d 3Bh" "" "80D1A" :NOSDIAG) "CHR_<" ("'<', CHR 60d 3Ch" "" "80D21" :NOSDIAG) "CHR_=" ("'=', CHR 61d 3Dh" "" "80D28" :NOSDIAG) "CHR_>" ("'>', CHR 62d 3Eh" "" "80D2F" :NOSDIAG) "CHR_A" ("'A', CHR 65d 41h" "" "80D36" :NOSDIAG) "CHR_B" ("'B', CHR 66d 42h" "" "80D3D" :NOSDIAG) "CHR_C" ("'C', CHR 67d 43h" "" "80D44" :NOSDIAG) "CHR_D" ("'D', CHR 68d 44h" "" "80D4B" :NOSDIAG) "CHR_E" ("'E', CHR 69d 45h" "" "80D52" :NOSDIAG) "CHR_F" ("'F', CHR 70d 46h" "" "80D59" :NOSDIAG) "CHR_G" ("'G', CHR 71d 47h" "" "80D60" :NOSDIAG) "CHR_H" ("'H', CHR 72d 48h" "" "80D67" :NOSDIAG) "CHR_I" ("'I', CHR 73d 49h" "" "80D6E" :NOSDIAG) "CHR_J" ("'J', CHR 74d 4Ah" "" "80D75" :NOSDIAG) "CHR_K" ("'K', CHR 75d 4Bh" "" "80D7C" :NOSDIAG) "CHR_L" ("'L', CHR 76d 4Ch" "" "80D83" :NOSDIAG) "CHR_M" ("'M', CHR 77d 4Dh" "" "80D8A" :NOSDIAG) "CHR_N" ("'N', CHR 78d 4Eh" "" "80D91" :NOSDIAG) "CHR_O" ("'O', CHR 79d 4Fh" "" "80D98" :NOSDIAG) "CHR_P" ("'P', CHR 80d 50h" "" "80D9F" :NOSDIAG) "CHR_Q" ("'Q', CHR 81d 51h" "" "80DA6" :NOSDIAG) "CHR_R" ("'R', CHR 82d 52h" "" "80DAD" :NOSDIAG) "CHR_S" ("'S', CHR 83d 53h" "" "80DB4" :NOSDIAG) "CHR_T" ("'T', CHR 84d 54h" "" "80DBB" :NOSDIAG) "CHR_U" ("'U', CHR 85d 55h" "" "80DC2" :NOSDIAG) "CHR_V" ("'V', CHR 86d 56h" "" "80DC9" :NOSDIAG) "CHR_W" ("'W', CHR 87d 57h" "" "80DD0" :NOSDIAG) "CHR_X" ("'X', CHR 88d 58h" "" "80DD7" :NOSDIAG) "CHR_Y" ("'Y', CHR 89d 59h" "" "80DDE" :NOSDIAG) "CHR_Z" ("'Z', CHR 90d 5Ah" "" "80DE5" :NOSDIAG) "CHR_[" ("'[', CHR 91d 5Bh" "" "80EFD" :NOSDIAG) "CHR_]" ("']', CHR 93d 5Dh" "" "80F04" :NOSDIAG) "CHR_UndScore" ("'_', CHR 95d 5Fh" "" "80EF6" :NOSDIAG) "CHR_a" ("'a', CHR 97d 61h" "" "80DEC" :NOSDIAG) "CHR_b" ("'b', CHR 98d 62h" "" "80DF3" :NOSDIAG) "CHR_c" ("'c', CHR 99d 63h" "" "80DFA" :NOSDIAG) "CHR_d" ("'d', CHR 100d 64h" "" "80E01" :NOSDIAG) "CHR_e" ("'e', CHR 101d 65h" "" "80E08" :NOSDIAG) "CHR_f" ("'f', CHR 102d 66h" "" "80E0F" :NOSDIAG) "CHR_g" ("'g', CHR 103d 67h" "" "80E16" :NOSDIAG) "CHR_h" ("'h', CHR 104d 68h" "" "80E1D" :NOSDIAG) "CHR_i" ("'i', CHR 105d 69h" "" "80E24" :NOSDIAG) "CHR_j" ("'j', CHR 106d 6Ah" "" "80E2B" :NOSDIAG) "CHR_k" ("'k', CHR 107d 6Bh" "" "80E32" :NOSDIAG) "CHR_l" ("'l', CHR 108d 6Ch" "" "80E39" :NOSDIAG) "CHR_m" ("'m', CHR 109d 5Dh" "" "80E40" :NOSDIAG) "CHR_n" ("'n', CHR 110d 6Eh" "" "80E47" :NOSDIAG) "CHR_o" ("'o', CHR 111d 6Fh" "" "80E4E" :NOSDIAG) "CHR_p" ("'p', CHR 112d 70h" "" "80E55" :NOSDIAG) "CHR_q" ("'q', CHR 113d 71h" "" "80E5C" :NOSDIAG) "CHR_r" ("'r', CHR 114d 72h" "" "80E63" :NOSDIAG) "CHR_s" ("'s', CHR 115d 73h" "" "80E6A" :NOSDIAG) "CHR_t" ("'t', CHR 116d 74h" "" "80E71" :NOSDIAG) "CHR_u" ("'u', CHR 117d 75h" "" "80E78" :NOSDIAG) "CHR_v" ("'v', CHR 118d 76h" "" "80E7F" :NOSDIAG) "CHR_w" ("'w', CHR 119d 77h" "" "80E86" :NOSDIAG) "CHR_x" ("'x', CHR 120d 78h" "" "80E8D" :NOSDIAG) "CHR_y" ("'y', CHR 121d 79h" "" "80E94" :NOSDIAG) "CHR_z" ("'z', CHR 122d 7Ah" "" "80E9B" :NOSDIAG) "CHR_{" ("'{', CHR 123d 7Bh" "" "80F0B" :NOSDIAG) "CHR_}" ("'{', CHR 125d 7Dh" "" "80F12" :NOSDIAG) "CHR_Angle" ("'\\<)', CHR 128d 80h" "" "80EB7" :NOSDIAG) "CHR_Integral" ("'\\.S', CHR 132d 84h" "" "80EC5" :NOSDIAG) "CHR_Deriv" ("'\\.d', CHR 136d 88h" "" "80EBE" :NOSDIAG) "CHR_->" ("'-->', CHR 141d 8Dh" "" "80EA2" :NOSDIAG) "CHR_<<" ("'\\<<', CHR 171d ABh" "" "80EA9" :NOSDIAG) "CHR_>>" ("'\\>>', CHR 187d BBh" "" "80EB0" :NOSDIAG) "CHR_Pi" ("'\\pi', CHR 135d 87h" "" "80EDA" :NOSDIAG) "CHR_Sigma" ("'\\GS', CHR 133d 85h" "" "80EE8" :NOSDIAG) "CHR_<=" ("'\\<=', CHR 137d 89h" "" "80F19" :NOSDIAG) "CHR_>=" ("'\\>=', CHR 138d 8Ah" "" "80F20" :NOSDIAG) "CHR_<>" ("'\\=/', CHR 139d 8Bh" "" "80F27" :NOSDIAG) "CHR_'" ("" "" "80C8E") "NULL$" ("\"\"" "Empty string." "055BF") "tok_" ("\"\\ \"" "" "80B10") "SPACE$" ("\"\\ \"" "" "80B10") "14SPACES$" ("\"\\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \\ \"" "String of 14 spaces." "80ACE") "(LF$)" ("\"\\0a\"" "Newline." "80AF4") "NEWLINE$" ("\"\\0a\"" "Newline." "80AF4") "CRLF$" ("\"\\0d\\0a\"" "Carriage return and line feed." "0E909") "toklparen" ("\"(\"" "" "80B70") "tokrparen" ("\")\"" "" "80B7C") "tok[" ("\"[\"" "" "80A26") "tok]" ("\"]\"" "" "80A0C") "tok{" ("\"{\"" "" "80A32") "tok}" ("\"}\"" "" "80A3E") "tok<<" ("\"\\<<\"" "" "80A92") "tok>>" ("\"\\>>\"" "" "80A86") "$_LRParens" ("\"()\"" "" "80FF1") "$_{}" ("\"{}\"" "" "80FB9") "$_<<>>" ("\"\\<<\\>>\"" "" "80FAB") "$_''" ("\"''\"" "Two single quotes." "80FD5") "$_::" ("\"::\"" "" "80FE3") "$_2DQ" ("\"\"\"\"" "Two double quotes." "80FFF") "tok," ("\",\"" "" "80B4C") "tok'" ("\"'\"" "One single quote." "80B40") "tok-" ("\"-\"" "" "80BB8") "tok." ("\".\"" "" "80B58") "tok=" ("\"=\"" "" "80BC4") "tok0" ("\"0\"" "" "80C08") "tok1" ("\"1\"" "" "80C14") "tok2" ("\"2\"" "" "80C20") "tok3" ("\"3\"" "" "80C2C") "tok4" ("\"4\"" "" "80C38") "tok5" ("\"5\"" "" "80C44") "tok6" ("\"6\"" "" "80C50") "tok7" ("\"7\"" "" "80C5C") "tok;" ("\";\"" "" "80B64") "tok8" ("\"8\"" "" "80C68") "tok9" ("\"9\"" "" "80C74") "tokESC" ("\"\\1B\"" "Escape character." "80A7A") "tokexponent" ("\"E\"" "" "80A9E") "tokquote" ("\"\"\"" "One double quote." "80B34") "toksharp" ("\"#\"" "" "80A4A") "tok$" ("\"$\"" "" "80A62") "tok&" ("\"&\"" "" "80A6E") "tok*" ("\"*\"" "" "80B94") "tok+" ("\"+\"" "" "80BAC") "tok/" ("\"/\"" "" "80BA0") "tokanglesign" ("\"\\<)\"" "" "80AAA") "tokDER" ("\"\\.d\"" "" "80BDC") "$DER" ("\"der\"" "" "80B00") "tokSIGMA" ("\"\\GS\"" "" "80AB6") "tokSQRT" ("\"\\v/\"" "" "80BD0") "tokuscore" ("\"_\"" "" "80A56") "tokWHERE" ("\"|\"" "" "80AC2") "tok^" ("\"^\"" "" "80B88") "tok:" ("\":\"" "" "4F7F8") "$_RAD" ("\"RAD\"" "" "8104D") "$_GRAD" ("\"GRAD\"" "" "8105D") "$_XYZ" ("\"XYZ\"" "" "80F9B") "$_R<Z" ("\"R\\<)Z\"" "\"R<angle>Z\"" "80F8B") "$_R<<" ("\"R\\<)\\<)\"" "\"R<angle><angle>\"" "80F7B") "$_EXIT" ("\"EXIT\"" "" "8101F") "$_ECHO" ("\"ECHO\"" "" "8100D") "$_Undefined" ("\"Undefined\"" "" "81031") "tokCTGROB" ("\"GROB\"" "" "80BE8") "tokCTSTR" ("\"C$\"" "" "80BFA") "tokUNKNOWN" ("\"UNKNOWN\"" "" "80B1C") "NULL$SWAP" ("ob --> $ ob" "NULL$, then SWAP." "837C8") "DROPNULL$" ("ob --> NULL$" "DROP then NULL$." "819FA") "TWODROPNULL$" ("ob ob' --> NULL$" "2DROP then NULL$." "819FF") "#>$" ("# --> $" "Creates string from the bint (decimal)." "818C9") "ID>$" ("id/lam --> $" "Converts identifier into string." "81C07") "#>CHR" ("# --> chr" "Returns character with the specified ASCII
  6. code." "81BE9") "CHR>$" ("chr --> $* Strings" "Converts a character into a string." "84ABA") "LEN$" ("$ --> #length" "Returns length in bytes." "819DC") "DUPLEN$" ("$ --> $ #" "DUP then LEN$." "8154A") "NEWLINE&$" ("$ --> \"$\\0a\"" "Appends newline character to string." "83C00") "NEWLINE$&$" ("$ --> \"$\\0a\"" "Appends newline character to string." "83C00") "CAR$" ("$ --> chr
  7. --> \"\"" "Returns first character of string as a
  8. string, or NULL$ for null string." "819D7") "CDR$" ("$ --> $'" "Returns string without first character, or
  9. NULL$ for null string." "83179") "POS$" ("$ $find start# --> #pos
  10. --> #0" "Search for $find in $search, starting at
  11. position #start. Returns position of $find
  12. or 0 if not found.
  13. Same entry as POSCHR." "81B3A") "POSCHR" ("$search chr #start --> #pos
  14. --> #0" "Same entry as <REF>POS$." "81B44") "POS$REV" ("$ $find #limit --> #pos
  15. --> #0" "Searches backwards from #limit to #1.
  16. Same entry as <REF>POSCHRREV." "81B3F") "POSCHRREV" ("$seach chr #start --> #pos
  17. --> #0" "Same entry as <REF>POS$REV." "81B49") "SUB$" ("$ #start #end --> $'" "Returns substring between specified
  18. positions. " "819E6") "#1-SUB$" ("$ #start #end+#1 --> $'" "Does #1- and then SUB$." "83CB4") "1_#1-SUB" ("$ #end --> $'" "Returns substring with the first #end
  19. characters." "83CC8") "1_#1-SUB$" ("$ #end --> $'" "Returns substring with the first #end
  20. characters." "83CC8") "LAST$" ("$ #start --> $'" "Returns substring from the specified start
  21. position to the end (inclusive)." "83CDC") "#1+LAST$" ("$ #start-#1 --> $'" "Returns substring from the specified start
  22. position to the end (exclusive)." "83CF0") "SUB$SWAP" ("ob $ # #' --> $' ob" "SUB$ then SWAP." "837DC") "SUB$1#" ("$ #pos --> #'" "Returns bint with ASCII code of character at
  23. the specified position." "81A72") "EXPAND" ("hxs #nibs --> hxs'" "Appends null characters to the string. Since
  24. refers to the number of nibbles, you must
  25. use a number twice as large as the number
  26. of null characters you want appended." "81491") "&$" ("$ $' --> $+$'" "Concatenates two strings." "819C8") "&$SWAP" ("ob $ $' --> $+$' ob" "&$ then SWAP." "84975") "!append$" ("$ $' --> $+$'" "Tries &$, if not enough memory does
  27. !!append$?." "8316F") "!append$SWAP" ("ob $ $' --> $+$' ob" "!append$ then SWAP." "8399E") "!!append$" ("$ $' --> $+$'" "Tries appending \"in place\"." "81590") ">H$" ("$ chr --> $'" "Prepends character to string" "819CD") ">T$" ("$ chr --> $'" "Appends character to string." "819D2") "APPEND_SPACE" ("$ --> $'" "Appends space to string." "8361F") "SWAP&$" ("$ $' --> $'+$" "Concatenates two strings." "831B5") "!*triand" ("T T -->
  28. F T --> F T <SEMI>" "" "82E45") "tok8cktrior" ("$1 $1 --> :: $1 <Ob1> ;
  29. $1 $2 --> :: $1 <Ob2> <Rest> ;" "" "81C89") "tok8trior" ("GNT data $1 $1 --> :: GNT data GetNextToken ;
  30. GNT data $1 $2 --> :: $1 <Ob1> <Rest> ;" "" "81C8E") "nultrior" ("NULL$ --> :: ;
  31. $ --> :: $ <Ob1> <Rest> ;" "" "81C93") "GetNextToken" ("hxs-mask $ #start --> hxs-mask $ #next $token" "" "82E27") "EDITDECOMP$" ("ob --> $" "Calls setStdEditWid and the decompiles for
  32. editing like <REF>editdecomp$w." "83197") "DECOMP$" ("ob --> $" "Calls <REF>setStdWid and decompiles entire
  33. object (UserRPL components only). Breaks the
  34. string into lines using DcompWidth as width." "83183") "DO>STR" ("$ --> $
  35. ob --> $" "Internal version of \\->STR." "8318D") "Decomp%Short" ("% #width --> $" "Decompiles a real number into a string of the
  36. given #width. It will QdropQ less significant
  37. digits or add zeros as needed, but will also
  38. exceed #width when necessary. E.g. \"-1.e-33\"
  39. cannot be written with less than 7
  40. characters, so even if #width is less, 7
  41. chars will be used. Q%0Q is always decompiled
  42. as \"0\"." "831BF") "NULL$?" ("ob --> flag" "" "819E1") "DUPNULL$?" ("ob --> ob flag" "" "83C78") "#>HXS" ("# --> hxs" "Length will be five." "81BEE") "NULLHXS" ("HXS 0" "Puts a null hxs in the stack." "055B5") "ARSIZE" ("[] --> #" "Returns number of elements as a bint." "81BD5") "DIMLIMITS" ("[] --> {#n #m}" "Returns list of array dimensions." "81BDA") "GETATELN" ("# [] --> ob T
  43. --> F" "Gets one element from array." "81BDF") "MATCON" ("[%] % --> [%]'
  44. [C%] C% --> [C%]'" "Replace all elements of [F%] by F%." "81E64") "MDIMS" ("[1D] --> #m F
  45. [2D] --> #m #n T" "If it is a vector, returns number of elements
  46. and FALSE. If it is an array (including
  47. arrays with only one line), returns
  48. dimensions and TRUE." "81AA4") "MDIMSDROP" ("[2D] --> #m #n" "MDIMS followed by DROP." "83A0C") "OVERARSIZE" ("[] ob --> [] ob #elts" "Does OVER then <REF>ARSIZE." "83BB0") "PUTEL" ("[%] % # --> [%]'
  49. [C%] C% # --> [C%]'" "Puts element at specified position. Converts
  50. to \"short\" before. Warning: no copy to
  51. tempob first." "81AA9") "MATREDIM" ("[F%] {#n #m} --> [F%]'" "" "81E6E") "MATTRN" ("[F%] --> [F%]'" "Transposes matrix." "81E78") "MAKEARRY" ("{#n #m} ob --> []" "Makes array with all elements initialized to
  52. ob." "81BE4") "EXTN" ("ob1..obn #n --> u" "Builds a unit object." "81F0E") "&COMP" ("comp comp' --> comp''" "Concatenates two composites." "81F18") ">TCOMP" ("comp ob --> comp+ob" "Adds ob to tail (end) of composite." "81E96") ">HCOMP" ("comp ob --> ob+comp" "Adds ob to head (beginning) of composite." "81E8C") "CARCOMP" ("comp --> ob_head
  53. comp_null --> comp_null" "Returns first object of the composite, or a
  54. null composite if the argument is a null
  55. composite." "819A0") "?CARCOMP" ("comp T --> ob
  56. comp F --> comp" "If the flag is TRUE, does CARCOMP." "83BEC") "CDRCOMP" ("comp --> comp-ob_head
  57. comp_null --> comp_null" "Returns the composite minus its first object,
  58. or a null composite if the argument is a null
  59. composite." "81EA0") "LENCOMP" ("comp --> #n" "Returns length of composite (number of
  60. objects)." "819AA") "DUPLENCOMP" ("comp --> comp #n" "Does DUP then <REF>LENCOMP." "83CA0") "NULLCOMP?" ("comp --> flag" "If the composite is empty, returns TRUE." "819B4") "DUPNULLCOMP?" ("comp --> comp flag" "Does DUP then <REF>NULLCOMP?." "83C8C") "NTHELCOMP" ("comp #i --> ob T
  61. --> F" "Returns specified element of composite and
  62. TRUE, or just FALSE if it could not be found." "819AF") "NTHCOMPDROP" ("comp #i --> ob" "Does <REF>NTHELCOMP then DROP." "8360B") "NTHCOMDDUP" ("comp #i --> ob ob" "Does <REF>NTHCOMPDROP then DUP." "8378C") "POSCOMP" ("comp ob pred --> #i
  63. --> #0
  64. (eg: pred = ' %<)" "Evaluates pred for all elements of composite
  65. and ob, and returns index of first object for
  66. which the pred is TRUE. If no one returned
  67. TRUE, returns #0. For example, the program
  68. below returns #4:
  69. :: { %1 %2 %3 %-4 %-5 %6 %7 } %0
  70. ' %< POSCOMP ;" "81EDC") "EQUALPOSCOMP" ("comp ob --> #pos
  71. --> #0" "POSCOMP with EQUAL as test." "84A6F") "EQUALPOSCMP" ("comp ob --> #pos
  72. --> #0" "" "81EBE") "NTHOF" ("ob comp --> #i
  73. --> #0" "Does SWAP then <REF>EQUALPOSCOMP." "84A88") "#=POSCOMP" ("comp # --> #i
  74. --> #0" "POSCOMP with #= as test." "84A56") "SUBCOMP" ("comp #m #n --> comp'" "Returns a sub-composite. Makes all index
  75. checks first." "819B9") "Embedded?" ("ob1 ob2 --> flag" "Returns TRUE if ob2 is embedded in, or is the
  76. same as, ob1. Otherwise returns FALSE." "81392") "Lookup" ("ob test comp --> nextob T
  77. --> ob F" "Tests every odd element (1,3,...) in the
  78. composite. If a test returns TRUE, the
  79. object after the tested one is returned,
  80. along with TRUE. If no object tests TRUE,
  81. FALSE is returned. For example, the program
  82. below returns %6 and TRUE.
  83. :: %0 ' %<
  84. { %1 %2 %3 %-4 %-5 %6 }
  85. Lookup ;" "81EC8") "Lookup.1" ("ob test --> nextob T
  86. --> ob F
  87. Return Stack:
  88. comp -->" "Lookup with the composite already pushed
  89. (with >R) onto the runstream. Called by
  90. Lookup. " "81ED2") "EQLookup" ("ob comp --> nextob T
  91. --> ob F" "Lookup with EQ as test." "84A9C") "NEXTCOMPOB" ("comp #ofs --> comp #ofs' ob T
  92. --> comp F" "Returns object at specified nibble offset
  93. from start. If the object is SEMI (i.e., the
  94. end of the composite has been reached)
  95. returns FALSE. To get the first element, use
  96. FIVE as offset value (to skip the prolog).
  97. ZERO works as well." "81B35") "{}N" ("obn..ob1 #n --> { obn..ob1 }" "" "81EFA") "::N" ("ob1..obn #n --> :: ob1..obn ;" "" "81EF0") "SYMBN" ("ob1..obn #n --> symb" "Build a symbolic object." "81F04") "top&Cr" ("meta1 meta2 --> symb" "Does top& then <REF>SYMBN: ." "8490C") "P::N" ("ob1..obn #n --> seco" "Build seco with possible garbage collection." "82E77") "INNERCOMP" ("comp --> obn..ob1 #n" "" "819A5") "DUPINCOMP" ("comp --> comp obn..ob1 #n" "" "83C50") "SWAPINCOMP" ("comp obj --> obj obn..ob1 #n" "" "83C64") "INCOMPDROP" ("comp --> obn..ob1" "" "835F7") "INNERDUP" ("comp --> obn..ob1 #n #n" "" "836B0") "INNER#1=" ("comp --> obn..ob1 flag" "" "840F6") "NULL{}" ("--> {}" "Pushes a null list to the stack." "055C9") "DUPNULL{}?" ("{} --> {} flag" "" "8447A") "TWO{}N" ("ob1 ob2 --> { ob1 ob2 }" "" "83C28") "THREE{}N" ("ob1 ob2 ob3 --> { ob1 ob2 ob3 }" "" "83C3C") "#1-{}N" ("ob1..obn #n+1 --> {}" "" "83C14") "PUTLIST" ("ob #i {} --> {}'" "Replaces object at specified
  98. position. Assumes valid #i." "81EE6") "NULL::" ("--> :: ;" "Returns null secondary." "055DD") "Ob>Seco" ("ob --> :: ob ;" "Does ONE then <REF>::N." "849F2") "?Ob>Seco" ("ob --> :: ob ;" "If the object is not a secondary, does
  99. Ob>Seco." "849D9") "2Ob>Seco" ("ob1 ob2 --> :: ob1 ob2 ;" "Does TWO then <REF>::N." "84A06") "::NEVAL" ("ob1..obn #n --> ?" "Does <REF>::N then <REF>EVAL." "83D40") "NDROP" ("meta -->" "Should be called drop." "81D5B") "DROPNDROP" ("meta ob -->" "Should be called DROPdrop." "849B1") "N+1DROP" ("ob meta -->" "Should be called dropDROP." "839E4") "#1+NDROP" ("ob meta -->" "Should be called dropDROP." "839E4") "psh" ("meta1 meta2 --> meta2 meta1" "Should be called swap." "81D01") "roll2ND" ("meta1 meta2 meta3 --> meta2 meta3 meta1" "Should be called rot." "81D06") "unroll2ND" ("meta1 meta2 meta3 --> meta3 meta1 meta2" "Should be called unrot." "81D10") "SWAPUnNDROP" ("meta1 meta2 --> meta2" "Should be called swapdrop." "8431C") "SWAPUnDROP" ("meta1 meta2 --> meta2 ob1..obn" "Swaps two metas and drops the count. Should
  100. be called swapDROP." "84308") "metaROTDUP" ("meta1 meta2 meta3 --> meta2 meta3 meta1 meta1" "Should be called rotdup." "84925") "top&" ("meta1 meta2 --> meta1&meta2" "" "81CF2") "pshtop&" ("meta1 meta2 --> meta2&meta1" "" "8309D") "ROTUntop&" ("meta1 meta2 meta3 --> meta2 meta3&meta1" "" "84939") "rolltwotop&" ("meta1 meta2 meta3 --> meta3 meta1&meta2" "" "8494D") "roll2top&" ("meta1 meta2 meta3 --> meta3 meta1&meta2" "" "8494D") "psh&" ("meta1 meta2 meta3 --> meta1&meta3 meta2" "" "83061") "get1" ("ob meta --> meta ob" "" "815B8") "psh1top&" ("meta ob --> ob&meta" "" "83075") "#1-SWAP" ("meta&ob --> meta ob" "" "830B1") "pull" ("meta&ob --> meta ob" "" "830B1") "pullrev" ("ob&meta --> meta ob" "" "830BB") "psh1&" ("meta1 meta2 ob --> ob&meta1 meta2" "" "81CF7") "psh1&rev" ("meta1 meta2 ob --> ob&meta1 meta2" "" "81CFC") "pullpsh1&" ("meta1 meta2&ob --> ob&meta1 meta2" "" "830C5") "pshzer" ("meta --> #0 meta" "" "830A7") "NULLSYMB" ("--> sym" "Puts a null algebraic in the stack." "055D3") "symcomp" ("ob --> ob'" "If ob is symbolic, does nothing, otherwise
  101. ONE SYMBN." "8320F") "SWAPcompSWAP" ("ob ob' --> ob'' ob'" "Does SWAP symcomp SWAP." "82E8B") "~covD/D*" ("" "Derivative of multiplication." "0950F0") "~covD/D+" ("" "Derivative of addition." "0980F0") "~covD/D-" ("" "Derivative of subtraction." "0990F0") "~covD/D/" ("" "Derivative of division." "09A0F0") "~covD/Dalg=" ("" "Derivative of equality." "09B0F0") "~covD/D=" ("" "Derivative of equality." "09B0F0") "~covD/DABS" ("" "Derivative of ABS." "09D0F0") "~covD/DACOS" ("" "Derivative of ACOS." "09E0F0") "~covD/DACOSH" ("" "Derivative of ACOSH." "09F0F0") "~covD/DALOG" ("" "Derivative of ALOG." "0A00F0") "~covD/DAPPLY" ("" "" "0BB0F0") "~covD/DARG" ("" "Derivative of ARG." "0A10F0") "~covD/DASIN" ("" "Derivative of ASIN." "0A20F0") "~covD/DASINH" ("" "Derivative of ASINH." "0A30F0") "~covD/DATAN" ("" "Derivative of ATAN." "0A40F0") "~covD/DATANH" ("" "Derivative of ATANH." "0A50F0") "~covD/DCOS" ("" "Derivative of COS." "0A60F0") "~covD/DCOSH" ("" "Derivative of COSH." "0A70F0") "~covD/DDER" ("" "Derivative of derivative." "0B70F0") "~covD/DEXPM1" ("" "Derivative of EXP." "0A80F0") "~covD/DEXP" ("" "Derivative of EXP." "0A80F0") "~covD/DIFTE" ("" "Derivative of IFTE." "0AD0F0") "~covD/DINV" ("" "Derivative of INV." "0A90F0") "~covD/DLN" ("" "Derivative of LN." "0AA0F0") "~covD/DLNP1" ("" "Derivative of LNP1." "0AB0F0") "~covD/DLOG" ("" "Derivative of LOG." "0AC0F0") "~covD/DSIN" ("" "Derivative of SIN." "0AE0F0") "~covD/DSINH" ("" "Derivative of SINH." "0AF0F0") "~covD/DSQ" ("" "Derivative of SQ." "0B00F0") "~covD/DSQRT" ("" "Derivative of SQRT." "0B10F0") "~covD/DSUM" ("" "Derivative of SUM." "0BA0F0") "~covD/DTAN" ("" "Derivative of TAN." "0B20F0") "~covD/DTANH" ("" "Derivative of TANH." "0B30F0") "~covD/DWHERE" ("" "" "0B80F0") "~covD/D^" ("" "Derivative of power." "0B40F0") "~covD/D^X" ("" "" "0B50F0") "~covD/D^Y" ("" "" "0B60F0") "pZpargSWAPUn" ("meta --> M_rest M_last" "<REF>pshzerpsharg then <REF>psh ." "8499D") "plDRPpZparg" ("meta&ob --> M_last M_rest" "Drops ob then calls <REF>pshzerpsharg ." "84961") "#>ROMPTR" ("#lib #cmd --> ROMPTR" "Creates rompointer." "81C0C") "ROMPTR>#" ("ROMPTR --> #lib #cmd" "Splits rompointer." "81C66") "ROMPTR@" ("ROMPTR --> ob T
  102. --> F" "Recalls contents of rompointer." "81C6B") "DUPROMPTR@" ("ROMPTR --> ROMPTR ob T
  103. --> ROMPTR F" "Does DUP then ROMPTR@." "83688") "?>ROMPTR" ("ob --> ob'" "If ROM-WORD? and TYPECOL? then RPL@." "82FFD") "?ROMPTR>" ("ob --> ob'" "If <REF>TYPEROMP? and content exists
  104. <REF>INHARDROM? then return contents." "83007") "RESOROMP" ("--> ob" "Recalls contents of next object in the
  105. runstream (which must be a rompointer)." "83011") "COMPILEID" ("id --> id T
  106. --> ROMPTR T
  107. --> F" "Searches id in current path, if found returns
  108. TRUE. Else searches attached libraries. If
  109. nothing was found, return FALSE." "81C20") "ROM-WORD?" ("ob --> flag" "" "81496") "TOSRRP" ("# -->" "Attaches library to HOME directory.
  110. --
  111. <REF>TEXT:Libraries" "81C84") "OFFSRRP" ("# -->" "Detaches library from HOME directory.
  112. --
  113. <REF>TEXT:Libraries" "81C43") "ONSRRP?" ("# --> flag" "Returns TRUE if library is attached to HOME
  114. directory." "81C48") "XEQSETLIB" ("% -->" "Internal ATTACH." "82D5F") "BAKNAME" ("bak --> id T" "Returns backup's name" "81720") "BAK>OB" ("bak --> ob" "Gets QbackupQ object." "81716") "DUP" ("ob --> ob ob" "" "81D3D") "DUPDUP" ("ob --> ob ob ob" "" "83728") "NDUPN" ("ob #n --> ob..ob #n
  115. ob #0 --> #0" "" "8304D") "DUPROT" ("1 2 --> 2 2 1" "" "83A20") "SWAPOVER" ("1 2 --> 2 1 2" "" "815C7") "DUPUNROT" ("1 2 --> 2 1 2" "" "815C7") "DUPROLL" ("1..n #n --> 1 3..n #n 2" "" "83B60") "DUPPICK" ("n..1 #n --> n..1 #n n-1" "" "83B4C") "2DUP" ("1 2 --> 1 2 1 2" "" "81D42") "2DUP5ROLL" ("1 2 3 --> 2 3 2 3 1" "" "8464B") "NDUP" ("1..n #n --> 1..n 1..n" "" "81D47") "DROP" ("1 -->" "" "81D51") "DROPDUP" ("1 2 --> 1 1" "" "81545") "DROPSWAP" ("1 2 3 --> 2 1" "" "8152C") "DROPROT" ("1 2 3 4 --> 2 3 1" "" "83A34") "DROPOVER" ("1 2 3 --> 1 2 1" "" "83A98") "2DROP" ("1 2 -->" "" "81D56") "XYZ>" ("1 2 3 -->" "" "8149B") "3DROP" ("1 2 3 -->" "" "8149B") "XYZW>" ("1..4 -->" "" "814AA") "4DROP" ("1..4 -->" "" "814AA") "5DROP" ("1..5 -->" "" "814BE") "6DROP" ("1..6 -->" "" "814D2") "7DROP" ("1..7 -->" "" "81450") "DEPTH" ("1..n --> 1..n #n" "" "81D38") "reversym" ("1..n #n --> n..1 #n" "" "830CF") "SWAP" ("1 2 --> 2 1" "" "81D4C") "SWAPDUP" ("1 2 --> 2 1 1" "" "81536") "SWAP2DUP" ("1 2 --> 2 1 2 1" "" "8425E") "XY>Y" ("1 2 --> 2" "" "81455") "SWAPDROP" ("1 2 --> 2" "" "81455") "SWAPDROPDUP" ("1 2 --> 2 2" "" "81554") "XYZ>ZYX" ("1 2 3 --> 3 2 1" "" "8144B") "UNROTSWAP" ("1 2 3 --> 3 2 1" "" "8144B") "SWAPROT" ("1 2 3 --> 3 2 1" "" "8144B") "XYZW>YWZX" ("1 2 3 4 --> 2 4 3 1" "" "84637") "SWAP4ROLL" ("1 2 3 4 --> 2 4 3 1" "" "84637") "SWAP3PICK" ("1 2 3 --> 1 3 2 1" "" "8465F") "2SWAP" ("1 2 3 4 --> 3 4 1 2" "" "81374") "ROT" ("1 2 3 --> 2 3 1" "" "81D60") "ROTDUP" ("1 2 3 --> 2 3 1 1" "" "8153B") "ROT2DUP" ("1 2 3 --> 2 3 1 3 1" "" "836EC") "XYZ>YZ" ("1 2 3 --> 2 3" "" "81446") "ROTDROP" ("1 2 3 --> 2 3" "" "81446") "XYZ>Y" ("1 2 3 --> 2" "" "81531") "DROPSWAPDROP" ("1 2 3 --> 2" "" "81531") "ROT2DROP" ("1 2 3 --> 2" "" "81531") "XYZ>ZY" ("1 2 3 --> 3 2" "" "81441") "ROTDROPSWAP" ("1 2 3 --> 3 2" "" "81441") "XYZ>YXZ" ("1 2 3 --> 2 1 3" "" "8143C") "ROTSWAP" ("1 2 3 --> 2 1 3" "" "8143C") "XYZ>Z" ("1 2 3 --> 3" "" "8145F") "UNROT2DROP" ("1 2 3 --> 3" "" "8145F") "ROTROT2DROP" ("1 2 3 --> 3" "" "8145F") "ROTOVER" ("1 2 3 --> 2 3 1 3" "" "83714") "XYZW>YZWX" ("1 2 3 4 --> 2 3 4 1" "" "814B4") "FOURROLL" ("1 2 3 4 --> 2 3 4 1" "" "814B4") "4ROLL" ("1 2 3 4 --> 2 3 4 1" "" "814B4") "4ROLLSWAP" ("1 2 3 4 --> 2 3 1 4" "" "8393A") "FOURROLLROT" ("1 2 3 4 --> 2 4 1 3" "" "83A70") "4ROLLROT" ("1 2 3 4 --> 2 4 1 3" "" "83A70") "4ROLLOVER" ("1 2 3 4 --> 2 3 4 1 4" "" "83B10") "FIVEROLL" ("1 2 3 4 5 --> 2 3 4 5 1" "" "814C8") "5ROLL" ("1 2 3 4 5 --> 2 3 4 5 1" "" "814C8") "SIXROLL" ("1..6 --> 2..6 1" "" "815BD") "6ROLL" ("1..6 --> 2..6 1" "" "815BD") "SEVENROLL" ("1..7 --> 2..7 1" "" "81379") "7ROLL" ("1..7 --> 2..7 1" "" "81379") "EIGHTROLL" ("1..8 --> 2..8 1" "" "8137E") "8ROLL" ("1..8 --> 2..8 1" "" "8137E") "9ROLL" ("1..9 --> 2..9 1" "" "8145A") "ROLL" ("1..n #n --> 2..n 1" "" "81D6F") "ROLLDROP" ("1..n #n --> 2..n" "" "839F8") "ROLLSWAP" ("1..n #n --> 2..n-1 1 n" "" "837B4") "#1+ROLL" ("ob 1..n #n --> 1..n ob" "" "814FA") "#2+ROLL" ("a b 1..n #n --> b 1..n a" "" "814FF") "#+ROLL" ("1..n+m #n #m --> 2..n+m 1" "" "814F5") "#-ROLL" ("1..n-m #n #m --> 2..n-m 1" "" "814F0") "XYZ>ZXY" ("1 2 3 --> 3 1 2" "" "814A5") "3UNROLL" ("1 2 3 --> 3 1 2" "" "814A5") "UNROT" ("1 2 3 --> 3 1 2" "" "814A5") "UNROTDUP" ("1 2 3 --> 3 1 2 1" "" "83764") "XYZ>ZX" ("1 2 3 --> 3 1" "" "81559") "SWAPDROPSWAP" ("1 2 3 --> 3 1" "" "81559") "UNROTDROP" ("1 2 3 --> 3 1" "" "81559") "UNROTOVER" ("1 2 3 --> 3 1 2 1" "" "83AFC") "XYZW>WXYZ" ("1 2 3 4 --> 4 1 2 3" "" "814B9") "FOURUNROLL" ("1 2 3 4 --> 4 1 2 3" "" "814B9") "4UNROLL" ("1 2 3 4 --> 4 1 2 3" "" "814B9") "4UNROLLDUP" ("1 2 3 4 --> 4 1 2 3 3" "" "83778") "XYZW>W" ("1 2 3 4 --> 4" "" "81464") "4UNROLL3DROP" ("1 2 3 4 --> 4" "" "81464") "4UNROLLROT" ("1 2 3 4 --> 4 3 2 1" "" "83A84") "FIVEUNROLL" ("1 2 3 4 5 --> 5 1 2 3 4" "" "814CD") "5UNROLL" ("1 2 3 4 5 --> 5 1 2 3 4" "" "814CD") "SIXUNROLL" ("1..6 --> 6 1..5" "" "815C2") "6UNROLL" ("1..6 --> 6 1..5" "" "815C2") "(SEVENUNROLL)" ("1..7 --> 7 1..6" "" "83633") "7UNROLL" ("1..7 --> 7 1..6" "" "83633") "8UNROLL" ("1..8 --> 8 1..7" "" "83B88") "10UNROLL" ("1..10 --> 10 1..9" "" "83B9C") "UNROLL" ("1..n #n --> n 1..n-1" "" "81D74") "#1+UNROLL" ("ob 1..n #n --> n ob 1..n-1" "" "8150E") "#2+UNROLL" ("a b 1..n #n --> n a b 1..n-1" "" "81513") "#+UNROLL" ("1..n+m #n #m --> n+m 1..n+m-1" "" "81509") "#-UNROLL" ("1..n-m #n #m --> n-m 1..n+m-1" "" "81504") "OVER" ("1 2 --> 1 2 1" "" "81D65") "OVERDUP" ("1 2 --> 1 2 1 1" "" "8373C") "OVERUNROT" ("1 2 --> 1 1 2" "" "837A0") "OVERSWAP" ("1 2 --> 1 1 2" "" "837A0") "OVER5PICK" ("1 2 3 4 --> 1 2 3 4 3 1" "" "8469B") "2OVER" ("1 2 3 4 --> 1 2 3 4 1 2" "" "849C5") "3PICK" ("1 2 3 --> 1 2 3 1" "" "814A0") "3PICKSWAP" ("1 2 3 --> 1 2 1 3" "" "8394E") "3PICKOVER" ("1 2 3 --> 1 2 3 1 3" "" "83B24") "3PICK3PICK" ("1 2 3 --> 1 2 3 1 2" "" "84673") "4PICK" ("1 2 3 4 --> 1 2 3 4 1" "" "DDCFE") "4PICKSWAP" ("1 2 3 4 --> 1 2 3 1 4" "" "83962") "SWAP4PICK" ("1 2 3 4 --> 1 2 4 3 1" "" "84687") "4PICKOVER" ("1 2 3 4 --> 1 2 3 4 1 4" "" "83B38") "5PICK" ("1 2 3 4 5 --> 1 2 3 4 5 1" "" "814C3") "6PICK" ("1..6 --> 1..6 1" "" "814D7") "7PICK" ("1..7 --> 1..7 1" "" "814DC") "8PICK" ("1..8 --> 1..8 1" "" "814E1") "9PICK" ("1..9 --> 1..9 1" "" "814E6") "10PICK" ("1..10 --> 1..10 1" "" "814EB") "PICK" ("1..n #n --> 1..n 1" "" "81D6A") "#1+PICK" ("1..n #n-1 --> 1..n 1" "" "81478") "#2+PICK" ("1..n #n-2 --> 1..n 1" "" "8147D") "#3+PICK" ("1..n #n-3 --> 1..n 1" "" "81482") "#4+PICK" ("1..n #n-4 --> 1..n 1" "" "81487") "#+PICK" ("1..n+m #n #m --> 1..n+m 1" "" "81473") "#-PICK" ("1..n-m #n #m --> 1..n-m 1" "" "8146E") "NULLID" ("--> id" "Null (empty) identifier." "82D4B") "NULLLAM" ("--> lam" "Puts NULLLAM in the stack." "84AD8") "$>ID" ("$ --> ID" "" "81BF3") "DUP$>ID" ("$ --> $ ID" "" "83D04") "BIND" ("obn..ob1 {lamn..lam1} -->" "Binds n objects to n differently named lams." "831C9") "DOBIND" ("obn..ob1 lamn..lam1 #n -->" "Binds n objects to n differently named lams." "817C0") "1LAMBIND" ("ob -->" "Binds one object to a null named lam." "83F3E") "DUP1LAMBIND" ("ob --> ob" "Does DUP then <REF>1LAMBIND." "83F39") "dvarlsBIND" ("ob -->" "Binds ob to LAM 'dvar." "84434") "ABND" ("-->" "Abandons topmost temporary environment." "817BB") "CACHE" ("obn..ob1 #n lam -->" "Binds all objects under the same name. 1LAM
  116. has the count." "816B2") "DUMP" ("NULLLAM --> ob1..obn #n" "Inverse of CACHE. Always does garbage
  117. collection." "81383") "STOLAM" ("ob lam -->" "Tries storing object in lam. Generates
  118. \"Undefined Local Name\" error if lam is not
  119. found." "81C75") "GETLAM" ("#n --> ob" "Gets contents of nth topmost lam." "817C5") "1GETLAM" ("--> ob" "" "815D6") "2GETLAM" ("--> ob" "" "815E0") "3GETLAM" ("--> ob" "" "815EA") "4GETLAM" ("--> ob" "" "815F4") "5GETLAM" ("--> ob" "" "815FE") "6GETLAM" ("--> ob" "" "81608") "7GETLAM" ("--> ob" "" "81612") "8GETLAM" ("--> ob" "" "8161C") "9GETLAM" ("--> ob" "" "81626") "10GETLAM" ("--> ob" "" "81630") "11GETLAM" ("--> ob" "" "8163A") "12GETLAM" ("--> ob" "" "81644") "13GETLAM" ("--> ob" "" "8164E") "14GETLAM" ("--> ob" "" "81658") "15GETLAM" ("--> ob" "" "81662") "16GETLAM" ("--> ob" "" "8166C") "17GETLAM" ("--> ob" "" "81676") "18GETLAM" ("--> ob" "" "81680") "19GETLAM" ("--> ob" "" "8168A") "20GETLAM" ("--> ob" "" "81694") "21GETLAM" ("--> ob" "" "8169E") "22GETLAM" ("--> ob" "" "816A8") "PUTLAM" ("ob #n -->" "Stores new contents to nth topmost lam." "817CA") "1PUTLAM" ("ob -->" "" "815DB") "2PUTLAM" ("ob -->" "" "815E5") "3PUTLAM" ("ob -->" "" "815EF") "4PUTLAM" ("ob -->" "" "815F9") "5PUTLAM" ("ob -->" "" "81603") "6PUTLAM" ("ob -->" "" "8160D") "7PUTLAM" ("ob -->" "" "81617") "8PUTLAM" ("ob -->" "" "81621") "9PUTLAM" ("ob -->" "" "8162B") "10PUTLAM" ("ob -->" "" "81635") "11PUTLAM" ("ob -->" "" "8163F") "12PUTLAM" ("ob -->" "" "81649") "13PUTLAM" ("ob -->" "" "81653") "14PUTLAM" ("ob -->" "" "8165D") "15PUTLAM" ("ob -->" "" "81667") "16PUTLAM" ("ob -->" "" "81671") "17PUTLAM" ("ob -->" "" "8167B") "18PUTLAM" ("ob -->" "" "81685") "19PUTLAM" ("ob -->" "" "8168F") "20PUTLAM" ("ob -->" "" "81699") "21PUTLAM" ("ob -->" "" "816A3") "22PUTLAM" ("ob -->" "" "816AD") "1GETABND" ("--> 1lamob" "Does <REF>1GETLAM then <REF>ABND ." "83F25") "1ABNDSWAP" ("ob --> 1lamob ob" "Does <REF>1GETABND then SWAP." "83822") "1GETSWAP" ("ob --> 1lamob ob" "Does <REF>1GETLAM then SWAP." "83976") "2GETEVAL" ("--> ?" "Does <REF>2GETLAM then <REF>EVAL ." "83D54") "GETLAMPAIR" ("#n --> #n ob lam F
  120. --> #n T" "Gets lam contents and name (10 = 1lam,
  121. 20 = 2lam, etc.)" "81397") "1NULLLAM{}" ("--> {}" "Puts a list with one NULLLAM in the stack." "84AD3") "ERRBEEP" ("-->" "Beeps." "81B17") "ERROR@" ("--> #" "Returns current error number." "819EB") "ERRORSTO" ("# -->" "Stores new error number." "819F0") "ERROROUT" ("# -->" "Stores new error number and calls ERRJMP." "8424A") "ERRORCLR" ("-->" "Stores zero as new error number." "819F5") "ERRJMP" ("-->" "Invokes error handling sub-system." "81A18") "GETEXITMSG" ("--> $" "Gets EXITMSG (user defined error message)." "81A04") "EXITMSGSTO" ("$ -->" "Stores $ as EXITMSG." "81A09") "DO#EXIT" ("# -->" "Stores new error number, does <REF>AtUserStack
  122. and then <REF>ERRJMP." "8212F") "DO$EXIT" ("$ -->" "Stores string as EXITMSG, #70000 as error
  123. number, does <REF>AtUserStack and then
  124. <REF>ERRJMP ." "82139") "ABORT" ("-->" "Does <REF>ERRORCLR and <REF>ERRJMP ." "81F9A") "ERRSET" ("-->" "Sets new error trap." "81A0E") "ERRTRAP" ("-->" "Error trap marker. If no error happens, still
  125. removes all temporary environments created
  126. since ERRSET." "81A13") "JstGETTHEMSG" ("# --> $" "Fetches message from message table. To get
  127. a message from a library, use the formula:
  128. libnum*#100+msgnum.
  129. --
  130. <REF>TEXT:Libraries" "831E7") "JstGetTHEMESG" ("# --> $" "Fetches message from message table. To get
  131. a message from a library, use the formula:
  132. libnum*#100+msgnum.
  133. --
  134. <REF>TEXT:Libraries" "831E7") "GETTHEMESG" ("# --> $" "If #70000 then does <REF>GETEXITMSG, else does
  135. <REF>JstGetTHEMESG .
  136. --
  137. <REF>TEXT:Libraries" "831DD") "?GetMsg" ("# --> $msg
  138. ob --> ob" "If the argument is a bint, does JstGETTHEMSG
  139. to fetch a message. Other arguments are
  140. returned unchanged.
  141. --
  142. <REF>TEXT:Libraries" "829EF") "SETMEMERR" ("Error 001h" "Generates \"Insufficient Memory\" error." "81A22") "SETROMPERR" ("Error 004h" "Generates \"Undefined XLIB Name\" error." "81A27") "SETLBERR" ("Error 006h" "Generates \"Power Lost\" error." "81A1D") "SETSTACKERR" ("Error 201h" "Generates \"Too Few Arguments\" error." "81CA7") "SETTYPEERR" ("Error 202h" "Generates \"Bad Argument Type\" error." "81CA2") "SETSIZEERR" ("Error 203h" "Generates \"Bad Argument Value\" error." "81C9D") "SETNONEXTERR" ("Error 204h" "Generates \"Undefined Name\" error." "81C98") "TRUE" ("--> T" "" "03A81") "TrueTrue" ("--> T T" "" "0BDC1") "TRUEFALSE" ("--> T F" "" "83F66") "TrueFalse" ("--> T F" "" "83F66") "FALSE" ("--> F" "" "03AC0") "FALSETRUE" ("--> F T" "" "83F7A") "FalseTrue" ("--> F T" "" "83F7A") "FalseFalse" ("--> F F" "" "81FDB") "failed" ("--> F T" "" "82ED1") "DROPTRUE" ("ob --> T" "" "81522") "DROPFALSE" ("ob --> F" "" "81527") "2DROPFALSE" ("ob1 ob2 --> F" "" "835E3") "XYZ>ZTRUE" ("ob1 ob2 ob3 --> ob3 T" "" "83926") "NOT" ("flag --> flag'" "Returns FALSE if the input is TRUE, and
  143. vice-versa." "8182E") "AND" ("flag1 flag2 --> flag" "Returns TRUE if both flags are TRUE." "81824") "OR" ("flag1 flag2 --> flag" "Returns TRUE if either flag is TRUE." "81833") "XOR" ("flag1 flag2 --> flag" "Returns TRUE if flags are different." "8183D") "ORNOT" ("flag1 flag2 --> flag" "Returns FALSE if either flag is TRUE." "8401F") "NOTAND" ("flag1 flag2 --> flag" "Returns TRUE if flag1 is TRUE and flag2 is
  144. FALSE." "836C4") "ROTAND" ("flag1 ob flag2 --> ob flag" "Returns TRUE if either flag is TRUE." "83700") "EQ" ("ob1 ob2 --> flag" "Returns TRUE if both objects are the same,
  145. i.e., they occupy the same physical space in
  146. memory. Only the addresses of the objects are
  147. tested." "81842") "2DUPEQ" ("ob1 ob2 --> ob1 ob2 flag" "Does 2DUP then EQ." "84047") "EQOR" ("flag ob1 ob2 --> flag'" "Does EQ then OR." "8405B") "EQOVER" ("ob3 ob1 ob2 --> ob3 flag ob3" "Does EQ then OVER." "83AAC") "EQUAL" ("ob1 ob2 --> flag" "Returns TRUE if the objects are equal
  148. (but not necessarily the same), i.e., their
  149. prologs and contents are the same." "81847") "EQUALNOT" ("ob1 ob2 --> flag" "Returns TRUE if the objects are different." "84033") "EQUALOR" ("flag ob1 ob2 --> flag'" "Does EQUAL then OR." "8406F") "?SEMI" ("T --> :: ;
  150. F --> :: <ob1> <rest> ;" "" "813D3") "NOT?SEMI" ("T --> :: <ob1> <rest> ;
  151. F --> :: ;" "" "81414") "?SEMIDROP" ("ob T --> :: ob ;
  152. ob F --> :: <ob1> <rest> ;" "" "842EF") "?SWAP" ("ob1 ob2 T --> :: ob2 ob1 <ob1> <rest> ;
  153. ob1 ob2 F --> :: ob1 ob2 <ob1> <rest> ;" "" "8398A") "?SKIPSWAP" ("ob1 ob2 T --> :: ob1 ob2 <ob1> <rest> ;
  154. ob1 ob2 F --> :: ob2 ob1 <ob1> <rest> ;" "" "8380E") "?SWAPDROP" ("ob1 ob2 T --> :: ob1 <ob1> <rest> ;
  155. ob1 ob2 F --> :: ob2 <ob1> <rest> ;" "" "839CB") "NOT?SWAPDROP" ("ob1 ob2 T --> :: ob2 <ob1> <rest> ;
  156. ob1 ob2 F --> :: ob1 <ob1> <rest> ;" "" "839B2") "RPIT" ("T ob --> :: ob <ob1> <rest> ;
  157. F ob --> :: <ob1> <rest> ;" "ob is actually executed, and not pushed in
  158. the stack." "817A2") "RPITE" ("T ob1 ob2 --> :: ob1 <ob1> <rest> ;
  159. F ob1 ob2 --> ob2 <ob1> <rest> ;" "ob1 or ob2 is actually executed, and not
  160. pushed in the stack." "817A7") "COLARPITE" ("T ob1 ob2 --> :: ob1 ;
  161. F ob1 ob2 --> :: ob2 ;" "ob1 or ob2 is actually executed, and not
  162. pushed in the stack." "813FB") "2'RCOLARPITE" ("Return to composite and ITE there." "" "DE622") "IT" ("T --> :: <ob1> <rest> ;
  163. F --> :: <ob2> <rest> ;" "" "81405") "NOT_IT" ("T --> :: <ob2> <rest> ;
  164. F --> :: <ob1> <rest> ;" "" "8173E") "?SKIP" ("T --> :: <ob2> <rest> ;
  165. F --> :: <ob1> <rest> ;" "" "8173E") "ITE" ("T --> :: <ob1> <ob3> <rest> ;
  166. F --> :: <ob2> <rest> ;" "" "8140A") "ITE_DROP" ("ob T --> :: <ob2> <rest> ;
  167. ob F --> :: ob <ob1> <rest> ;" "" "8140F") "ANDITE" ("f1 f2 --> :: <ob1> <ob3> <rest> ;
  168. f1 f2 --> :: <ob2> <rest> ;" "" "8486C") "case" ("T --> :: <ob1> ;
  169. F --> :: <ob2> <rest> ;" "" "813D8") "NOTcase" ("T --> :: <ob2> <rest> ;
  170. F --> :: <ob1> ;" "" "81419") "ANDcase" ("f1 f2 --> :: <ob1> ;
  171. f1 f2 --> :: <ob2> <rest> ;" "" "846F5") "ANDNOTcase" ("f1 f2 --> :: <ob1> ;
  172. f1 f2 --> :: <ob2> <rest> ;" "" "847EA") "ORcase" ("f1 f2 --> :: <ob1> ;
  173. f1 f2 --> :: <ob2> <rest> ;" "" "81FD1") "casedrop" ("ob T --> :: <ob1> ;
  174. ob F --> :: ob <ob2> <rest> ;" "" "813EC") "NOTcasedrop" ("ob T --> :: ob <ob2> <rest> ;
  175. ob F --> :: <ob1> ;" "" "8142D") "case2drop" ("ob1 ob2 T --> :: <ob1> ;
  176. ob1 ob2 F --> :: ob1 ob2 <ob2> <rest> ;" "" "813E2") "NOTcase2drop" ("ob1 ob2 T --> :: ob1 ob2 <ob2> <rest> ;
  177. ob1 ob2 F --> :: <ob1> ;" "" "81423") "caseDROP" ("ob T --> :: ;
  178. ob F --> :: ob <ob1> <rest> ;" "" "813E7") "NOTcaseDROP" ("ob T --> :: ob <ob1> <rest> ;
  179. ob F --> :: ;" "" "81428") "casedrptru" ("ob T --> T
  180. ob F --> :: ob <ob1> <rest> ;" "Note: should be called caseDRPTRU." "842A4") "casedrpfls" ("ob T --> F
  181. ob F --> :: ob <ob1> <rest> ;" "Note: should be called caseDRPFLS." "83FD9") "NOTcsdrpfls" ("ob T --> :: ob <ob1> <rest> ;
  182. ob F --> F" "Note: should be called NOTcaseDRPFLS." "844F7") "case2DROP" ("ob1 ob2 T --> :: ;
  183. ob1 ob2 F --> :: ob1 ob2 <ob1> <rest> ;" "" "813DD") "NOTcase2DROP" ("ob1 ob2 T --> :: ob1 ob2 <ob1> <rest> ;
  184. ob1 ob2 F --> :: ;" "" "8141E") "case2drpfls" ("ob1 ob2 T --> F
  185. ob1 ob2 F --> :: ob1 ob2 <ob1> <rest> ;" "Note: should be called case2DRPFLS." "83FF2") "caseTRUE" ("T --> T
  186. F --> :: <ob1> <rest> ;" "" "83F52") "NOTcaseTRUE" ("T --> :: <ob1> <rest> ;
  187. F --> T" "" "842BD") "caseFALSE" ("T --> F
  188. F --> :: <ob1> <rest> ;" "" "8400B") "NOTcaseFALSE" ("T --> :: <ob1> <rest> ;
  189. F --> F" "" "842D6") "COLAcase" ("T --> :: <ob1> ;
  190. F --> :: <ob2> <rest> ;" "Drops the rest of current stream and executes
  191. case in the stream above." "81400") "#=?SKIP" ("#m #n --> :: <ob2> <rest> ;
  192. #m #n --> :: <ob1> <rest> ;" "" "83DDB") "#>?SKIP" ("#m #n --> :: <ob1> <rest> ;
  193. #m #n --> :: <ob2> <rest> ;" "" "83E08") "#=ITE" ("#m #n --> :: <ob1> <ob3> <rest> ;
  194. #m #n --> :: <ob2> <rest> ;" "" "8369C") "#<ITE" ("#m #n --> :: <ob1> <ob3> <rest> ;
  195. #m #n --> :: <ob2> <rest> ;" "" "848A8") "#>ITE" ("#m #n --> :: <ob2> <rest> ;
  196. #m #n --> :: <ob1> <ob3> <rest> ;" "" "848BC") "#=case" ("#m #n --> :: <ob1> ;
  197. #m #n --> :: <ob2> <rest> ;" "" "8136A") "OVER#=case" ("#m #n --> :: #m <ob1> ;
  198. #m #n --> :: #m <ob2> <rest> ;" "" "81365") "#=casedrop" ("#m #n --> :: <ob1> ;
  199. #m #n --> :: #m <ob2> <rest> ;" "Note: should be called OVER#=casedrop." "8136F") "#=casedrpfls" ("#m #n --> F
  200. #m #n --> :: #m <ob1> <rest> ;" "Note: should be called OVER#=caseDRPFLS." "83FB6") "#<>case" ("#m #n --> :: <ob2> <rest> ;
  201. #m #n --> :: <ob1> ;" "" "84745") "#<case" ("#m #n --> :: <ob1> ;
  202. #m #n --> :: <ob2> <rest> ;" "" "8471D") "#>case" ("#m #n --> :: <ob2> <rest> ;
  203. #m #n --> :: <ob1> ;" "" "84772") "#0=?SEMI" ("#0 --> :: ;
  204. # --> :: <ob1> <rest> ;" "" "815B3") "#0=?SKIP" ("#0 --> :: <ob2> <rest> ;
  205. # --> :: <ob1> <rest> ;" "" "83DA9") "#0=ITE" ("#0 --> :: <ob1> <ob3> <rest> ;
  206. # --> :: <ob2> <rest>" "" "84894") "DUP#0=IT" ("#0 --> :: #0 <ob1> <rest> ;
  207. # --> :: # <ob2> <rest> ;" "" "84853") "DUP#0=ITE" ("#0 --> :: #0 <ob1> <ob3> <rest> ;
  208. # --> :: # <ob2> <rest> ;" "" "848D0") "#0=case" ("#0 --> :: <ob1> ;
  209. # --> :: <ob2> <rest> ;" "" "81360") "DUP#0=case" ("#0 --> :: #0 <ob1> ;
  210. # --> :: # <ob2> <rest> ;" "" "81FAE") "DUP#0=csedrp" ("#0 --> :: <ob1> ;
  211. # --> :: # <ob2> <rest> ;" "" "81388") "DUP#0=csDROP" ("#0 --> :: ;
  212. # --> :: # <ob1> <rest> ;" "" "846C8") "#1=case" ("#1 --> :: <ob1> ;
  213. # --> :: <ob2> <rest> ;" "" "84731") "#1=?SKIP" ("#1 --> :: <ob2> <rest> ;
  214. # --> :: <ob1> <rest> ;" "" "83DC2") "#>2case" ("#0/#1/#2 --> :: <ob2> <rest> ;
  215. # --> :: <ob1> ;" "" "84759") "?CaseKeyDef" ("# #' --> :: ' ob1 T ;
  216. --> :: <ob2> <rest> ;" "Compares two bints. If equal, quotes the
  217. next object from the runsream and returns it
  218. along with TRUE." "82BCF") "?CaseRomptr@" ("# #' --> ob T
  219. --> F
  220. --> :: <ob2> <rest> ;" "Compares two bints. If equal, tries to
  221. resolve the rompointer which must be the next
  222. object in the runstream. The ROMPTR@ pushes
  223. TRUE when successful, so this entry can be
  224. used directly for key handlers." "82BED") "j%0=case" ("%0 --> :: <ob1> ;
  225. ob --> :: <ob2> <rest> ;" "" "84786") "EQIT" ("ob1 ob1 --> :: <ob1> <rest> ;
  226. ob1 ob2 --> :: <ob2> <rest> ;" "" "8483A") "EQITE" ("ob1 ob1 --> :: <ob1> <ob3> <rest> ;
  227. ob1 ob2 --> :: <ob2> <rest> ;" "" "84880") "jEQcase" ("ob1 ob1 --> :: <ob1> ;
  228. ob1 ob2 --> :: <ob2> <rest> ;" "" "846E1") "EQcase" ("ob1 ob1 --> :: ob1 <ob1> ;
  229. ob1 ob2 --> :: ob1 <ob2> <rest> ;" "Note: Should be called OVEREQcase." "DE46C") "EQcasedrop" ("ob1 ob1 --> :: <ob1> ;
  230. ob1 ob2 --> :: ob1 <ob2> <rest> ;" "Note: should be called OVEREQcasedrop." "8138D") "EQUALcase" ("ob1 ob1 --> :: <ob1> ;
  231. ob1 ob2 --> :: <ob2> <rest> ;" "" "84709") "EQUALNOTcase" ("ob1 ob1 --> :: <ob2> <rest> ;
  232. ob1 ob2 --> :: <ob1> ;" "" "847FE") "EQUALcasedrp" ("ob ob1 ob2 --> :: <ob1> ;
  233. ob ob1 ob2 --> :: ob <ob2> <rest> ;" "" "846AF") "dIDNTNcase" ("id --> :: id <ob2> <rest> ;
  234. ob --> :: ob <ob1> ;" "" "84812") "REALcase" ("% --> :: <ob1> ;
  235. ob --> :: <ob2> <rest> ;" "" "8479A") "dREALNcase" ("% --> :: % <ob2> <rest> ;
  236. ob --> :: ob <ob1> ;" "" "84826") "dARRYcase" ("[] --> :: [] <ob1> ;
  237. ob --> :: ob <ob2> <rest> ;" "" "847AE") "dLISTcase" ("{} --> :: {} ob1 ;
  238. ob --> :: ob <ob2> <rest> ;" "" "847C2") "UserITE" ("#set --> :: <ob1> <ob3> <rest> ;
  239. #clr --> :: <ob2> <rest> ;" "" "848E4") "SysITE" ("#set --> :: <ob1> <ob3> <rest> ;
  240. #clr --> :: <ob2> <rest> ;" "" "848F8") "caseDEADKEY" ("T --> :: DoBadKey ;
  241. F --> :: <ob1> <rest> ;" "" "845F6") "caseDoBadKey" ("T --> :: DoBadKey ;
  242. F --> :: <ob1> <rest> ;" "" "845F6") "caseDrpBadKy" ("ob T --> :: DoBadKey ;
  243. ob F --> :: ob <ob1> <rest> ;" "" "845DD") "caseERRJMP" ("T --> :: ERRJMP ;
  244. F --> :: <ob> <rest> ;" "" "83BD8") "caseSIZEERR" ("T --> :: SIZEERR ;
  245. F --> :: <ob> <rest> ;" "" "84510") "NcaseSIZEERR" ("T --> :: <ob> <rest> ;
  246. F --> :: SIZEERR ;" "" "84524") "NcaseTYPEERR" ("T --> :: <ob1> <rest> ;
  247. F --> :: TYPEERR ;" "" "84551") "EditExstCase" ("--> :: <ob1> <rest> ;
  248. --> :: <rest> ;" "Tests if there is an edit line active." "847D6") "NOP" ("-->" "Does nothing." "81789") "~xNEGNEG" ("-->" "Does nothing, decompiles to
  249. :: CK1&Dispatch BINT0 NOP ;
  250. There like NOP, but requires an argument. " "037002") "'R" ("--> ob" "Pushes next object in return stack (i.e., the
  251. first object in the composite above this one)
  252. to the stack (skipping it). If top return
  253. stack is empty (contains SEMI), a null
  254. secondary is pushed and the pointer is not
  255. advanced." "8172A") "'REVAL" ("--> ?" "Does <REF>'R then <REF>EVAL." "8172F") "'R'R" ("--> ob1 ob2" "Does <REF>'R twice." "843E9") "ticR" ("--> ob T
  256. --> F" "Pushes next object in return stack to stack
  257. and TRUE, of just FALSE if the top return
  258. stack body is empty. In this QcaseQ, it is
  259. dropped." "8148C") "'RRDROP" ("--> ob" "Does <REF>'R , then <REF>RDROP." "84407") ">R" (":: -->" "Pushes :: to top of return stack (skips
  260. prolog, i.e., the composite will be executed
  261. automatically)." "81734") "R>" ("--> ::" "Creates and pops a secondary from top
  262. return stack body to stack." "8178E") "R@" ("--> ::" "Like <REF>R>, but the return stack is not
  263. popped." "81793") "EVAL" ("ob -->" "Evaluates object." "81757") "COMPEVAL" ("comp -->" "EVAL just pushes a list back, this one
  264. executes it." "81CBB") "RDUP" ("-->" "Duplicates top return stack level." "81B21") "RDROP" ("-->" "Pops the return stack." "81798") "2RDROP" ("-->" "Pops two return stack levels." "813CE") "3RDROP" ("-->" "Pops three return stack levels." "81469") "DROPRDROP" ("ob -->" "Does DROP then <REF>RDROP ." "83D68") "RDROPCOLA" ("-->" "Does <REF>RDROP then <REF>COLA ." "81432") "RSWAP" ("-->" "Swap in the return stack." "81437") "RROLL" ("#n -->" "Rolls nth return stack level to top of return
  265. stack." "81B26") "RSKIP" ("-->" "Skips first object in the return stack (i.e.,
  266. the first object in the composite above this
  267. one)." "84272") "SEMI" ("-->" "DROP the rest of the current stream." "0312B") "'" ("--> nob (nextob)" "Pushes next object in the stream to the stack
  268. (skipping it)." "81725") "~xSILENT'" ("--> nextob" "Put the next ob in the runstream on the
  269. stack. Quoter used in UserRPL." "00E700") "DUP'" ("ob --> ob nob" "Does DUP then '." "84330") "DROP'" ("ob --> nob" "Does DROP then '." "84358") "SWAP'" ("ob1 ob2 --> ob2 ob1 nob" "Does SWAP then '." "84344") "OVER'" ("ob1 ob2 --> ob1 ob2 ob1 nob" "Does OVER then '." "8436C") "STO'" ("ob id/lam --> nob" "Does STO then '." "84380") "TRUE'" ("--> T nob" "Pushes TRUE and the next object to the stack." "84394") "FALSE'" ("--> F nob" "Pushes FALSE and the next object to the
  270. stack." "843C1") "ONEFALSE'" ("--> #1 F nob" "Pushes ONE, FALSE and the next object to the
  271. stack." "843A8") "#1+'" ("# --> #+1 nob" "Does #1+ then '." "843D5") "'NOP" ("--> NOP" "Pushes NOP to the stack." "83D2C") "'ERRJMP" ("--> ERRJMP" "Pushes ERRJMP to the stack." "83BC4") "'DROPFALSE" ("--> DROPFALSE" "Pushes DROPFALSE to the stack." "81851") "'DoBadKey" ("--> DoBadKey" "Pushes DoBadKey to the stack." "82BBB") "'DoBadKeyT" ("--> DoBadKey T" "Pushes <REF>DoBadKey and TRUE to the stack." "3C77E") "'xDER" ("--> xDER" "Pushes xDER (User word \\.d) to the stack." "84579") "'Rapndit" ("meta ob1...ob4 --> meta&ob ob1...ob4" "Takes ob from runstream and appends it to the
  272. meta starting in level 5." "82E4F") "'xDEREQ" ("ob --> flag" "Is ob eq to user command xDER?" "84461") "COLA" ("Evals next obj and
  273. drops rest of this stream." "" "8174D") "ONECOLA" ("Does ONE, then COLA." "" "84420") "SWAPCOLA" ("Does SWAP, then COLA." "" "83D81") "XYZ>ZCOLA" ("Does UNROT2DROP, then COLA." "" "83D95") "COLA_EVAL" ("Returns and evals first obj
  274. in previous stream." "" "813F6") "COLACOLA" ("Drops rest of current stream
  275. does COLA in the above one." "" "813F1") "SKIP" ("Skips 1 obj in the runstream." "" "817AC") "COLASKIP" ("Drops rest of current stream
  276. and skips one obj in above stream." "" "83E21") "BEGIN" ("-->" "Pushes interpreter pointer into the return
  277. stack. " "81748") "AGAIN" ("-->" "Sets the interpreter pointer to the topmost
  278. value in the return stack, without popping
  279. it." "81743") "REPEAT" ("-->" "Sets the interpreter pointer to the topmost
  280. value in the return stack, without popping
  281. it." "8179D") "UNTIL" ("flag -->" "If FALSE then <REF>AGAIN, otherwise
  282. <REF>RDROP ." "817B1") "NOT_UNTIL" ("flag -->" "NOT then <REF>UNTIL ." "83E35") "#0=UNTIL" ("# --> #" "Actually, should be called DUP#0=UNTIL." "83647") "WHILE" ("flag -->" "If TRUE does nothing, otherwise <REF>RDROP then
  283. <REF>2SKIP ." "817B6") "NOT_WHILE" ("flag -->" "NOT then <REF>WHILE ." "83E4E") "DUP#0<>WHILE" ("# -->" "Try to guess what it does." "83E67") "DO" ("#stop #start -->" "" "81752") "ZERO_DO" ("#stop -->" "" "0744F") "DUP#0_DO" ("#stop --> #stop" "" "83EEE") "ONE_DO" ("#stop -->" "" "0745A") "#1+_ONE_DO" ("#stop -->" "" "07467") "toLEN_DO" ("{} --> {}" "From ONE to #elements." "83F07") "LOOP" ("-->" "" "81784") "+LOOP" ("# -->" "Increments index by specified number." "81739") "DROPLOOP" ("ob -->" "" "83ED5") "SWAPLOOP" ("ob1 ob2 --> ob2 ob1" "" "83EBC") "INDEX@" ("--> #" "Recalls topmost loop counter value." "8175C") "DUPINDEX@" ("ob --> ob #" "" "83E80") "SWAPINDEX@" ("ob1 ob2 --> ob2 ob1 #" "" "83E94") "OVERINDEX@" ("ob1 ob2 --> ob1 ob2 ob1 #" "" "83EA8") "INDEX@#-" ("# --> #'" "" "841E6") "INDEXSTO" ("# -->" "Stores new topmost loop counter value." "81761") "ISTOP@" ("--> #" "Recalls topmost loop stop value." "81766") "ISTOPSTO" ("# -->" "Stores new topmost loop stop value." "8176B") "JINDEX@" ("--> #" "Recalls second topmost loop counter value." "81770") "JINDEXSTO" ("# -->" "Stores new second topmost loop counter
  284. value." "81775") "JSTOP@" ("--> #" "Recalls second topmost loop stop value." "8177A") "JSTOPSTO" ("# -->" "Stores new second topmost loop stop value." "8177F") "ZEROISTOPSTO" ("-->" "Does not exit loop immediately. Just stores
  285. zero as the stop value, so all objects until
  286. the next LOOP will be evaluated." "84A1A") "(ExitAtLoop)" ("-->" "Does not exit loop immediately. Just stores
  287. zero as the stop value, so all objects until
  288. the next LOOP will be evaluated." "84A1A") "ExitAtLOOP" ("-->" "Does not exit loop immediately. Just stores
  289. zero as the stop value, so all objects until
  290. the next LOOP will be evaluated." "84A1A") "DUP@" ("id/lam --> id/lam ob T
  291. --> id/lam F" "Does DUP then <REF>@." "83674") "STO" ("ob id/lam -->" "For ids this assumes ob is not pco. If
  292. replacing some object, that object is copied
  293. to TEMPOB and pointers are updated. For
  294. lams: Errors if lam is unbound." "81C70") "REPLACE" ("newob oldob --> newob" "Replaces oldob (in memory) with newob." "81C61") "PURGE" ("id -->" "Purges variable. Does no type check first." "81C4D") "CREATE" ("ob id -->" "Creates a variable in the current directory.
  295. Errors if id is or contains current
  296. directory. Assumes id is not a pco." "81C2F") "'LAMLNAMESTO" ("ob -->" "STO to LAM LAMLNAME." "84448") "MAKERRP" ("#libnum --> rrp" "Creates an empty directory." "81C3E") "CREATEDIR" ("id -->" "Creates an empty directory. Calls
  297. <REF>?PURGE_HERE first to delete the original." "82D2D") "LASTRAM-WORD" ("rrp --> ob T
  298. --> F" "Recalls first object in directory." "81C57") "PREVRAM-WORD" ("ob --> ob' T
  299. --> F" "Recalls next object in directory." "81C5C") "RAM-WORDNAME" ("ob --> id" "Recalls name of object in current directory." "08452") "SYSRRP?" ("rrp --> flag" "Is the directory the HOME directory?" "81C7F") "CONTEXT@" ("--> rrp" "Recalls current directory." "81C2A") "CONTEXT!" ("rrp -->" "Sets new current directory." "81C25") "SYSCONTEXT" ("-->" "Sets HOME as current directory." "81C34") "HOMEDIR" ("-->" "Sets HOME as current directory." "81C34") "TOTEMPOB" ("ob --> ob'" "Copies object to TEMPOB and returns
  300. pointer to the new copy." "81A4A") "TOTEMPSWAP" ("ob1 ob2 --> ob2' ob1" "Does TOTEMPOB then SWAP." "836D8") "CKREF" ("ob --> ob'" "If object is in TEMPOB, is not embedded in a
  301. composite and not referenced, does nothing.
  302. Else copies it to TEMPOB and returns the
  303. copy." "82D23") "SWAPCKREF" ("ob1 ob2 --> ob2 ob1'" "Does SWAP then <REF>CKREF." "84989") "INTEMNOTREF?" ("ob --> ob flag" "If the object is in TEMPOB area, is not
  304. embedded in a composite and is not
  305. referenced, returns the object and TRUE,
  306. otherwise returns the object and FALSE." "81A4F") "~INTEMPOB?" ("ob --> ob flag" "" "0220E8") "SLOW" ("-->" "15 millisecond delay." "81A95") "VERYSLOW" ("-->" "300 millisecond delay." "81A9A") "VERYVERYSLOW" ("-->" "3 second delay." "81A9F") "dowait" ("%secs -->" "Waits specified number of seconds." "82C0B") "%>HMS" ("% --> %hms" "Converts from decimal to H.MMSS format." "82F85") "%HMS>" ("%hms --> %" "Converts from H.MMSS format to decimal." "82F7B") "%HMS+" ("%hms1 %hms2 --> %hms" "Adds time in hms format." "82F67") "%HMS-" ("%hms1 %hms2 --> %hms" "Subtracts time in hms format." "82F71") "SysTime" ("--> hxs" "Returns tick count." "831D3") "CLKTICKS" ("--> hxs" "Returns tick count." "831D3") "SetSysFlag" ("# -->" "Sets the system flag with number #.
  307. <REF>TEXT:Flags" "81A5E") "ClrSysFlag" ("# -->" "Clears the system flag with number #.
  308. <REF>TEXT:Flags" "81A54") "TestSysFlag" ("# --> flag" "Returns TRUE if system flag is set.
  309. <REF>TEXT:Flags" "81A68") "SetUserFlag" ("# -->" "Set the user flag with number #.
  310. <REF>TEXT:Flags" "81A63") "ClrUserFlag" ("# -->" "Clear the user flag with number #.
  311. <REF>TEXT:Flags" "81A59") "TestUserFlag" ("# --> flag" "Returns TRUE if user flag is set.
  312. <REF>TEXT:Flags" "81A6D") "setbeep" ("#ms #Hz -->" "Also beeps." "81B1C") "TurnOff" ("-->" "Internal OFF." "82D05") "$jChkLowBat" ("" "" "8108B") "GARBAGE" ("-->" "Forces garbage collection." "81A40") "MEM" ("--> #" "Returns amount of free memory in nibbles.
  313. Does not do garbage collection. (The user
  314. word does.)" "81A45") "OSIZE" ("ob --> #" "Returns object size in nibbles. Forces
  315. garbage collection." "819C3") "OCRC" ("ob --> #nib hxs" "Returns size in nibbles and checksum as hxs." "819BE") "INHARDROM?" ("ob --> ob flag" "Is object address < #80000h?" "81BA8") "CHANGETYPE" ("ob #prolog --> ob'" "Changes prolog of object, does TOTEMPOB." "82D19") "DOFINISH" ("-->" "Internal FINISH." "82B57") "CLOSEUART" ("-->" "Internal CLOSEIO." "10C72") "OpenIO" ("" "" "82B9D") "docr" ("" "" "82ADF") "OpenUart?Clr" ("" "" "81D88") "PRINT" ("" "" "82BB1") "SetEcma94" ("" "" "81A81") "AllowPrlcdCl" ("" "" "117CD") "UARTBUFLEN" ("" "" "81D83") "PUTSERIAL" ("" "" "82BA7") "GETSERIAL" ("" "" "81D7E") "CK0" ("-->" "Saves current command to LASTCKCMD. Marks
  316. stack below level 1 to STACKMARK." "45611") "CK&DISPATCH0" ("-->" "Dispatches on stack argument. Does not
  317. convert ZINTs to REAL.
  318. --
  319. <REF>CK&DISPATCH1 <REF>CK&DISPATCH2
  320. <REF>TEXT:Dispatch_Types" "81CD9") "CK&DISPATCH1" ("-->" "Dispatches on stack arguments, stripping tags
  321. and converting ZINTS to REALS (HP49 only) if
  322. necessary.
  323. --
  324. <REF>CK&DISPATCH0 <REF>CK&DISPATCH2
  325. <REF>TEXT:Dispatch_Types" "81CDE") "CK&DISPATCH2" ("-->" "Equivalent to <REF>CK&DISPATCH1.
  326. --
  327. <REF>CK&DISPATCH0
  328. <REF>TEXT:Dispatch_Types" "81CE3") "CK1&Dispatch" ("-->" "Combines <REF>CK1 with <REF>CK&DISPATCH1.
  329. --
  330. <REF>TEXT:Dispatch_Types" "45AC1") "CK2&Dispatch" ("-->" "Combines <REF>CK2 with <REF>CK&DISPATCH1.
  331. --
  332. <REF>TEXT:Dispatch_Types" "45AD2") "CK3&Dispatch" ("-->" "Combines <REF>CK3 with <REF>CK&DISPATCH1.
  333. --
  334. <REF>TEXT:Dispatch_Types" "45AE3") "CK4&Dispatch" ("-->" "Combines <REF>CK4 with <REF>CK&DISPATCH1.
  335. --
  336. <REF>TEXT:Dispatch_Types" "45AF4") "CK5&Dispatch" ("-->" "Combines <REF>CK5 with <REF>CK&DISPATCH1.
  337. --
  338. <REF>TEXT:Dispatch_Types" "45B05") "0LastRomWrd!" ("-->" "Clears command save by last CK<n> command.
  339. <REF>CK0" "81B12") "0LASTOWDOB!" ("-->" "Clears command save by last CK<n> command.
  340. <REF>CK0" "81B12") "CKREAL" ("% --> %
  341. Z --> %" "Checks for real. If a ZINT, convert
  342. to real. Else SETTYPEERR." "84538") "TYPE" ("ob --> #prolog" "Returns address of prolog of object." "8184C") "TYPEREAL?" ("ob --> flag" "" "816FD") "DTYPEREAL?" ("ob --> ob flag" "" "83593") "DUPTYPEREAL?" ("ob --> ob flag" "" "83593") "TYPECMP?" ("ob --> flag" "" "816CB") "DUPTYPECMP?" ("ob --> ob flag" "" "83539") "TYPECSTR?" ("ob --> flag" "" "816D5") "DTYPECSTR?" ("ob --> ob flag" "" "8354D") "DUPTYPECSTR?" ("ob --> ob flag" "" "8354D") "DTYPEARRY?" ("ob --> ob flag" "" "8351B") "DUPTYPEARRY?" ("ob --> ob flag" "" "8351B") "TYPEARRY?" ("ob --> flag ???" "" "816B7") "TYPERARRY?" ("ob --> flag" "" "816F8") "TYPECARRY?" ("ob --> flag" "" "816C1") "TYPELIST?" ("ob --> flag" "" "816F3") "DTYPELIST?" ("ob --> ob flag" "" "83589") "DUPTYPELIST?" ("ob --> ob flag" "" "83589") "TYPEIDNT?" ("ob --> flag" "" "816E9") "DUPTYPEIDNT?" ("ob --> ob flag" "" "83575") "TYPELAM?" ("ob --> flag" "" "816EE") "DUPTYPELAM?" ("ob --> ob flag" "" "8357F") "TYPESYMB?" ("ob --> flag" "" "8170C") "DUPTYPESYMB?" ("ob --> ob flag" "" "835B1") "TYPEHSTR?" ("ob --> flag" "" "816E4") "DUPTYPEHSTR?" ("ob --> ob flag" "" "8356B") "TYPEGROB?" ("ob --> flag" "" "816DF") "DUPTYPEGROB?" ("ob --> ob flag" "" "83561") "DUPTYPETAG?" ("ob --> ob flag" "" "835BB") "TYPEEXT?" ("ob --> flag" "Is ob a unit object?" "816DA") "DUPTYPEEXT?" ("ob --> ob flag" "Is ob a unit object?" "83557") "TYPEROMP?" ("ob --> flag" "" "81702") "DUPTYPEROMP?" ("ob --> ob flag" "" "8359D") "TYPEBINT?" ("ob --> flag" "" "816BC") "DUPTYPEBINT?" ("ob --> ob flag" "" "83525") "TYPERRP?" ("ob --> flag" "" "81707") "DUPTYPERRP?" ("ob --> ob flag" "" "835A7") "TYPECHAR?" ("ob --> flag" "" "816C6") "DUPTYPECHAR?" ("ob --> ob flag" "" "8352F") "TYPECOL?" ("ob --> flag" "Is on a secondary?" "816D0") "DTYPECOL?" ("ob --> ob flag" "Is ob a secondary?" "83543") "DUPTYPECOL?" ("ob --> ob flag" "Is ob a secondary?" "83543") "Ck&DecKeyLoc" ("%rc.p --> #kc #p" "Converts from user key representation format
  343. to system. Does handle shift-hold keys." "82BD9") "CodePl>%rc.p" ("#kc #p --> %rc.p" "Converts from system key representation
  344. format to user. Does handle shift-hold
  345. keys. " "82BE3") "ModifierKey?" ("#kc #pl --> flag" "Is the key any of the three modifiers
  346. right-shift, left-shift, or alpha?" "82C6F") "FLUSH" ("-->" "Flushes the key buffer." "81A86") "FLUSHKEYS" ("-->" "Flushes the key buffer." "81A86") "CHECKKEY" ("--> #kc T
  347. --> F" "Returns next key in the key buffer (if there
  348. is one), but does not pop it. Does handle
  349. shift-hold keys.
  350. --
  351. <REF>TEXT:Keycodes" "81A31") "GETTOUCH" ("--> #kc T
  352. --> F" "Pops next key from key buffer (if there is
  353. one). Does handle shift-hold keys.
  354. --
  355. <REF>TEXT:Keycodes" "81A36") "GETKEY" ("--> #kc flag" "Get a single keypress from the keybuffer,
  356. waits if necessary. The key is returned
  357. along with TRUE. If an exception happens,
  358. returns FALSE. The exception is not
  359. handled. Does handle shift-hold keys.
  360. --
  361. <REF>TEXT:Keycodes" "82C3D") "REPKEY?" ("#kc --> flag" "Returns TRUE if the key is being pressed.
  362. --
  363. <REF>TEXT:Keycodes" "81A3B") "REPEATER" ("-->" "Takes two objects from the runstream, a
  364. BINT and a program. The BINT must represent
  365. a keycode. The program is evaluated at least
  366. once, and then again and again as long as the
  367. specified key is being pressed.
  368. --
  369. <REF>TEXT:Keycodes" "82CDD") "REPEATERCH" ("-->" "Same as REPEATER, but slower, so more
  370. appropriate for scrolling and cursor motions.
  371. --
  372. <REF>TEXT:Keycodes" "82CE7") "KEYINBUFFER?" ("--> flag" "Returns TRUE if there is at least a key in
  373. the key buffer." "82C5B") "WaitForKey" ("--> #kc #flag" "Returns next full key press. Does *not* handle
  374. shift-hold keys.
  375. --
  376. <REF>TEXT:Keycodes" "82D0F") "ATTN?" ("--> flag" "Returns TRUE if `CANCEL' has been pressed." "81A90") "?ATTN_QUIT" ("-->" "If `CANCEL' has been pressed, ABORTs program." "82BC5") "?ATTNQUIT" ("-->" "If `CANCEL' has been pressed, ABORTs program." "82BC5") "ATTNFLGCLR" ("-->" "Clears `CANCEL' key counter. Does not affect
  377. the key buffer." "81A2C") "DoBadKey" ("-->" "Beeps." "3C635") "Key>StdKeyOb" ("#kc #pl --> ob" "Recalls the standard assignment of the key.
  378. This is the assignment which is active when
  379. USER mode is of." "82C65") "NoExitAction" ("-->" "Sets NOP as ExitAction. Mostly used to avoid
  380. that the menu is saved as the previous menu
  381. when a new Menu gets installed." "82C79") "TakeOver" ("-->" "Override the default menu key executer. If
  382. this is the first entry in a program, the
  383. program can be used in edit mode. When the
  384. first in a program in the label slot of a
  385. menu key, the program is evaluated to get the
  386. label object (most likely a grob)." "3CC36") "~NullMenuKey" ("-->" "A placeholder for an empty menu key when
  387. defining menu lists." "0310A1") "InitMenu" ("menu -->" "menu is {} or :: settings {} ;
  388. Settings override the default settings
  389. installed by InitMenu." "82C47") "?DispMenu" ("-->" "Redisplay the menu now if no key is waiting
  390. in the buffer. Even better is this:
  391. :: DA3OK?NOTIT ?DispMenu ;" "88527") "DispMenu.1" ("-->" "Displays the menu immediately." "82C29") "DispMenu" ("-->" " :: DispMenu.1 SetDAsValid ;" "82C1F") "DoInputForm" ("l1..ln f1..fm #n #m msg $ --> ob1..obn T
  392. --> F\\n
  393. l = $ #x #y
  394. f = msg #x #y #w #h #type legal
  395. dec $hlp ChDat ChDec res init" "Starts an input form using the old engine." "8273D") "Choose" ("::Appl $Title ::Convert {} offset --> {}' T
  396. --> ob T
  397. --> F" "The return value is a list if checkfields are
  398. enabled, otherwise it is just the selected
  399. object. Only FALSE is returned when the user
  400. presses `CANCEL'.
  401. --
  402. <REF>TEXT:Browser48" "8252B") "ChooseMenu0" ("--> {}" "Menus with \"OK\".
  403. --
  404. <REF>TEXT:Browser48" "8258F") "ChooseMenu1" ("--> {}" "Menus with \"CANCL\", \"OK\".
  405. --
  406. <REF>TEXT:Browser48" "82599") "ChooseMenu2" ("--> {}" "Menus with \"CHK\", \"CANCL\", \"OK\".
  407. --
  408. <REF>TEXT:Browser48" "825A3") "ChooseSimple" ("$title {items} --> ob T
  409. --> F" "Simple interface to the HP48 choose engine.
  410. On the HP49G, calls ^RunChooseSimple.
  411. --
  412. <REF>TEXT:Browser48" "82693") "DoCKeyCheck" ("-->" "Toggle check on current item.
  413. --
  414. <REF>TEXT:Browser48" "825AD") "DoCKeyChAll" ("-->" "Check all elements.
  415. --
  416. <REF>TEXT:Browser48" "825B7") "DoCKeyUnChAll" ("-->" "Uncheck all items.
  417. --
  418. <REF>TEXT:Browser48" "825C1") "DoCKeyCancel" ("-->" "Simulate Cancel.
  419. --
  420. <REF>TEXT:Browser48" "825CB") "DoCKeyOK" ("-->" "Simulate OK.
  421. --
  422. <REF>TEXT:Browser48" "825D5") "LEDispPrompt" ("-->" "Redraw title.
  423. --
  424. <REF>TEXT:Browser48" "826A7") "LEDispList" ("-->" "Redraw browser lines.
  425. --
  426. <REF>TEXT:Browser48" "826B1") "LEDispItem" ("# -->" "Redraw one line.
  427. --
  428. <REF>TEXT:Browser48" "826BB") "ParOuterLoop" ("Disp Keys NonAppKeys? DoStdKeys? menu #row suspendOK? ExitCond AppErr -->" "" "82CD3") "POLSaveUI" ("Disp Keys NonAppKeys? DoStdKeys? menu #row suspendOK? ExitCond AppErr -->" "Saves current UI to LAMSavedUI." "82C8D") "POLSetUI" ("<REF>ParOuterLoop" "Sets new UI, same arguments as to
  429. ParOuterLoop." "82CB5") "POLKeyUI" ("-->" "Displays, reads and evaluates keys according
  430. to set UI. " "82C97") "POLRestoreUI" ("-->" "Restores saved UI from LAMSavedUI." "82CAB") "POLResUI&Err" ("-->" "Restores saved UI and executes ERRJMP." "82CA1") "TOADISP" ("-->" "Sets the text display as the active." "81ACC") "TOGDISP" ("-->" "Sets the graphic display as the active." "81AD1") "ABUFF" ("--> textgrob" "Returns the text grob to the stack." "81860") "GBUFF" ("--> graphgrob" "Returns the graphic grob to the stack.
  431. The HP49 extable address for ExitAction! is
  432. the same, but this must be a bug." "81892") "HARDBUFF" ("--> dispgrob" "Returns the current grob to the stack." "818A1") "HARDBUFF2" ("--> menugrob" "Returns the menu grob to the stack." "818A6") "HARDHEIGHT" ("--> #height" "Returns the height of HARDBUFF." "33905") "RECLAIMDISP" ("-->" "Activates the text grob, clears it and sets
  433. the default size." "8230F") "MENUOFF?" ("--> flag" "Returns TRUE if the menu grob is off." "824B3") "TURNMENUOFF" ("-->" "Turns off menu display, enlarges ABUFF to
  434. fill screen." "8249F") "TURNMENUON" ("-->" "Turns menu grob on." "824A9") "HEIGHTENGROB" ("grob #rows -->" "Heightens graph or text grob." "81AC2") "KILLGDISP" ("-->" "Clears graph display by setting it to
  435. NULLGROB. See DOERASE." "81AC7") "DOERASE" ("-->" "Erases the graphics display grob without
  436. changing its size." "821BB") "ClrDA1OK" ("-->" "" "8208F" :NOSDIAG) "ClrDA2aOK" ("-->" "" "82099" :NOSDIAG) "ClrDA2bOK" ("-->" "" "820A3" :NOSDIAG) "ClrDA2OK" ("-->" "" "820AD" :NOSDIAG) "ClrDA3OK" ("-->" "" "820B7" :NOSDIAG) "DA1OK?" ("--> flag" "" "81FEF") "DA2aOK?" ("--> flag" "" "81FF9") "DA2bOK?" ("--> flag" "" "82003") "DA2OK?" ("--> flag" "" "8200D") "DA3OK?" ("--> flag" "" "82017") "DAsOK?" ("--> flag" "" "82021") "DA2aLess1OK?" ("--> flag" "" "8202B") "DA3OK?NOTIT" ("-->" "Does DA3OK?, NOT then IT." "26B24") "SetDA1Temp" ("-->" "" "82067" :NOSDIAG) "SetDA2aTemp" ("-->" "" "82071" :NOSDIAG) "SetDA3Temp" ("-->" "" "8207B" :NOSDIAG) "SetDA12Temp" ("-->" "" "82107" :NOSDIAG) "SetDAsTemp" ("-->" "" "82111" :NOSDIAG) "SetDA1Valid" ("-->" "" "82035" :NOSDIAG) "SetDA2aValid" ("-->" "" "8203F" :NOSDIAG) "SetDA2bValid" ("-->" "" "82049" :NOSDIAG) "SetDA2Valid" ("-->" "" "82053" :NOSDIAG) "SetDA3Valid" ("-->" "" "8205D" :NOSDIAG) "SetDA3ValidF" ("-->" "" "81B9E" :NOSDIAG) "SetDA1Bad" ("-->" "" "81B71" :NOSDIAG) "ClrDA1Bad" ("-->" "" "81B4E" :NOSDIAG) "DA1Bad?" ("--> flag" "" "81B62" :NOSDIAG) "SetDA2aBad" ("-->" "" "81B80" :NOSDIAG) "ClrDA2aBad" ("-->" "" "81B53" :NOSDIAG) "DA2aBad?" ("--> flag" "" "81B67" :NOSDIAG) "SetDA2bBad" ("-->" "" "81B8A" :NOSDIAG) "ClrDA2bBad" ("-->" "" "81B58" :NOSDIAG) "SetDA3Bad" ("-->" "" "81B94" :NOSDIAG) "SetDA1NoCh" ("-->" "" "81B7B" :NOSDIAG) "SetDA2aNoCh" ("-->" "" "81B85" :NOSDIAG) "SetDA2bNoCh" ("-->" "" "81B8F" :NOSDIAG) "ClrDA2bNoCh" ("-->" "" "81B5D" :NOSDIAG) "DA2bNoCh?" ("--> flag" "" "81B6C" :NOSDIAG) "SetDA2NoCh" ("-->" "" "820C1" :NOSDIAG) "SetDA12NoCh" ("-->" "" "820CB" :NOSDIAG) "SetDA3NoCh" ("-->" "" "81B99" :NOSDIAG) "SetDA13NoCh" ("-->" "" "820DF" :NOSDIAG) "SetDA23NoCh" ("-->" "" "820D5" :NOSDIAG) "SetDA12a3NoCh" ("-->" "" "820E9" :NOSDIAG) "SetDA12a3NCh" ("-->" "" "820E9" :NOSDIAG) "SetDAsNoCh" ("-->" "" "820F3" :NOSDIAG) "SetDA2aEcho" ("-->" "" "82085" :NOSDIAG) "SetDA1IsStat" ("-->" "" "81B76" :NOSDIAG) "SetNoRollDA2" ("-->" "" "81BA3" :NOSDIAG) "BLANKIT" ("#startrow #rows -->" "Clears #rows from HARDBUFF, starting at
  437. #startrow." "82157") "CLCD10" ("-->" "Clears status and stack areas." "81A8B") "DOCLLCD" ("-->" "Like user word <REF>CLLCD." "821B1") "LockAlpha" ("-->" "Sets alpha mode, annunciators, etc." "82A03") "UnLockAlpha" ("-->" "Clears alpha mode, annunciators, etc." "82A0D") "WINDOWCORNER" ("--> #y #x" "Gets coordinates of corner of window. Note
  438. the order of #x and #y." "81AD6") "WINDOWXY" ("#y #x -->" "Sets corner coordinates. The name really
  439. should be WINDOWYX" "81AEF") "WINDOWUP" ("-->" "Moves display one pixel up." "81AEA") "WINDOWDOWN" ("-->" "Moves display one pixel down." "81ADB") "WINDOWLEFT" ("-->" "Moves display one pixel left." "81AE0") "WINDOWRIGHT" ("-->" "Moves display one pixel right." "81AE5") "SCROLLUP" ("-->" "Moves display one pixel up, checks for
  440. corresponding key being pressed." "82341") "SCROLLDOWN" ("-->" "Moves display one pixel down, checks for
  441. corresponding key being pressed." "82323") "SCROLLLEFT" ("-->" "Moves display one pixel left, checks for
  442. corresponding key being pressed." "8232D") "SCROLLRIGHT" ("-->" "Moves display one pixel right, checks for
  443. corresponding key being pressed." "82337") "JUMPTOP" ("-->" "Jumps to top of display." "82297") "JUMPBOT" ("-->" "Jumps to bottom of display." "8228D") "JUMPLEFT" ("-->" "Jumps to left of display." "822A1") "JUMPRIGHT" ("-->" "Jumps to right of display." "822AB") "WINDOWTOP?" ("--> flag" "Is window at the top?" "824E5") "WINDOWBOT?" ("--> flag" "Is window at the bottom?" "824C7") "WINDOWLEFT?" ("--> flag" "Is window at the left?" "824D1") "WINDOWRIGHT?" ("--> flag" "Is window at the right?" "824DB") "DODISP" ("ob %row -->" "Displays any object in specified row." "821CF") "BIGDISPROW1" ("$ -->" "" "8186A") "DISP@01" ("$ -->" "" "8186A") "DISPROW1" ("$ -->" "" "8186A") "BIGDISPROW2" ("$ -->" "" "8186F") "DISP@09" ("$ -->" "" "8186F") "DISPROW2" ("$ -->" "" "8186F") "BIGDISPROW3" ("$ -->" "" "81874") "DISP@17" ("$ -->" "" "81874") "DISPROW3" ("$ -->" "" "81874") "BIGDISPROW4" ("$ -->" "" "81879") "DISP@25" ("$ -->" "" "81879") "DISPROW4" ("$ -->" "" "81879") "DISPROW5" ("$ -->" "" "8187E") "DISPROW6" ("$ -->" "" "81883") "DISPROW7" ("$ -->" "" "81888") "DISPROW8" ("$ -->" "May not be possible depending on the size of
  444. the font and whether the menu is on or off." "8188D") "BIGDISPN" ("$ #row -->" "" "81865") "DISPN" ("$ #row -->" "" "81865") "DoAlert" ("$ -->" "Displays alert messagebox, a message box with
  445. a little alert grob in the upper left corner." "828F5") "DoMsgBox" ("$ #x #y grob menu --> T" "Displays a message box with a grob in the
  446. upper left corner and the specified menu.
  447. If no grob is desired, use MINUSONE.
  448. The meaning of #x and #y is unclear - it
  449. seems that any BINT will do." "828CD") "MsgBoxMenu" ("--> {}" "The messsage box menu, with just the OK key." "91795") "grobAlertIcon" ("9x9 Alert grob" "" "82A67") "grobCheckKey" ("21x8 Check Key menu grob" "A tickmark and \"CHK\" in a menu grob." "82A5D") "GROBDIM" ("grob --> #height #width" "" "81BAD") "GROBDIMw" ("grob --> #width" "" "8460F") "CKGROBFITS" ("g1 g2 #n #m --> g1 g2' #n #m" "Shrinks g2 if it does not fit in g1." "8217F") "CHECKHEIGHT" ("grob #height -->" "Forces grob (ABUFF/GBUFF) to be at least 64
  450. rows high." "69E2E") "GROB!" ("grob1 grob2 #x #y -->" "Stores grob1 into grob2. Bang type." "81897") "GROB+#" ("flag grob1 grob2 #x #y --> grob'" "Inserts grob2 into the specified position of
  451. grob1, using QORQ (if flag is TRUE) or QXORQ (if
  452. flag is FALSE). Does all necessary checks first." "82251") "GROB!ZERO" ("grob #x1 #y1 #x2 #y2 --> grob'" "Blanks a rectangular region of the grob. Bang
  453. type." "8189C") "GROB!ZERODRP" ("grob #x1 #y1 #x2 #y2 -->" "Blanks a rectangular region of the
  454. grob. Probably only useful if grob is the
  455. text or graphics grob (see section on
  456. display-organization). Bang type." "84290") "SUBGROB" ("grob #x1 #y1 #x2 #y2 --> grob'" "Returns specified portion of grob." "818B5") "XYGROBDISP" ("#x #y grob -->" "Stores grob in QHARDBUFFQ with upper left
  457. corner at (#x,#y). QHARDBUFFQ is expanded if
  458. necessary." "824EF") "GROB>GDISP" ("grob -->" "Stores new graph grob." "82265") "MAKEGROB" ("#height #width --> grob" "Creates a blank grob." "818B0") "INVGROB" ("grob --> grob'" "Inverts grob data bits. Bang type." "818AB") "PIXON" ("#x #y -->" "Sets pixel in text grob." "81AFE") "PIXOFF" ("#x #y -->" "Clears pixel in text grob." "81AF4") "PIXON?" ("#x #y --> flag" "Is pixel in text grob on?" "81B03") "PIXON3" ("#x #y -->" "Sets pixel in graph grob." "81B08") "PIXOFF3" ("#x #y -->" "Clears pixel in graph grob." "81AF9") "PIXON?3" ("#x #y --> flag" "Is pixel in graph grob on?" "81B0D") "LINEON" ("#x1 #y1 #x2 #y2 -->" "Draws a line in text grob." "81BBC") "LINEOFF" ("#x1 #y1 #x2 #y2 -->" "Clears a line in text grob." "81BB2") "TOGLINE" ("#x1 #y1 #x2 #y2 -->" "Toggles a line in text grob." "81BC6") "LINEON3" ("#x1 #y1 #x2 #y2 -->" "Draws a line in graph grob." "81BC1") "LINEOFF3" ("#x1 #y1 #x2 #y2 -->" "Clears a line in graph grob." "81BB7") "TOGLINE3" ("#x1 #y1 #x2 #y2 -->" "Toggles a line in graph grob." "81BCB") "DOLCD>" ("--> grob" "Returns current display." "821D9") "MakeStdLabel" ("$ --> grob" "Makes standard menu label." "822D3") "MakeBoxLabel" ("$ --> grob" "Makes label with a box." "822B5") "MakeDirLabel" ("$ --> grob" "Makes directory label." "822BF") "MakeInvLabel" ("$ --> grob" "Makes inverse label." "822C9") "Box/StdLabel" ("$ flag --> grob" "If TRUE makes box label, otherwise makes
  459. standard label." "82C15") "Std/BoxLabel" ("$ flag --> grob" "If TRUE makes standard label, otherwise makes
  460. box label." "8235F") "$>BIGGROB" ("$ --> grob" "Makes grob of the string using the large font
  461. (5x9)." "818BA") "$>GROB" ("$ --> grob" "Makes grob of the string using the system
  462. font. Linefeed does *not* make new line." "818BF") "$>grob" ("$ --> grob" "Makes grob of the string using the minifont.
  463. Linefeed does *not* make new line." "818C4") "CHECKPICT" ("-->" "Checks size of GBUFF. If it is smaller than
  464. 131x64 sets GBUFF back to its default size
  465. (131x64)." "82161") "GETXMIN" ("--> %" "Recalls XMIN from the PPAR list if
  466. existent. If not, the default PPAR is created
  467. in the current directory.
  468. --
  469. <REF>TEXT:Reserved|PPAR" "82229") "PUTXMIN" ("% -->" "Sets a new value for XMIN. PPAR is created
  470. if necessary.
  471. --
  472. <REF>TEXT:Reserved|PPAR" "822E7") "GETXMAX" ("--> %" "Recalls XMAX from the PPAR list if
  473. existent. If not, the default PPAR is created
  474. in the current directory.
  475. --
  476. <REF>TEXT:Reserved|PPAR" "8223D") "PUTXMAX" ("% -->" "Sets a new value for XMAX. PPAR is created
  477. if necessary.
  478. --
  479. <REF>TEXT:Reserved|PPAR" "822FB") "GETYMIN" ("--> %" "Recalls YMIN from the PPAR list if
  480. existent. If not, the default PPAR is created
  481. in the current directory.
  482. --
  483. <REF>TEXT:Reserved|PPAR" "82233") "PUTYMIN" ("% -->" "Sets a new value for YMIN. PPAR is created
  484. if necessary.
  485. --
  486. <REF>TEXT:Reserved|PPAR" "822F1") "GETYMAX" ("--> %" "Recalls YMAX from the PPAR list if
  487. existent. If not, the default PPAR is created
  488. in the current directory.
  489. --
  490. <REF>TEXT:Reserved|PPAR" "82247") "PUTYMAX" ("% -->" "Sets a new value for YMAX. PPAR is created
  491. if necessary.
  492. --
  493. <REF>TEXT:Reserved|PPAR" "82305") "GETYPOS" ("" "" "69347") "GDISPCENTER" ("-->" "Moves to center of graphics display" "8221F") "TopOuterLoop" ("" "" "8325F" :NOSDIAG :NOETAB) "TOLSaveUI" ("" "" "83269" :NOSDIAG :NOETAB) "TOLSetTopicUI" ("" "" "83273" :NOSDIAG :NOETAB) "TOLSetViewUI" ("" "" "8327D" :NOSDIAG :NOETAB) "TOLKeyUI" ("" "" "83287" :NOSDIAG :NOETAB) "TOLErrorTrap" ("" "" "83291" :NOSDIAG :NOETAB) "TOLResUI&Err" ("" "" "8329B" :NOSDIAG :NOETAB) "TOLRestoreUI" ("" "" "832A5" :NOSDIAG :NOETAB) "?ExitThisTop" ("" "" "832AF" :NOSDIAG :NOETAB) "CALCCXT!" ("ob -->" "" "84AE4" :NOSDIAG :NOETAB) "CALCCXT@" ("--> ob" "" "84AF4" :NOSDIAG :NOETAB) "PGMCXT!" ("ob -->" "" "84B04" :NOSDIAG :NOETAB) "PGMCXT@" ("--> ob" "" "84B14" :NOSDIAG :NOETAB) "NOTESCXT!" ("ob -->" "" "84B24" :NOSDIAG :NOETAB) "NOTESCXT@" ("--> ob" "" "84B34" :NOSDIAG :NOETAB) "apletPTR!" ("ob -->" "" "84B44" :NOSDIAG :NOETAB) "apletPTR@" ("--> ob" "" "84B54" :NOSDIAG :NOETAB) "funcPTR!" ("ob -->" "" "84B64" :NOSDIAG :NOETAB) "funcPTR@" ("--> ob" "" "84B74" :NOSDIAG :NOETAB) "polarPTR!" ("ob -->" "" "84B84" :NOSDIAG :NOETAB) "polarPTR@" ("--> ob" "" "84B94" :NOSDIAG :NOETAB) "paramPTR!" ("ob -->" "" "84BA4" :NOSDIAG :NOETAB) "paramPTR@" ("--> ob" "" "84BB4" :NOSDIAG :NOETAB) "seqPTR!" ("ob -->" "" "84BC4" :NOSDIAG :NOETAB) "seqPTR@" ("--> ob" "" "84BD4" :NOSDIAG :NOETAB) "statPTR!" ("ob -->" "" "84BE4" :NOSDIAG :NOETAB) "statPTR@" ("--> ob" "" "84BF4" :NOSDIAG :NOETAB) "solvePTR!" ("ob -->" "" "84C04" :NOSDIAG :NOETAB) "solvePTR@" ("--> ob" "" "84C14" :NOSDIAG :NOETAB) "otherPTR!" ("ob -->" "" "84C24" :NOSDIAG :NOETAB) "otherPTR@" ("--> ob" "" "84C34" :NOSDIAG :NOETAB) "TopicVarN!" ("" "" "81996") "TopicVarN@" ("" "" "81991") "TopicVar1!" ("ob -->" "" "84C44" :NOSDIAG :NOETAB) "TopicVar1@" ("--> ob" "" "84C54" :NOSDIAG :NOETAB) "TopicVar2!" ("ob -->" "" "84C64" :NOSDIAG :NOETAB) "TopicVar2@" ("--> ob" "" "84C74" :NOSDIAG :NOETAB) "TopicVar3!" ("ob -->" "" "84C84" :NOSDIAG :NOETAB) "TopicVar3@" ("--> ob" "" "84C94" :NOSDIAG :NOETAB) "TopicVar4!" ("ob -->" "" "84CA4" :NOSDIAG :NOETAB) "TopicVar4@" ("--> ob" "" "84CB4" :NOSDIAG :NOETAB) "TopicVar5!" ("ob -->" "" "84CC4" :NOSDIAG :NOETAB) "TopicVar5@" ("--> ob" "" "84CD4" :NOSDIAG :NOETAB) "TopicVar6!" ("ob -->" "" "84CE4" :NOSDIAG :NOETAB) "TopicVar6@" ("--> ob" "" "84CF4" :NOSDIAG :NOETAB) "TopicVar7!" ("ob -->" "" "84D04" :NOSDIAG :NOETAB) "TopicVar7@" ("--> ob" "" "84D14" :NOSDIAG :NOETAB) "TopicVar8!" ("ob -->" "" "84D24" :NOSDIAG :NOETAB) "TopicVar8@" ("--> ob" "" "84D34" :NOSDIAG :NOETAB) "TopicVar9!" ("ob -->" "" "84D44" :NOSDIAG :NOETAB) "TopicVar9@" ("--> ob" "" "84D54" :NOSDIAG :NOETAB) "TopicVar10!" ("ob -->" "" "84D64" :NOSDIAG :NOETAB) "TopicVar10@" ("--> ob" "" "84D74" :NOSDIAG :NOETAB) "TopicVar11!" ("ob -->" "" "84D84" :NOSDIAG :NOETAB) "TopicVar11@" ("--> ob" "" "84D94" :NOSDIAG :NOETAB) "TopicVar12!" ("ob -->" "" "84DA4" :NOSDIAG :NOETAB) "TopicVar12@" ("--> ob" "" "84DB4" :NOSDIAG :NOETAB) "TopicVar13!" ("ob -->" "" "84DC4" :NOSDIAG :NOETAB) "TopicVar13@" ("--> ob" "" "84DD4" :NOSDIAG :NOETAB) "TopicVar14!" ("ob -->" "" "84DE4" :NOSDIAG :NOETAB) "TopicVar14@" ("--> ob" "" "84DF4" :NOSDIAG :NOETAB) "TopicVar15!" ("ob -->" "" "84E04" :NOSDIAG :NOETAB) "TopicVar15@" ("--> ob" "" "84E14" :NOSDIAG :NOETAB) "TopicVar16!" ("ob -->" "" "84E24" :NOSDIAG :NOETAB) "TopicVar16@" ("--> ob" "" "84E34" :NOSDIAG :NOETAB) "TopicVar17!" ("ob -->" "" "84E44" :NOSDIAG :NOETAB) "TopicVar17@" ("--> ob" "" "84E54" :NOSDIAG :NOETAB) "TopicVar18!" ("ob -->" "" "84E64" :NOSDIAG :NOETAB) "TopicVar18@" ("--> ob" "" "84E74" :NOSDIAG :NOETAB) "TopicVar19!" ("ob -->" "" "84E84" :NOSDIAG :NOETAB) "TopicVar19@" ("--> ob" "" "84E94" :NOSDIAG :NOETAB) "TopicVar20!" ("ob -->" "" "84EA4" :NOSDIAG :NOETAB) "TopicVar20@" ("--> ob" "" "84EB4" :NOSDIAG :NOETAB) "TopicVar21!" ("ob -->" "" "84EC4" :NOSDIAG :NOETAB) "TopicVar21@" ("--> ob" "" "84ED4" :NOSDIAG :NOETAB) "TopicVar22!" ("ob -->" "" "84EE4" :NOSDIAG :NOETAB) "TopicVar22@" ("--> ob" "" "84EF4" :NOSDIAG :NOETAB) "TopicVar23!" ("ob -->" "" "84F04" :NOSDIAG :NOETAB) "TopicVar23@" ("--> ob" "" "84F14" :NOSDIAG :NOETAB) "TopicVar24!" ("ob -->" "" "84F24" :NOSDIAG :NOETAB) "TopicVar24@" ("--> ob" "" "84F34" :NOSDIAG :NOETAB) "TopicVar25!" ("ob -->" "" "84F44" :NOSDIAG :NOETAB) "TopicVar25@" ("--> ob" "" "84F54" :NOSDIAG :NOETAB) "TopicVar26!" ("ob -->" "" "84F64" :NOSDIAG :NOETAB) "TopicVar26@" ("--> ob" "" "84F74" :NOSDIAG :NOETAB) "TopicVar27!" ("ob -->" "" "84F84" :NOSDIAG :NOETAB) "TopicVar27@" ("--> ob" "" "84F94" :NOSDIAG :NOETAB) "TopicVar28!" ("ob -->" "" "84FA4" :NOSDIAG :NOETAB) "TopicVar28@" ("--> ob" "" "84FB4" :NOSDIAG :NOETAB) "TopicVar29!" ("ob -->" "" "84FC4" :NOSDIAG :NOETAB) "TopicVar29@" ("--> ob" "" "84FD4" :NOSDIAG :NOETAB) "TopicVar30!" ("ob -->" "" "84FE4" :NOSDIAG :NOETAB) "TopicVar30@" ("--> ob" "" "84FF4" :NOSDIAG :NOETAB) "TopicVar31!" ("ob -->" "" "85004" :NOSDIAG :NOETAB) "TopicVar31@" ("--> ob" "" "85014" :NOSDIAG :NOETAB) "TopicVar32!" ("ob -->" "" "85024" :NOSDIAG :NOETAB) "TopicVar32@" ("--> ob" "" "85034" :NOSDIAG :NOETAB) "TopicVar33!" ("ob -->" "" "85044" :NOSDIAG :NOETAB) "TopicVar33@" ("--> ob" "" "85054" :NOSDIAG :NOETAB) "TopicVar34!" ("ob -->" "" "85064" :NOSDIAG :NOETAB) "TopicVar34@" ("--> ob" "" "85074" :NOSDIAG :NOETAB) "TopicVar35!" ("ob -->" "" "85084" :NOSDIAG :NOETAB) "TopicVar35@" ("--> ob" "" "85094" :NOSDIAG :NOETAB) "TopicVar36!" ("ob -->" "" "850A4" :NOSDIAG :NOETAB) "TopicVar36@" ("--> ob" "" "850B4" :NOSDIAG :NOETAB) "TopicVar37!" ("ob -->" "" "850C4" :NOSDIAG :NOETAB) "TopicVar37@" ("--> ob" "" "850D4" :NOSDIAG :NOETAB) "TopicVar38!" ("ob -->" "" "850E4" :NOSDIAG :NOETAB) "TopicVar38@" ("--> ob" "" "850F4" :NOSDIAG :NOETAB) "TopicVar39!" ("ob -->" "" "85104" :NOSDIAG :NOETAB) "TopicVar39@" ("--> ob" "" "85114" :NOSDIAG :NOETAB) "TopicVar40!" ("ob -->" "" "85124" :NOSDIAG :NOETAB) "TopicVar40@" ("--> ob" "" "85134" :NOSDIAG :NOETAB) "TopicVar41!" ("ob -->" "" "85144" :NOSDIAG :NOETAB) "TopicVar41@" ("--> ob" "" "85154" :NOSDIAG :NOETAB) "TopicVar42!" ("ob -->" "" "85164" :NOSDIAG :NOETAB) "TopicVar42@" ("--> ob" "" "85174" :NOSDIAG :NOETAB) "TopicVar43!" ("ob -->" "" "85184" :NOSDIAG :NOETAB) "TopicVar43@" ("--> ob" "" "85194" :NOSDIAG :NOETAB) "TopicVar44!" ("ob -->" "" "851A4" :NOSDIAG :NOETAB) "TopicVar44@" ("--> ob" "" "851B4" :NOSDIAG :NOETAB) "TopicVar45!" ("ob -->" "" "851C4" :NOSDIAG :NOETAB) "TopicVar45@" ("--> ob" "" "851D4" :NOSDIAG :NOETAB) "TopicVar46!" ("ob -->" "" "851E4" :NOSDIAG :NOETAB) "TopicVar46@" ("--> ob" "" "851F4" :NOSDIAG :NOETAB) "TopicVar47!" ("ob -->" "" "85204" :NOSDIAG :NOETAB) "TopicVar47@" ("--> ob" "" "85214" :NOSDIAG :NOETAB) "TopicVar48!" ("ob -->" "" "85224" :NOSDIAG :NOETAB) "TopicVar48@" ("--> ob" "" "85234" :NOSDIAG :NOETAB) "TopicVar49!" ("ob -->" "" "85244" :NOSDIAG :NOETAB) "TopicVar49@" ("--> ob" "" "85254" :NOSDIAG :NOETAB) "TopicVar50!" ("ob -->" "" "85264" :NOSDIAG :NOETAB) "TopicVar50@" ("--> ob" "" "85274" :NOSDIAG :NOETAB) "TopicVar51!" ("ob -->" "" "85284" :NOSDIAG :NOETAB) "TopicVar51@" ("--> ob" "" "85294" :NOSDIAG :NOETAB) "TopicVar52@" ("ob -->" "" "852A4" :NOSDIAG :NOETAB) "TopicVar52!" ("--> ob" "" "852B4" :NOSDIAG :NOETAB) "TopicVar53@" ("ob -->" "" "852C4" :NOSDIAG :NOETAB) "TopicVar53!" ("--> ob" "" "852E0" :NOSDIAG :NOETAB) "TopicVar54@" ("ob -->" "" "85307" :NOSDIAG :NOETAB) "TopicVar54!" ("--> ob" "" "85317" :NOSDIAG :NOETAB) "TopicVar55@" ("ob -->" "" "85327" :NOSDIAG :NOETAB) "TopicVar55!" ("--> ob" "" "85337" :NOSDIAG :NOETAB) "TopicVar56@" ("ob -->" "" "85347" :NOSDIAG :NOETAB) "TopicVar56!" ("--> ob" "" "85357" :NOSDIAG :NOETAB) "TopicVar57@" ("ob -->" "" "85367" :NOSDIAG :NOETAB) "TopicVar57!" ("--> ob" "" "85377" :NOSDIAG :NOETAB) "TopicVar58@" ("ob -->" "" "85387" :NOSDIAG :NOETAB) "TopicVar58!" ("--> ob" "" "85397" :NOSDIAG :NOETAB) "TopicVar59@" ("ob -->" "" "853A7" :NOSDIAG :NOETAB) "TopicVar59!" ("--> ob" "" "853B7" :NOSDIAG :NOETAB) "TopicVar60@" ("ob -->" "" "853C7" :NOSDIAG :NOETAB) "TopicVar60!" ("--> ob" "" "853D7" :NOSDIAG :NOETAB) "TopicVar61@" ("ob -->" "" "853E7" :NOSDIAG :NOETAB) "TopicVar61!" ("--> ob" "" "853F7" :NOSDIAG :NOETAB) "TopicVar62@" ("ob -->" "" "85407" :NOSDIAG :NOETAB) "TopicVar62!" ("--> ob" "" "85417" :NOSDIAG :NOETAB) "TopicVar63@" ("ob -->" "" "85427" :NOSDIAG :NOETAB) "TopicVar63!" ("--> ob" "" "85437" :NOSDIAG :NOETAB) "TopicVar64@" ("ob -->" "" "85447" :NOSDIAG :NOETAB) "TopicVar64!" ("--> ob" "" "85457" :NOSDIAG :NOETAB) "TopicVar65@" ("ob -->" "" "85467" :NOSDIAG :NOETAB) "TopicVar65!" ("--> ob" "" "85477" :NOSDIAG :NOETAB) "TopicVar66@" ("ob -->" "" "85487" :NOSDIAG :NOETAB) "TopicVar66!" ("--> ob" "" "85497" :NOSDIAG :NOETAB) "TopicVar67@" ("ob -->" "" "854A7" :NOSDIAG :NOETAB) "TopicVar67!" ("--> ob" "" "854B7" :NOSDIAG :NOETAB) "TopicVar68@" ("ob -->" "" "854C7" :NOSDIAG :NOETAB) "TopicVar68!" ("--> ob" "" "854D7" :NOSDIAG :NOETAB) "TopicVar69@" ("ob -->" "" "854E7" :NOSDIAG :NOETAB) "TopicVar69!" ("--> ob" "" "854F7" :NOSDIAG :NOETAB) "TopicVar70@" ("ob -->" "" "85507" :NOSDIAG :NOETAB) "TopicVar70!" ("--> ob" "" "85517" :NOSDIAG :NOETAB) "TopicVar71@" ("ob -->" "" "85527" :NOSDIAG :NOETAB) "TopicVar71!" ("--> ob" "" "85537" :NOSDIAG :NOETAB) "TopicVar72@" ("ob -->" "" "85547" :NOSDIAG :NOETAB) "TopicVar72!" ("--> ob" "" "85557" :NOSDIAG :NOETAB) "TopicVar73@" ("ob -->" "" "85567" :NOSDIAG :NOETAB) "TopicVar73!" ("--> ob" "" "85577" :NOSDIAG :NOETAB) "TopicVar74@" ("ob -->" "" "85587" :NOSDIAG :NOETAB) "TopicVar74!" ("--> ob" "" "85597" :NOSDIAG :NOETAB) "TopicVar75@" ("ob -->" "" "855A7" :NOSDIAG :NOETAB) "TopicVar75!" ("--> ob" "" "855B7" :NOSDIAG :NOETAB) "TopicVar76@" ("ob -->" "" "855C7" :NOSDIAG :NOETAB) "TopicVar76!" ("--> ob" "" "855D7" :NOSDIAG :NOETAB) "TopicVar77@" ("ob -->" "" "855E7" :NOSDIAG :NOETAB) "TopicVar77!" ("--> ob" "" "855F7" :NOSDIAG :NOETAB) "TopicVar78@" ("ob -->" "" "85607" :NOSDIAG :NOETAB) "TopicVar78!" ("--> ob" "" "85617" :NOSDIAG :NOETAB) "TopicVar79@" ("ob -->" "" "85627" :NOSDIAG :NOETAB) "TopicVar79!" ("--> ob" "" "85637" :NOSDIAG :NOETAB) "TopicVar80@" ("ob -->" "" "85647" :NOSDIAG :NOETAB) "TopicVar80!" ("--> ob" "" "85657" :NOSDIAG :NOETAB) "TopicVar81@" ("ob -->" "" "85667" :NOSDIAG :NOETAB) "TopicVar81!" ("--> ob" "" "85677" :NOSDIAG :NOETAB) "TopicVar82@" ("ob -->" "" "85687" :NOSDIAG :NOETAB) "TopicVar82!" ("--> ob" "" "85697" :NOSDIAG :NOETAB) "TopicVar83@" ("ob -->" "" "856A7" :NOSDIAG :NOETAB) "TopicVar83!" ("--> ob" "" "856B7" :NOSDIAG :NOETAB) "TopicVar84@" ("ob -->" "" "856C7" :NOSDIAG :NOETAB) "TopicVar84!" ("--> ob" "" "856D7" :NOSDIAG :NOETAB) "TopicVar85@" ("ob -->" "" "856E7" :NOSDIAG :NOETAB) "TopicVar85!" ("--> ob" "" "856F7" :NOSDIAG :NOETAB) "TopicVar86@" ("ob -->" "" "85707" :NOSDIAG :NOETAB) "TopicVar86!" ("--> ob" "" "85717" :NOSDIAG :NOETAB) "TopicVar87@" ("ob -->" "" "85727" :NOSDIAG :NOETAB) "TopicVar87!" ("--> ob" "" "85737" :NOSDIAG :NOETAB) "TopicVar88@" ("ob -->" "" "85747" :NOSDIAG :NOETAB) "TopicVar88!" ("--> ob" "" "85757" :NOSDIAG :NOETAB) "TopicVar89@" ("ob -->" "" "85767" :NOSDIAG :NOETAB) "TopicVar89!" ("--> ob" "" "85777" :NOSDIAG :NOETAB) "TopicVar90@" ("ob -->" "" "85787" :NOSDIAG :NOETAB) "TopicVar90!" ("--> ob" "" "85797" :NOSDIAG :NOETAB) "TopicVar91!" ("ob -->" "" "857A7" :NOSDIAG :NOETAB) "TopicVar91@" ("--> ob" "" "857B7" :NOSDIAG :NOETAB) "TOLVar1!" ("ob -->" "" "857C7" :NOSDIAG :NOETAB) "TOLVar1@" ("--> ob" "" "857D7" :NOSDIAG :NOETAB) "TOLVar2!" ("ob -->" "" "857E7" :NOSDIAG :NOETAB) "TOLVar2@" ("--> ob" "" "857F7" :NOSDIAG :NOETAB) "TOLVar3!" ("ob -->" "" "85807" :NOSDIAG :NOETAB) "TOLVar3@" ("--> ob" "" "85817" :NOSDIAG :NOETAB) "TOLVar4!" ("ob -->" "" "85827" :NOSDIAG :NOETAB) "TOLVar4@" ("--> ob" "" "85837" :NOSDIAG :NOETAB) "TOLVar5!" ("ob -->" "" "85847" :NOSDIAG :NOETAB) "TOLVar5@" ("--> ob" "" "85857" :NOSDIAG :NOETAB) "TOLVar6!" ("ob -->" "" "85867" :NOSDIAG :NOETAB) "TOLVar6@" ("--> ob" "" "85877" :NOSDIAG :NOETAB) "TOLVar7!" ("ob -->" "" "85887" :NOSDIAG :NOETAB) "TOLVar7@" ("--> ob" "" "85897" :NOSDIAG :NOETAB) "TOLVar8!" ("ob -->" "" "858A7" :NOSDIAG :NOETAB) "TOLVar8@" ("--> ob" "" "858B7" :NOSDIAG :NOETAB) "TOLVar9!" ("ob -->" "" "858C7" :NOSDIAG :NOETAB) "TOLVar9@" ("--> ob" "" "858D7" :NOSDIAG :NOETAB) "TOLVar10!" ("ob -->" "" "858E7" :NOSDIAG :NOETAB) "TOLVar10@" ("--> ob" "" "858F7" :NOSDIAG :NOETAB) "TOLVar11!" ("ob -->" "" "85907" :NOSDIAG :NOETAB) "TOLVar11@" ("--> ob" "" "85917" :NOSDIAG :NOETAB) "TOLVar12!" ("ob -->" "" "85927" :NOSDIAG :NOETAB) "TOLVar12@" ("--> ob" "" "85937" :NOSDIAG :NOETAB) "TOLVar13!" ("ob -->" "" "85947" :NOSDIAG :NOETAB) "TOLVar13@" ("--> ob" "" "85957" :NOSDIAG :NOETAB) "TOLVar14!" ("ob -->" "" "85967" :NOSDIAG :NOETAB) "TOLVar14@" ("--> ob" "" "85977" :NOSDIAG :NOETAB) "TOLVar15!" ("ob -->" "" "85987" :NOSDIAG :NOETAB) "TOLVar15@" ("--> ob" "" "85997" :NOSDIAG :NOETAB) "TOLVar16!" ("ob -->" "" "859A7" :NOSDIAG :NOETAB) "TOLVar16@" ("--> ob" "" "859B7" :NOSDIAG :NOETAB) "TOLVar17!" ("ob -->" "" "859C7" :NOSDIAG :NOETAB) "TOLVar17@" ("--> ob" "" "859D7" :NOSDIAG :NOETAB) "TOLVar18!" ("ob -->" "" "859E7" :NOSDIAG :NOETAB) "TOLVar18@" ("--> ob" "" "859F7" :NOSDIAG :NOETAB) "TOLVar19!" ("ob -->" "" "85A07" :NOSDIAG :NOETAB) "TOLVar19@" ("--> ob" "" "85A17" :NOSDIAG :NOETAB) "TOLVar20!" ("ob -->" "" "85A27" :NOSDIAG :NOETAB) "TOLVar20@" ("--> ob" "" "85A37" :NOSDIAG :NOETAB) "TOLVar21!" ("ob -->" "" "85A47" :NOSDIAG :NOETAB) "TOLVar21@" ("--> ob" "" "85A57" :NOSDIAG :NOETAB) "TOLVar22!" ("ob -->" "" "85A67" :NOSDIAG :NOETAB) "TOLVar22@" ("--> ob" "" "85A77" :NOSDIAG :NOETAB) "TOLVar23!" ("ob -->" "" "85A87" :NOSDIAG :NOETAB) "TOLVar23@" ("--> ob" "" "85A97" :NOSDIAG :NOETAB) "TOLVar24!" ("ob -->" "" "85AA7" :NOSDIAG :NOETAB) "TOLVar24@" ("--> ob" "" "85AB7" :NOSDIAG :NOETAB) "TOLVar25!" ("ob -->" "" "85AC7" :NOSDIAG :NOETAB) "TOLVar25@" ("--> ob" "" "85AD7" :NOSDIAG :NOETAB) "TOLVar26!" ("ob -->" "" "85AE9" :NOSDIAG :NOETAB) "TOLVar26@" ("--> ob" "" "85AFB" :NOSDIAG :NOETAB) "TOLVar27!" ("ob -->" "" "85B0D" :NOSDIAG :NOETAB) "TOLVar27@" ("--> ob" "" "85B1F" :NOSDIAG :NOETAB) "TOLVar28!" ("ob -->" "" "85B31" :NOSDIAG :NOETAB) "TOLVar28@" ("--> ob" "" "85B43" :NOSDIAG :NOETAB) "TOLVar29!" ("ob -->" "" "85B55" :NOSDIAG :NOETAB) "TOLVar29@" ("--> ob" "" "85B67" :NOSDIAG :NOETAB) "TOLVar30!" ("ob -->" "" "85B79" :NOSDIAG :NOETAB) "TOLVar30@" ("--> ob" "" "85B8B" :NOSDIAG :NOETAB) "TOLVar31!" ("ob -->" "" "85B9D" :NOSDIAG :NOETAB) "TOLVar31@" ("--> ob" "" "85BAF" :NOSDIAG :NOETAB) "TOLVar32!" ("ob -->" "" "85BC1" :NOSDIAG :NOETAB) "TOLVar32@" ("--> ob" "" "85BD3" :NOSDIAG :NOETAB) "TOLVar33!" ("ob -->" "" "85BE5" :NOSDIAG :NOETAB) "TOLVar33@" ("--> ob" "" "85BF7" :NOSDIAG :NOETAB) "TOLVar34!" ("ob -->" "" "85C09" :NOSDIAG :NOETAB) "TOLVar34@" ("--> ob" "" "85C1B" :NOSDIAG :NOETAB) "TOLVar35!" ("ob -->" "" "85C2D" :NOSDIAG :NOETAB) "TOLVar35@" ("--> ob" "" "85C3F" :NOSDIAG :NOETAB) "TOLVar36!" ("ob -->" "" "85C51" :NOSDIAG :NOETAB) "TOLVar36@" ("--> ob" "" "85C63" :NOSDIAG :NOETAB) "TOLVar37!" ("ob -->" "" "85C75" :NOSDIAG :NOETAB) "TOLVar37@" ("--> ob" "" "85C87" :NOSDIAG :NOETAB) "TOLVar38!" ("ob -->" "" "85C99" :NOSDIAG :NOETAB) "TOLVar38@" ("--> ob" "" "85CAB" :NOSDIAG :NOETAB) "TOLVar39!" ("ob -->" "" "85CBD" :NOSDIAG :NOETAB) "TOLVar39@" ("--> ob" "" "85CCF" :NOSDIAG :NOETAB) "TOLVar40!" ("ob -->" "" "85CE1" :NOSDIAG :NOETAB) "TOLVar40@" ("--> ob" "" "85CF3" :NOSDIAG :NOETAB) "TOLVar41!" ("ob -->" "" "85D05" :NOSDIAG :NOETAB) "TOLVar41@" ("--> ob" "" "85D17" :NOSDIAG :NOETAB) "TOLVar42!" ("ob -->" "" "85D29" :NOSDIAG :NOETAB) "TOLVar42@" ("--> ob" "" "85D3B" :NOSDIAG :NOETAB) "TOLVar43!" ("ob -->" "" "85D4D" :NOSDIAG :NOETAB) "TOLVar43@" ("--> ob" "" "85D5F" :NOSDIAG :NOETAB) "TOLVar44!" ("ob -->" "" "85D71" :NOSDIAG :NOETAB) "TOLVar44@" ("--> ob" "" "85D83" :NOSDIAG :NOETAB) "TOLVar45!" ("ob -->" "" "85D95" :NOSDIAG :NOETAB) "TOLVar45@" ("--> ob" "" "85DA7" :NOSDIAG :NOETAB) "TOLVar46!" ("ob -->" "" "85DB9" :NOSDIAG :NOETAB) "TOLVar46@" ("--> ob" "" "85DCB" :NOSDIAG :NOETAB) "TOLVar47!" ("ob -->" "" "85DDD" :NOSDIAG :NOETAB) "TOLVar47@" ("--> ob" "" "85DEF" :NOSDIAG :NOETAB) "TOLVar48!" ("ob -->" "" "85E01" :NOSDIAG :NOETAB) "TOLVar48@" ("--> ob" "" "85E13" :NOSDIAG :NOETAB) "TOLVar49!" ("ob -->" "" "85E25" :NOSDIAG :NOETAB) "TOLVar49@" ("--> ob" "" "85E37" :NOSDIAG :NOETAB) "TOLVar50!" ("ob -->" "" "85E49" :NOSDIAG :NOETAB) "TOLVar50@" ("--> ob" "" "85E5B" :NOSDIAG :NOETAB) "TOLVar51!" ("ob -->" "" "85E6D" :NOSDIAG :NOETAB) "TOLVar51@" ("--> ob" "" "85E7F" :NOSDIAG :NOETAB) "TOLVar52!" ("ob -->" "" "85E91" :NOSDIAG :NOETAB) "TOLVar52@" ("--> ob" "" "85EA3" :NOSDIAG :NOETAB) "TOLVar53!" ("ob -->" "" "85EB5" :NOSDIAG :NOETAB) "TOLVar53@" ("--> ob" "" "85EC7" :NOSDIAG :NOETAB) "TOLVar54!" ("ob -->" "" "85ED9" :NOSDIAG :NOETAB) "TOLVar54@" ("--> ob" "" "85EEB" :NOSDIAG :NOETAB) "TOLVar55!" ("ob -->" "" "85EFD" :NOSDIAG :NOETAB) "TOLVar55@" ("--> ob" "" "85F0F" :NOSDIAG :NOETAB) "TOLVar56!" ("ob -->" "" "85F21" :NOSDIAG :NOETAB) "TOLVar56@" ("--> ob" "" "85F33" :NOSDIAG :NOETAB) "TOLVar57!" ("ob -->" "" "85F45" :NOSDIAG :NOETAB) "TOLVar57@" ("--> ob" "" "85F57" :NOSDIAG :NOETAB) "TOLVar58!" ("ob -->" "" "85F69" :NOSDIAG :NOETAB) "TOLVar58@" ("--> ob" "" "85F7B" :NOSDIAG :NOETAB) "TOLVar59!" ("ob -->" "" "85F8D" :NOSDIAG :NOETAB) "TOLVar59@" ("--> ob" "" "85F9F" :NOSDIAG :NOETAB) "TOLVar60!" ("ob -->" "" "85FB1" :NOSDIAG :NOETAB) "TOLVar60@" ("--> ob" "" "85FC3" :NOSDIAG :NOETAB) "TOLVar61!" ("ob -->" "" "85FD5" :NOSDIAG :NOETAB) "TOLVar61@" ("--> ob" "" "85FE7" :NOSDIAG :NOETAB) "TOLVar62!" ("ob -->" "" "85FF9" :NOSDIAG :NOETAB) "TOLVar62@" ("--> ob" "" "8600B" :NOSDIAG :NOETAB) "TOLVar63!" ("ob -->" "" "8601D" :NOSDIAG :NOETAB) "TOLVar63@" ("--> ob" "" "8602F" :NOSDIAG :NOETAB) "TOLVar64!" ("ob -->" "" "86041" :NOSDIAG :NOETAB) "TOLVar64@" ("--> ob" "" "86053" :NOSDIAG :NOETAB) "TOLVar65!" ("ob -->" "" "86065" :NOSDIAG :NOETAB) "TOLVar65@" ("--> ob" "" "86077" :NOSDIAG :NOETAB) "TOLVar66!" ("ob -->" "" "86089" :NOSDIAG :NOETAB) "TOLVar66@" ("--> ob" "" "8609B" :NOSDIAG :NOETAB) "TOLVar67!" ("ob -->" "" "860AD" :NOSDIAG :NOETAB) "TOLVar67@" ("--> ob" "" "860BF" :NOSDIAG :NOETAB) "TOLVar68!" ("ob -->" "" "860D1" :NOSDIAG :NOETAB) "TOLVar68@" ("--> ob" "" "860E3" :NOSDIAG :NOETAB) "TOLVar69!" ("ob -->" "" "860F5" :NOSDIAG :NOETAB) "TOLVar69@" ("--> ob" "" "86107" :NOSDIAG :NOETAB) "TOLVar70!" ("ob -->" "" "86119" :NOSDIAG :NOETAB) "TOLVar70@" ("--> ob" "" "8612B" :NOSDIAG :NOETAB) "TOLVar71!" ("ob -->" "" "8613D" :NOSDIAG :NOETAB) "TOLVar71@" ("--> ob" "" "8614F" :NOSDIAG :NOETAB) "TOLVar72!" ("ob -->" "" "86161" :NOSDIAG :NOETAB) "TOLVar72@" ("--> ob" "" "86173" :NOSDIAG :NOETAB) "TOLVar73!" ("ob -->" "" "86185" :NOSDIAG :NOETAB) "TOLVar73@" ("--> ob" "" "86197" :NOSDIAG :NOETAB) "TOLVar74!" ("ob -->" "" "861A9" :NOSDIAG :NOETAB) "TOLVar74@" ("--> ob" "" "861BB" :NOSDIAG :NOETAB) "TOLVar75!" ("ob -->" "" "861CD" :NOSDIAG :NOETAB) "TOLVar75@" ("--> ob" "" "861DF" :NOSDIAG :NOETAB) "TOLVar76!" ("ob -->" "" "861F1" :NOSDIAG :NOETAB) "TOLVar76@" ("--> ob" "" "86203" :NOSDIAG :NOETAB) "TOLVar77!" ("ob -->" "" "86215" :NOSDIAG :NOETAB) "TOLVar77@" ("--> ob" "" "86227" :NOSDIAG :NOETAB) "TOLVar78!" ("ob -->" "" "86239" :NOSDIAG :NOETAB) "TOLVar78@" ("--> ob" "" "8624B" :NOSDIAG :NOETAB) "TOLVar79!" ("ob -->" "" "8625D" :NOSDIAG :NOETAB) "TOLVar79@" ("--> ob" "" "8626F" :NOSDIAG :NOETAB) "TOLVar80!" ("ob -->" "" "86281" :NOSDIAG :NOETAB) "TOLVar80@" ("--> ob" "" "86293" :NOSDIAG :NOETAB) "TOLVar81!" ("ob -->" "" "862A5" :NOSDIAG :NOETAB) "TOLVar81@" ("--> ob" "" "862B7" :NOSDIAG :NOETAB) "TOLVar82!" ("ob -->" "" "862C9" :NOSDIAG :NOETAB) "TOLVar82@" ("--> ob" "" "862DB" :NOSDIAG :NOETAB) "TOLVar83!" ("ob -->" "" "862ED" :NOSDIAG :NOETAB) "TOLVar83@" ("--> ob" "" "862FF" :NOSDIAG :NOETAB) "TOLVar84!" ("ob -->" "" "86311" :NOSDIAG :NOETAB) "TOLVar84@" ("--> ob" "" "86323" :NOSDIAG :NOETAB) "TOLVar85!" ("ob -->" "" "86335" :NOSDIAG :NOETAB) "TOLVar85@" ("--> ob" "" "86347" :NOSDIAG :NOETAB) "TOLVar86!" ("ob -->" "" "86359" :NOSDIAG :NOETAB) "TOLVar86@" ("--> ob" "" "8636B" :NOSDIAG :NOETAB) "TOLVar87!" ("ob -->" "" "8637D" :NOSDIAG :NOETAB) "TOLVar87@" ("--> ob" "" "8638F" :NOSDIAG :NOETAB) "TOLVar88!" ("ob -->" "" "863A1" :NOSDIAG :NOETAB) "TOLVar88@" ("--> ob" "" "863B3" :NOSDIAG :NOETAB) "TOLVar89!" ("ob -->" "" "863C5" :NOSDIAG :NOETAB) "TOLVar89@" ("--> ob" "" "863D7" :NOSDIAG :NOETAB) "TOLVar90!" ("ob -->" "" "863E9" :NOSDIAG :NOETAB) "TOLVar90@" ("--> ob" "" "863FB" :NOSDIAG :NOETAB) "TOLVar91!" ("ob -->" "" "8640D" :NOSDIAG :NOETAB) "TOLVar91@" ("--> ob" "" "8641F" :NOSDIAG :NOETAB) "TOLVar92!" ("ob -->" "" "86431" :NOSDIAG :NOETAB) "TOLVar92@" ("--> ob" "" "86443" :NOSDIAG :NOETAB) "TOLVar93!" ("ob -->" "" "86455" :NOSDIAG :NOETAB) "TOLVar93@" ("--> ob" "" "86467" :NOSDIAG :NOETAB) "TOLVar94!" ("ob -->" "" "86479" :NOSDIAG :NOETAB) "TOLVar94@" ("--> ob" "" "8648B" :NOSDIAG :NOETAB) "TOLVar95!" ("ob -->" "" "8649D" :NOSDIAG :NOETAB) "TOLVar95@" ("--> ob" "" "864AF" :NOSDIAG :NOETAB) "TOLVar96!" ("ob -->" "" "864C1" :NOSDIAG :NOETAB) "TOLVar96@" ("--> ob" "" "864D3" :NOSDIAG :NOETAB) "TOLVar97!" ("ob -->" "" "864E5" :NOSDIAG :NOETAB) "TOLVar97@" ("--> ob" "" "864F7" :NOSDIAG :NOETAB) "TOLVar98!" ("ob -->" "" "86509" :NOSDIAG :NOETAB) "TOLVar98@" ("--> ob" "" "8651B" :NOSDIAG :NOETAB) "TOLVar99!" ("ob -->" "" "8652D" :NOSDIAG :NOETAB) "TOLVar99@" ("--> ob" "" "8653F" :NOSDIAG :NOETAB) "TOLVar100!" ("ob -->" "" "86551" :NOSDIAG :NOETAB) "TOLVar100@" ("--> ob" "" "86563" :NOSDIAG :NOETAB) "TOLVar101!" ("ob -->" "" "86575" :NOSDIAG :NOETAB) "TOLVar101@" ("--> ob" "" "86587" :NOSDIAG :NOETAB) "TOLVar102!" ("ob -->" "" "86599" :NOSDIAG :NOETAB) "TOLVar102@" ("--> ob" "" "865AB" :NOSDIAG :NOETAB) "TOLVar103!" ("ob -->" "" "865BD" :NOSDIAG :NOETAB) "TOLVar103@" ("--> ob" "" "865CF" :NOSDIAG :NOETAB) "TOLVar104!" ("ob -->" "" "865E1" :NOSDIAG :NOETAB) "TOLVar104@" ("--> ob" "" "865F3" :NOSDIAG :NOETAB) "TOLVar105!" ("ob -->" "" "86605" :NOSDIAG :NOETAB) "TOLVar105@" ("--> ob" "" "86617" :NOSDIAG :NOETAB) "TOLVar106!" ("ob -->" "" "86629" :NOSDIAG :NOETAB) "TOLVar106@" ("--> ob" "" "8663B" :NOSDIAG :NOETAB) "TOLVar107!" ("ob -->" "" "8664D" :NOSDIAG :NOETAB) "TOLVar107@" ("--> ob" "" "8665F" :NOSDIAG :NOETAB) "TOLVar108!" ("ob -->" "" "86671" :NOSDIAG :NOETAB) "TOLVar108@" ("--> ob" "" "86683" :NOSDIAG :NOETAB) "TOLVar109!" ("ob -->" "" "86695" :NOSDIAG :NOETAB) "TOLVar109@" ("--> ob" "" "866A7" :NOSDIAG :NOETAB) "TOLVar110!" ("ob -->" "" "866B9" :NOSDIAG :NOETAB) "TOLVar110@" ("--> ob" "" "866CB" :NOSDIAG :NOETAB) "TOLVar111!" ("ob -->" "" "866DD" :NOSDIAG :NOETAB) "TOLVar111@" ("--> ob" "" "866EF" :NOSDIAG :NOETAB) "TOLVar112!" ("ob -->" "" "86701" :NOSDIAG :NOETAB) "TOLVar112@" ("--> ob" "" "86713" :NOSDIAG :NOETAB) "TOLVar113!" ("ob -->" "" "86725" :NOSDIAG :NOETAB) "TOLVar113@" ("--> ob" "" "86737" :NOSDIAG :NOETAB) "TOLVar114!" ("ob -->" "" "86749" :NOSDIAG :NOETAB) "TOLVar114@" ("--> ob" "" "8675B" :NOSDIAG :NOETAB) "TOLVar115!" ("ob -->" "" "8676D" :NOSDIAG :NOETAB) "TOLVar115@" ("--> ob" "" "8677F" :NOSDIAG :NOETAB) "TOLVar116!" ("ob -->" "" "86791" :NOSDIAG :NOETAB) "TOLVar116@" ("--> ob" "" "867A3" :NOSDIAG :NOETAB) "TOLVar117!" ("ob -->" "" "867B5" :NOSDIAG :NOETAB) "TOLVar117@" ("--> ob" "" "867C7" :NOSDIAG :NOETAB) "TOLVar118!" ("ob -->" "" "867D9" :NOSDIAG :NOETAB) "TOLVar118@" ("--> ob" "" "867EB" :NOSDIAG :NOETAB) "TOLVar119!" ("ob -->" "" "867FD" :NOSDIAG :NOETAB) "TOLVar119@" ("--> ob" "" "8680F" :NOSDIAG :NOETAB) "TOLVar120!" ("ob -->" "" "86821" :NOSDIAG :NOETAB) "TOLVar120@" ("--> ob" "" "86833" :NOSDIAG :NOETAB) "TOLVar121!" ("ob -->" "" "86845" :NOSDIAG :NOETAB) "TOLVar121@" ("--> ob" "" "86857" :NOSDIAG :NOETAB) "TOLVar122!" ("ob -->" "" "86869" :NOSDIAG :NOETAB) "TOLVar122@" ("--> ob" "" "8687B" :NOSDIAG :NOETAB) "TOLVar123!" ("ob -->" "" "8688D" :NOSDIAG :NOETAB) "TOLVar123@" ("--> ob" "" "8689F" :NOSDIAG :NOETAB) "TOLVar124!" ("ob -->" "" "868B1" :NOSDIAG :NOETAB) "TOLVar124@" ("--> ob" "" "868C3" :NOSDIAG :NOETAB) "TOLVar125!" ("ob -->" "" "868D5" :NOSDIAG :NOETAB) "TOLVar125@" ("--> ob" "" "868E7" :NOSDIAG :NOETAB) "TOLVar126!" ("ob -->" "" "868F9" :NOSDIAG :NOETAB) "TOLVar126@" ("--> ob" "" "8690B" :NOSDIAG :NOETAB) "TOLVar127!" ("ob -->" "" "8691D" :NOSDIAG :NOETAB) "TOLVar127@" ("--> ob" "" "8692F" :NOSDIAG :NOETAB) "TOLVar128!" ("ob -->" "" "86941" :NOSDIAG :NOETAB) "TOLVar128@" ("--> ob" "" "86953" :NOSDIAG :NOETAB) "TOLVar129!" ("ob -->" "" "86965" :NOSDIAG :NOETAB) "TOLVar129@" ("--> ob" "" "86977" :NOSDIAG :NOETAB) "TOLVar130!" ("ob -->" "" "86989" :NOSDIAG :NOETAB) "TOLVar130@" ("--> ob" "" "8699B" :NOSDIAG :NOETAB) "TOLVar131!" ("ob -->" "" "869AD" :NOSDIAG :NOETAB) "TOLVar131@" ("--> ob" "" "869BF" :NOSDIAG :NOETAB) "TOLVar132!" ("ob -->" "" "869D1" :NOSDIAG :NOETAB) "TOLVar132@" ("--> ob" "" "869E3" :NOSDIAG :NOETAB) "TOLVar133!" ("ob -->" "" "869F5" :NOSDIAG :NOETAB) "TOLVar133@" ("--> ob" "" "86A07" :NOSDIAG :NOETAB) "TOLVar134!" ("ob -->" "" "86A19" :NOSDIAG :NOETAB) "TOLVar134@" ("--> ob" "" "86A2B" :NOSDIAG :NOETAB) "TOLVar135!" ("ob -->" "" "86A3D" :NOSDIAG :NOETAB) "TOLVar135@" ("--> ob" "" "86A4F" :NOSDIAG :NOETAB) "TOLVar136!" ("ob -->" "" "86A61" :NOSDIAG :NOETAB) "TOLVar136@" ("--> ob" "" "86A73" :NOSDIAG :NOETAB) "TOLVar137!" ("ob -->" "" "86A85" :NOSDIAG :NOETAB) "TOLVar137@" ("--> ob" "" "86A97" :NOSDIAG :NOETAB) "TOLVar138!" ("ob -->" "" "86AA9" :NOSDIAG :NOETAB) "TOLVar138@" ("--> ob" "" "86ABB" :NOSDIAG :NOETAB) "TOLVar139!" ("ob -->" "" "86ACD" :NOSDIAG :NOETAB) "TOLVar139@" ("--> ob" "" "86ADF" :NOSDIAG :NOETAB) "TOLVar140!" ("ob -->" "" "86AF1" :NOSDIAG :NOETAB) "TOLVar140@" ("--> ob" "" "86B03" :NOSDIAG :NOETAB) "TOLVar141!" ("ob -->" "" "86B15" :NOSDIAG :NOETAB) "TOLVar141@" ("--> ob" "" "86B27" :NOSDIAG :NOETAB) "TOLVar142!" ("ob -->" "" "86B39" :NOSDIAG :NOETAB) "TOLVar142@" ("--> ob" "" "86B4B" :NOSDIAG :NOETAB) "TOLVar143!" ("ob -->" "" "86B5D" :NOSDIAG :NOETAB) "TOLVar143@" ("--> ob" "" "86B6F" :NOSDIAG :NOETAB) "TOLVar144!" ("ob -->" "" "86B81" :NOSDIAG :NOETAB) "TOLVar144@" ("--> ob" "" "86B93" :NOSDIAG :NOETAB) "TOLVar145!" ("ob -->" "" "86BA5" :NOSDIAG :NOETAB) "TOLVar145@" ("--> ob" "" "86BB7" :NOSDIAG :NOETAB) "TOLVar146!" ("ob -->" "" "86BC9" :NOSDIAG :NOETAB) "TOLVar146@" ("--> ob" "" "86BDB" :NOSDIAG :NOETAB) "TOLVar147!" ("ob -->" "" "86BED" :NOSDIAG :NOETAB) "TOLVar147@" ("--> ob" "" "86BFF" :NOSDIAG :NOETAB) "TOLVar148!" ("ob -->" "" "86C11" :NOSDIAG :NOETAB) "TOLVar148@" ("--> ob" "" "86C23" :NOSDIAG :NOETAB) "TOLVar149!" ("ob -->" "" "86C35" :NOSDIAG :NOETAB) "TOLVar149@" ("--> ob" "" "86C47" :NOSDIAG :NOETAB) "TOLVar150!" ("ob -->" "" "86C59" :NOSDIAG :NOETAB) "TOLVar150@" ("--> ob" "" "86C6B" :NOSDIAG :NOETAB) "TOLVar151!" ("ob -->" "" "86C7D" :NOSDIAG :NOETAB) "TOLVar151@" ("--> ob" "" "86C8F" :NOSDIAG :NOETAB) "TOLVar152!" ("ob -->" "" "86CA1" :NOSDIAG :NOETAB) "TOLVar152@" ("--> ob" "" "86CB3" :NOSDIAG :NOETAB) "TOLVar153!" ("ob -->" "" "86CC5" :NOSDIAG :NOETAB) "TOLVar153@" ("--> ob" "" "86CD7" :NOSDIAG :NOETAB) "TOLVar154!" ("ob -->" "" "86CE9" :NOSDIAG :NOETAB) "TOLVar154@" ("--> ob" "" "86CFB" :NOSDIAG :NOETAB) "TOLVar155!" ("ob -->" "" "86D0D" :NOSDIAG :NOETAB) "TOLVar155@" ("--> ob" "" "86D1F" :NOSDIAG :NOETAB) "TOLVar156!" ("ob -->" "" "86D31" :NOSDIAG :NOETAB) "TOLVar156@" ("--> ob" "" "86D43" :NOSDIAG :NOETAB) "TOLVar157!" ("ob -->" "" "86D55" :NOSDIAG :NOETAB) "TOLVar157@" ("--> ob" "" "86D67" :NOSDIAG :NOETAB) "TOLVar158!" ("ob -->" "" "86D79" :NOSDIAG :NOETAB) "TOLVar158@" ("--> ob" "" "86D8B" :NOSDIAG :NOETAB) "TOLVar159!" ("ob -->" "" "86D9D" :NOSDIAG :NOETAB) "TOLVar159@" ("--> ob" "" "86DAF" :NOSDIAG :NOETAB) "TOLVar160!" ("ob -->" "" "86DC1" :NOSDIAG :NOETAB) "TOLVar160@" ("--> ob" "" "86DD3" :NOSDIAG :NOETAB) "TOLVar161!" ("ob -->" "" "86DE5" :NOSDIAG :NOETAB) "TOLVar161@" ("--> ob" "" "86DF7" :NOSDIAG :NOETAB) "TOLVar162!" ("ob -->" "" "86E09" :NOSDIAG :NOETAB) "TOLVar162@" ("--> ob" "" "86E1B" :NOSDIAG :NOETAB) "TOLVar163!" ("ob -->" "" "86E2D" :NOSDIAG :NOETAB) "TOLVar163@" ("--> ob" "" "86E3F" :NOSDIAG :NOETAB) "TOLVar164!" ("ob -->" "" "86E51" :NOSDIAG :NOETAB) "TOLVar164@" ("--> ob" "" "86E63" :NOSDIAG :NOETAB) "TOLVar165!" ("ob -->" "" "86E75" :NOSDIAG :NOETAB) "TOLVar165@" ("--> ob" "" "86E87" :NOSDIAG :NOETAB) "TOLVar166!" ("ob -->" "" "86E99" :NOSDIAG :NOETAB) "TOLVar166@" ("--> ob" "" "86EAB" :NOSDIAG :NOETAB) "TOLVar167!" ("ob -->" "" "86EBD" :NOSDIAG :NOETAB) "TOLVar167@" ("--> ob" "" "86ECF" :NOSDIAG :NOETAB) "TOLVar168!" ("ob -->" "" "86EE1" :NOSDIAG :NOETAB) "TOLVar168@" ("--> ob" "" "86EF3" :NOSDIAG :NOETAB) "TOLVar169!" ("ob -->" "" "86F05" :NOSDIAG :NOETAB) "TOLVar169@" ("--> ob" "" "86F17" :NOSDIAG :NOETAB) "TOLVar170!" ("ob -->" "" "86F29" :NOSDIAG :NOETAB) "TOLVar170@" ("--> ob" "" "86F3B" :NOSDIAG :NOETAB) "TOLVar171!" ("ob -->" "" "86F4D" :NOSDIAG :NOETAB) "TOLVar171@" ("--> ob" "" "86F5F" :NOSDIAG :NOETAB) "TOLVar172!" ("ob -->" "" "86F71" :NOSDIAG :NOETAB) "TOLVar172@" ("--> ob" "" "86F83" :NOSDIAG :NOETAB) "TOLVar173!" ("ob -->" "" "86F95" :NOSDIAG :NOETAB) "TOLVar173@" ("--> ob" "" "86FA7" :NOSDIAG :NOETAB) "TOLVar174!" ("ob -->" "" "86FB9" :NOSDIAG :NOETAB) "TOLVar174@" ("--> ob" "" "86FCB" :NOSDIAG :NOETAB) "TOLVar175!" ("ob -->" "" "86FDD" :NOSDIAG :NOETAB) "TOLVar175@" ("--> ob" "" "86FEF" :NOSDIAG :NOETAB) "TOLVar176!" ("ob -->" "" "87001" :NOSDIAG :NOETAB) "TOLVar176@" ("--> ob" "" "87013" :NOSDIAG :NOETAB) "TOLVar177!" ("ob -->" "" "87025" :NOSDIAG :NOETAB) "TOLVar177@" ("--> ob" "" "87037" :NOSDIAG :NOETAB) "TOLVar178!" ("ob -->" "" "87049" :NOSDIAG :NOETAB) "TOLVar178@" ("--> ob" "" "8705B" :NOSDIAG :NOETAB) "TOLVar179!" ("ob -->" "" "8706D" :NOSDIAG :NOETAB) "TOLVar179@" ("--> ob" "" "8707F" :NOSDIAG :NOETAB) "TOLVar180!" ("ob -->" "" "87091" :NOSDIAG :NOETAB) "TOLVar180@" ("--> ob" "" "870A3" :NOSDIAG :NOETAB) "TOLVar181!" ("ob -->" "" "870B5" :NOSDIAG :NOETAB) "TOLVar181@" ("--> ob" "" "870C7" :NOSDIAG :NOETAB) "TOLVar182!" ("ob -->" "" "870D9" :NOSDIAG :NOETAB) "TOLVar182@" ("--> ob" "" "870EB" :NOSDIAG :NOETAB) "TOLVar183!" ("ob -->" "" "870FD" :NOSDIAG :NOETAB) "TOLVar183@" ("--> ob" "" "8710F" :NOSDIAG :NOETAB) "TOLVar184!" ("ob -->" "" "87121" :NOSDIAG :NOETAB) "TOLVar184@" ("--> ob" "" "87133" :NOSDIAG :NOETAB) "TOLVar185!" ("ob -->" "" "87145" :NOSDIAG :NOETAB) "TOLVar185@" ("--> ob" "" "87157" :NOSDIAG :NOETAB) "TOLVar186!" ("ob -->" "" "87169" :NOSDIAG :NOETAB) "TOLVar186@" ("--> ob" "" "8717B" :NOSDIAG :NOETAB) "TOLVar187!" ("ob -->" "" "8718D" :NOSDIAG :NOETAB) "TOLVar187@" ("--> ob" "" "8719F" :NOSDIAG :NOETAB) "TOLVar188!" ("ob -->" "" "871B1" :NOSDIAG :NOETAB) "TOLVar188@" ("--> ob" "" "871C3" :NOSDIAG :NOETAB) "TOLVar189!" ("ob -->" "" "871D5" :NOSDIAG :NOETAB) "TOLVar189@" ("--> ob" "" "871E7" :NOSDIAG :NOETAB) "TOLVar190!" ("ob -->" "" "871F9" :NOSDIAG :NOETAB) "TOLVar190@" ("--> ob" "" "8720B" :NOSDIAG :NOETAB) "TOLVar191!" ("ob -->" "" "8721D" :NOSDIAG :NOETAB) "TOLVar191@" ("--> ob" "" "8722F" :NOSDIAG :NOETAB) "TOLVar192!" ("ob -->" "" "87241" :NOSDIAG :NOETAB) "TOLVar192@" ("--> ob" "" "87253" :NOSDIAG :NOETAB) "TOLVar193!" ("ob -->" "" "87265" :NOSDIAG :NOETAB) "TOLVar193@" ("--> ob" "" "87277" :NOSDIAG :NOETAB) "TOLVar194!" ("ob -->" "" "87289" :NOSDIAG :NOETAB) "TOLVar194@" ("--> ob" "" "8729B" :NOSDIAG :NOETAB) "TOLVar195!" ("ob -->" "" "872AD" :NOSDIAG :NOETAB) "TOLVar195@" ("--> ob" "" "872BF" :NOSDIAG :NOETAB) "TOLVar196!" ("ob -->" "" "872D1" :NOSDIAG :NOETAB) "TOLVar196@" ("--> ob" "" "872E3" :NOSDIAG :NOETAB) "TOLVar197!" ("ob -->" "" "872F5" :NOSDIAG :NOETAB) "TOLVar197@" ("--> ob" "" "87307" :NOSDIAG :NOETAB) "TOLVar198!" ("ob -->" "" "87319" :NOSDIAG :NOETAB) "TOLVar198@" ("--> ob" "" "8732B" :NOSDIAG :NOETAB) "TOLVar199!" ("ob -->" "" "8733D" :NOSDIAG :NOETAB) "TOLVar199@" ("--> ob" "" "8734F" :NOSDIAG :NOETAB) "TOLVar200!" ("ob -->" "" "87361" :NOSDIAG :NOETAB) "TOLVar200@" ("--> ob" "" "87373" :NOSDIAG :NOETAB) "TOLVar201!" ("ob -->" "" "87385" :NOSDIAG :NOETAB) "TOLVar201@" ("--> ob" "" "87397" :NOSDIAG :NOETAB) "TOLVar202!" ("ob -->" "" "873A9" :NOSDIAG :NOETAB) "TOLVar202@" ("--> ob" "" "873BB" :NOSDIAG :NOETAB) "TOLVar203!" ("ob -->" "" "873CD" :NOSDIAG :NOETAB) "TOLVar203@" ("--> ob" "" "873DF" :NOSDIAG :NOETAB) "TOLVar204!" ("ob -->" "" "873F1" :NOSDIAG :NOETAB) "TOLVar204@" ("--> ob" "" "87403" :NOSDIAG :NOETAB) "TOLVar205!" ("ob -->" "" "87415" :NOSDIAG :NOETAB) "TOLVar205@" ("--> ob" "" "87427" :NOSDIAG :NOETAB) "TOLVar206!" ("ob -->" "" "87439" :NOSDIAG :NOETAB) "TOLVar206@" ("--> ob" "" "8744B" :NOSDIAG :NOETAB) "TOLVar207!" ("ob -->" "" "8745D" :NOSDIAG :NOETAB) "TOLVar207@" ("--> ob" "" "8746F" :NOSDIAG :NOETAB) "TOLVar208!" ("ob -->" "" "87481" :NOSDIAG :NOETAB) "TOLVar208@" ("--> ob" "" "87493" :NOSDIAG :NOETAB) "TOLVar209!" ("ob -->" "" "874A5" :NOSDIAG :NOETAB) "TOLVar209@" ("--> ob" "" "874B7" :NOSDIAG :NOETAB) "TOLVar210!" ("ob -->" "" "874C9" :NOSDIAG :NOETAB) "TOLVar210@" ("--> ob" "" "874DB" :NOSDIAG :NOETAB) "TOLVar211!" ("ob -->" "" "874ED" :NOSDIAG :NOETAB) "TOLVar211@" ("--> ob" "" "874FF" :NOSDIAG :NOETAB) "TOLVar212!" ("ob -->" "" "87511" :NOSDIAG :NOETAB) "TOLVar212@" ("--> ob" "" "87523" :NOSDIAG :NOETAB) "TOLVar213!" ("ob -->" "" "87535" :NOSDIAG :NOETAB) "TOLVar213@" ("--> ob" "" "87547" :NOSDIAG :NOETAB) "TOLVar214!" ("ob -->" "" "87559" :NOSDIAG :NOETAB) "TOLVar214@" ("--> ob" "" "8756B" :NOSDIAG :NOETAB) "TOLVar215!" ("ob -->" "" "8757D" :NOSDIAG :NOETAB) "TOLVar215@" ("--> ob" "" "8758F" :NOSDIAG :NOETAB) "TOLVar216!" ("ob -->" "" "875A1" :NOSDIAG :NOETAB) "TOLVar216@" ("--> ob" "" "875B3" :NOSDIAG :NOETAB) "TOLVarN!" ("ob -->" "" "875C5" :NOSDIAG :NOETAB) "TOLVarN@" ("--> ob" "" "875E8" :NOSDIAG :NOETAB) "ClrAllTVars" ("" "" "8760B" :NOSDIAG :NOETAB) "ClrAllTOLVs" ("" "" "87641" :NOSDIAG :NOETAB) "%0AllTopicVs" ("" "" "8765D" :NOSDIAG :NOETAB) "%0AllTOLVars" ("" "" "87698" :NOSDIAG :NOETAB) "TOLVarSet!" ("" "" "876D3" :NOSDIAG :NOETAB) "%0TOLVarSet" ("" "" "877A0" :NOSDIAG :NOETAB) "1getcxt!" ("" "" "877F0" :NOSDIAG :NOETAB) "DoInCxt" ("" "" "87804" :NOSDIAG :NOETAB) "DoInCalcCxt" ("" "" "8785E" :NOSDIAG :NOETAB) "DoInAppCxt" ("" "" "87877" :NOSDIAG :NOETAB) "DoInFuncCxt" ("" "" "87890" :NOSDIAG :NOETAB) "DoInPolarCxt" ("" "" "878A9" :NOSDIAG :NOETAB) "DoInParamCxt" ("" "" "878C2" :NOSDIAG :NOETAB) "DoInSeqCxt" ("" "" "878DB" :NOSDIAG :NOETAB) "DoInStatCxt" ("" "" "878F4" :NOSDIAG :NOETAB) "DoInSolveCxt" ("" "" "8790D" :NOSDIAG :NOETAB) "DoInOtherCxt" ("" "" "87926" :NOSDIAG :NOETAB) "otherNG?" ("" "" "879F3" :NOSDIAG :NOETAB) "GET@tTYPER" ("" "" "87A26" :NOSDIAG :NOETAB) "StoVar" ("ob id -->" "Stores to variable. ID is one of the ids
  494. returned by any of the commands in the
  495. following subsections." "82D55") "~xa" ("--> id" "The id corresponding to the real variable A." "0000F2") "~xb" ("--> id" "The id corresponding to the real variable B." "0010F2") "~xc" ("--> id" "The id corresponding to the real variable C." "0020F2") "~xd" ("--> id" "The id corresponding to the real variable D." "0030F2") "~xf" ("--> id" "The id corresponding to the real variable F." "0050F2") "~xg" ("--> id" "The id corresponding to the real variable G." "0060F2") "~xh" ("--> id" "The id corresponding to the real variable H." "0070F2") "~xj" ("--> id" "The id corresponding to the real variable J." "0090F2") "~xk" ("--> id" "The id corresponding to the real variable K." "00A0F2") "~xl" ("--> id" "The id corresponding to the real variable L." "00B0F2") "~xm" ("--> id" "The id corresponding to the real variable M." "00C0F2") "~xn" ("--> id" "The id corresponding to the real variable N." "00D0F2") "~xo" ("--> id" "The id corresponding to the real variable O." "00E0F2") "~xp" ("--> id" "The id corresponding to the real variable P." "00F0F2") "~xq" ("--> id" "The id corresponding to the real variable Q." "0100F2") "~xr" ("--> id" "The id corresponding to the real variable R." "0110F2") "~xs" ("--> id" "The id corresponding to the real variable S." "0120F2") "~xt" ("--> id" "The id corresponding to the real variable T." "0130F2") "~xu" ("--> id" "The id corresponding to the real variable U." "0140F2") "~xv" ("--> id" "The id corresponding to the real variable V." "0150F2") "~xw" ("--> id" "The id corresponding to the real variable W." "0160F2") "xx" ("--> id" "The id corresponding to the real variable X." "57916") "~xy" ("--> id" "The id corresponding to the real variable Y." "0180F2") "~xz" ("--> id" "The id corresponding to the real variable Z." "0190F2") "~xtheta" ("--> id" "The id corresponding to the real variable \\Gh." "01A0F2") "~xz0" ("--> id" "The id corresponding to the complex
  496. variable Z0. " "0310F2") "~xz1" ("--> id" "The id corresponding to the complex
  497. variable Z1. " "0320F2") "~xz2" ("--> id" "The id corresponding to the complex
  498. variable Z2. " "0330F2") "~xz3" ("--> id" "The id corresponding to the complex
  499. variable Z3. " "0340F2") "~xz4" ("--> id" "The id corresponding to the complex
  500. variable Z4. " "0350F2") "~xz5" ("--> id" "The id corresponding to the complex
  501. variable Z5. " "0360F2") "~xz6" ("--> id" "The id corresponding to the complex
  502. variable Z6. " "0370F2") "~xz7" ("--> id" "The id corresponding to the complex
  503. variable Z7. " "0380F2") "~xz8" ("--> id" "The id corresponding to the complex
  504. variable Z8. " "0390F2") "~xz9" ("--> id" "The id corresponding to the complex
  505. variable Z9. " "03A0F2") "~xm0" ("--> id" "The id corresponding to the matrix
  506. variable M0. " "03B0F2") "~xm1" ("--> id" "The id corresponding to the matrix
  507. variable M1. " "03C0F2") "~xm2" ("--> id" "The id corresponding to the matrix
  508. variable M2. " "03D0F2") "~xm3" ("--> id" "The id corresponding to the matrix
  509. variable M3. " "03E0F2") "~xm4" ("--> id" "The id corresponding to the matrix
  510. variable M4. " "03F0F2") "~xm5" ("--> id" "The id corresponding to the matrix
  511. variable M5. " "0400F2") "~xm6" ("--> id" "The id corresponding to the matrix
  512. variable M6. " "0410F2") "~xm7" ("--> id" "The id corresponding to the matrix
  513. variable M7. " "0420F2") "~xm8" ("--> id" "The id corresponding to the matrix
  514. variable M8. " "0430F2") "~xm9" ("--> id" "The id corresponding to the matrix
  515. variable M9. " "0440F2") "~xg0" ("--> id" "The id corresponding to the graphics
  516. variable G0. " "04F0F2") "~xg1" ("--> id" "The id corresponding to the graphics
  517. variable G1. " "0500F2") "~xg2" ("--> id" "The id corresponding to the graphics
  518. variable G2. " "0510F2") "~xg3" ("--> id" "The id corresponding to the graphics
  519. variable G3. " "0520F2") "~xg4" ("--> id" "The id corresponding to the graphics
  520. variable G4. " "0530F2") "~xg5" ("--> id" "The id corresponding to the graphics
  521. variable G5. " "0540F2") "~xg6" ("--> id" "The id corresponding to the graphics
  522. variable G6. " "0550F2") "~xg7" ("--> id" "The id corresponding to the graphics
  523. variable G7. " "0560F2") "~xg8" ("--> id" "The id corresponding to the graphics
  524. variable G8. " "0570F2") "~xg9" ("--> id" "The id corresponding to the graphics
  525. variable G9. " "0580F2") "~xl0" ("--> id" "The id corresponding to the list
  526. variable L0. " "0450F2") "~xl1" ("--> id" "The id corresponding to the list
  527. variable L1. " "0460F2") "~xl2" ("--> id" "The id corresponding to the list
  528. variable L2. " "0470F2") "~xl3" ("--> id" "The id corresponding to the list
  529. variable L3. " "0480F2") "~xl4" ("--> id" "The id corresponding to the list
  530. variable L4. " "0490F2") "~xl5" ("--> id" "The id corresponding to the list
  531. variable L5. " "04A0F2") "~xl6" ("--> id" "The id corresponding to the list
  532. variable L6. " "04B0F2") "~xl7" ("--> id" "The id corresponding to the list
  533. variable L7. " "04C0F2") "~xl8" ("--> id" "The id corresponding to the list
  534. variable L8. " "04D0F2") "~xl9" ("--> id" "The id corresponding to the list
  535. variable L9. " "04E0F2") "ClearList0" ("-->" "Clears list 0." "81F86") "ClearList1" ("-->" "Clears list 1." "81F2C") "ClearList2" ("-->" "Clears list 2." "81F36") "ClearList3" ("-->" "Clears list 3." "81F40") "ClearList4" ("-->" "Clears list 4." "81F4A") "ClearList5" ("-->" "Clears list 5." "81F54") "ClearList6" ("-->" "Clears list 6." "81F5E") "ClearList7" ("-->" "Clears list 7." "81F68") "ClearList8" ("-->" "Clears list 8." "81F72") "ClearList9" ("-->" "Clears list 9." "81F7C") "ClearLists" ("-->" "Clears all lists." "28381" :UBS) "ClrListUtil" ("" "" "81F22") "ClrInAplet" ("" "" "81D92") "~xF0" ("--> id" "The id corresponding to the FUNCTION applet
  536. variable F0. " "0D20F2") "~xF1" ("--> id" "The id corresponding to the FUNCTION applet
  537. variable F1. " "0C00F2") "~xF2" ("--> id" "The id corresponding to the FUNCTION applet
  538. variable F2. " "0C20F2") "~xF3" ("--> id" "The id corresponding to the FUNCTION applet
  539. variable F3. " "0C40F2") "~xF4" ("--> id" "The id corresponding to the FUNCTION applet
  540. variable F4. " "0C60F2") "~xF5" ("--> id" "The id corresponding to the FUNCTION applet
  541. variable F5. " "0C80F2") "~xF6" ("--> id" "The id corresponding to the FUNCTION applet
  542. variable F6. " "0CA0F2") "~xF7" ("--> id" "The id corresponding to the FUNCTION applet
  543. variable F7. " "0CC0F2") "~xF8" ("--> id" "The id corresponding to the FUNCTION applet
  544. variable F8. " "0CE0F2") "~xF9" ("--> id" "The id corresponding to the FUNCTION applet
  545. variable F9. " "0D00F2") "~idF0" ("--> id" "The id corresponding to the FUNCTION applet
  546. variable F0. " "0D30F2") "~idF1" ("--> id" "The id corresponding to the FUNCTION applet
  547. variable F1. " "0C10F2") "~idF2" ("--> id" "The id corresponding to the FUNCTION applet
  548. variable F2. " "0C30F2") "~idF3" ("--> id" "The id corresponding to the FUNCTION applet
  549. variable F3. " "0C50F2") "~idF4" ("--> id" "The id corresponding to the FUNCTION applet
  550. variable F4. " "0C70F2") "~idF5" ("--> id" "The id corresponding to the FUNCTION applet
  551. variable F5. " "0C90F2") "~idF6" ("--> id" "The id corresponding to the FUNCTION applet
  552. variable F6. " "0CB0F2") "~idF7" ("--> id" "The id corresponding to the FUNCTION applet
  553. variable F7. " "0CD0F2") "~idF8" ("--> id" "The id corresponding to the FUNCTION applet
  554. variable F8. " "0CF0F2") "~idF9" ("--> id" "The id corresponding to the FUNCTION applet
  555. variable F9. " "0D10F2") "~xX0" ("--> id" "The id corresponding to the PARAMETRIC applet
  556. variable X0. " "0F80F2") "~xX1" ("--> id" "The id corresponding to the PARAMETRIC applet
  557. variable X1. " "0D40F2") "~xX2" ("--> id" "The id corresponding to the PARAMETRIC applet
  558. variable X2. " "0D80F2") "~xX3" ("--> id" "The id corresponding to the PARAMETRIC applet
  559. variable X3. " "0DC0F2") "~xX4" ("--> id" "The id corresponding to the PARAMETRIC applet
  560. variable X4. " "0E00F2") "~xX5" ("--> id" "The id corresponding to the PARAMETRIC applet
  561. variable X5. " "0E40F2") "~xX6" ("--> id" "The id corresponding to the PARAMETRIC applet
  562. variable X6. " "0E80F2") "~xX7" ("--> id" "The id corresponding to the PARAMETRIC applet
  563. variable X7. " "0EC0F2") "~xX8" ("--> id" "The id corresponding to the PARAMETRIC applet
  564. variable X8. " "0F00F2") "~xX9" ("--> id" "The id corresponding to the PARAMETRIC applet
  565. variable X9. " "0F40F2") "~xY0" ("--> id" "The id corresponding to the PARAMETRIC applet
  566. variable Y0. " "0FA0F2") "~xY1" ("--> id" "The id corresponding to the PARAMETRIC applet
  567. variable Y1. " "0D60F2") "~xY2" ("--> id" "The id corresponding to the PARAMETRIC applet
  568. variable Y2. " "0DA0F2") "~xY3" ("--> id" "The id corresponding to the PARAMETRIC applet
  569. variable Y3. " "0DE0F2") "~xY4" ("--> id" "The id corresponding to the PARAMETRIC applet
  570. variable Y4. " "0E20F2") "~xY5" ("--> id" "The id corresponding to the PARAMETRIC applet
  571. variable Y5. " "0E60F2") "~xY6" ("--> id" "The id corresponding to the PARAMETRIC applet
  572. variable Y6. " "0EA0F2") "~xY7" ("--> id" "The id corresponding to the PARAMETRIC applet
  573. variable Y7. " "0EE0F2") "~xY8" ("--> id" "The id corresponding to the PARAMETRIC applet
  574. variable Y8. " "0F20F2") "~xY9" ("--> id" "The id corresponding to the PARAMETRIC applet
  575. variable Y9. " "0F60F2") "~idX0" ("--> id" "The id corresponding to the PARAMETRIC applet
  576. variable X0. " "0F90F2") "~idX1" ("--> id" "The id corresponding to the PARAMETRIC applet
  577. variable X1. " "0D50F2") "~idX2" ("--> id" "The id corresponding to the PARAMETRIC applet
  578. variable X2. " "0D90F2") "~idX3" ("--> id" "The id corresponding to the PARAMETRIC applet
  579. variable X3. " "0DD0F2") "~idX4" ("--> id" "The id corresponding to the PARAMETRIC applet
  580. variable X4. " "0E10F2") "~idX5" ("--> id" "The id corresponding to the PARAMETRIC applet
  581. variable X5. " "0E50F2") "~idX6" ("--> id" "The id corresponding to the PARAMETRIC applet
  582. variable X6. " "0E90F2") "~idX7" ("--> id" "The id corresponding to the PARAMETRIC applet
  583. variable X7. " "0ED0F2") "~idX8" ("--> id" "The id corresponding to the PARAMETRIC applet
  584. variable X8. " "0F10F2") "~idX9" ("--> id" "The id corresponding to the PARAMETRIC applet
  585. variable X9. " "0F50F2") "~idY0" ("--> id" "The id corresponding to the PARAMETRIC applet
  586. variable Y0. " "0FB0F2") "~idY1" ("--> id" "The id corresponding to the PARAMETRIC applet
  587. variable Y1. " "0D70F2") "~idY2" ("--> id" "The id corresponding to the PARAMETRIC applet
  588. variable Y2. " "0DB0F2") "~idY3" ("--> id" "The id corresponding to the PARAMETRIC applet
  589. variable Y3. " "0DF0F2") "~idY4" ("--> id" "The id corresponding to the PARAMETRIC applet
  590. variable Y4. " "0E30F2") "~idY5" ("--> id" "The id corresponding to the PARAMETRIC applet
  591. variable Y5. " "0E70F2") "~idY6" ("--> id" "The id corresponding to the PARAMETRIC applet
  592. variable Y6. " "0EB0F2") "~idY7" ("--> id" "The id corresponding to the PARAMETRIC applet
  593. variable Y7. " "0EF0F2") "~idY8" ("--> id" "The id corresponding to the PARAMETRIC applet
  594. variable Y8. " "0F30F2") "~idY9" ("--> id" "The id corresponding to the PARAMETRIC applet
  595. variable Y9. " "0F70F2") "~xR0" ("--> id" "The id corresponding to the POLAR applet
  596. variable R0. " "10E0F2") "~xR1" ("--> id" "The id corresponding to the POLAR applet
  597. variable R1. " "0FC0F2") "~xR2" ("--> id" "The id corresponding to the POLAR applet
  598. variable R2. " "0FE0F2") "~xR3" ("--> id" "The id corresponding to the POLAR applet
  599. variable R3. " "1000F2") "~xR4" ("--> id" "The id corresponding to the POLAR applet
  600. variable R4. " "1020F2") "~xR5" ("--> id" "The id corresponding to the POLAR applet
  601. variable R5. " "1040F2") "~xR6" ("--> id" "The id corresponding to the POLAR applet
  602. variable R6. " "1060F2") "~xR7" ("--> id" "The id corresponding to the POLAR applet
  603. variable R7. " "1080F2") "~xR8" ("--> id" "The id corresponding to the POLAR applet
  604. variable R8. " "10A0F2") "~xR9" ("--> id" "The id corresponding to the POLAR applet
  605. variable R9. " "10C0F2") "~idR0" ("--> id" "The id corresponding to the POLAR applet
  606. variable R0. " "10F0F2") "~idR1" ("--> id" "The id corresponding to the POLAR applet
  607. variable R1. " "0FD0F2") "~idR2" ("--> id" "The id corresponding to the POLAR applet
  608. variable R2. " "0FF0F2") "~idR3" ("--> id" "The id corresponding to the POLAR applet
  609. variable R3. " "1010F2") "~idR4" ("--> id" "The id corresponding to the POLAR applet
  610. variable R4. " "1030F2") "~idR5" ("--> id" "The id corresponding to the POLAR applet
  611. variable R5. " "1050F2") "~idR6" ("--> id" "The id corresponding to the POLAR applet
  612. variable R6. " "1070F2") "~idR7" ("--> id" "The id corresponding to the POLAR applet
  613. variable R7. " "1090F2") "~idR8" ("--> id" "The id corresponding to the POLAR applet
  614. variable R8. " "10B0F2") "~idR9" ("--> id" "The id corresponding to the POLAR applet
  615. variable R9. " "10D0F2") "~xU0" ("--> id" "The id corresponding to the SEQUENCE applet
  616. variable U0. " "0BE0F2") "~xU1" ("--> id" "The id corresponding to the SEQUENCE applet
  617. variable U1. " "0AC0F2") "~xU2" ("--> id" "The id corresponding to the SEQUENCE applet
  618. variable U2. " "0AE0F2") "~xU3" ("--> id" "The id corresponding to the SEQUENCE applet
  619. variable U3. " "0B00F2") "~xU4" ("--> id" "The id corresponding to the SEQUENCE applet
  620. variable U4. " "0B20F2") "~xU5" ("--> id" "The id corresponding to the SEQUENCE applet
  621. variable U5. " "0B40F2") "~xU6" ("--> id" "The id corresponding to the SEQUENCE applet
  622. variable U6. " "0B60F2") "~xU7" ("--> id" "The id corresponding to the SEQUENCE applet
  623. variable U7. " "0B80F2") "~xU8" ("--> id" "The id corresponding to the SEQUENCE applet
  624. variable U8. " "0BA0F2") "~xU9" ("--> id" "The id corresponding to the SEQUENCE applet
  625. variable U9. " "0BC0F2") "~idU0" ("--> id" "The id corresponding to the SEQUENCE applet
  626. variable U0. " "0BF0F2") "~idU1" ("--> id" "The id corresponding to the SEQUENCE applet
  627. variable U1. " "0AD0F2") "~idU2" ("--> id" "The id corresponding to the SEQUENCE applet
  628. variable U2. " "0AF0F2") "~idU3" ("--> id" "The id corresponding to the SEQUENCE applet
  629. variable U3. " "0B10F2") "~idU4" ("--> id" "The id corresponding to the SEQUENCE applet
  630. variable U4. " "0B30F2") "~idU5" ("--> id" "The id corresponding to the SEQUENCE applet
  631. variable U5. " "0B50F2") "~idU6" ("--> id" "The id corresponding to the SEQUENCE applet
  632. variable U6. " "0B70F2") "~idU7" ("--> id" "The id corresponding to the SEQUENCE applet
  633. variable U7. " "0B90F2") "~idU8" ("--> id" "The id corresponding to the SEQUENCE applet
  634. variable U8. " "0BB0F2") "~idU9" ("--> id" "The id corresponding to the SEQUENCE applet
  635. variable U9. " "0BD0F2") "~idE0" ("--> id" "The id corresponding to the SOLVE applet
  636. variable E0. " "08E0F2") "~idE1" ("--> id" "The id corresponding to the SOLVE applet
  637. variable E1. " "0850F2") "~idE2" ("--> id" "The id corresponding to the SOLVE applet
  638. variable E2. " "0860F2") "~idE3" ("--> id" "The id corresponding to the SOLVE applet
  639. variable E3. " "0870F2") "~idE4" ("--> id" "The id corresponding to the SOLVE applet
  640. variable E4. " "0880F2") "~idE5" ("--> id" "The id corresponding to the SOLVE applet
  641. variable E5. " "0890F2") "~idE6" ("--> id" "The id corresponding to the SOLVE applet
  642. variable E6. " "08A0F2") "~idE7" ("--> id" "The id corresponding to the SOLVE applet
  643. variable E7. " "08B0F2") "~idE8" ("--> id" "The id corresponding to the SOLVE applet
  644. variable E8. " "08C0F2") "~idE9" ("--> id" "The id corresponding to the SOLVE applet
  645. variable E9. " "08D0F2") "xC1" ("--> id" "The id corresponding to the STATISTICS applet
  646. variable C1. " "5FFF4") "xC2" ("--> id" "The id corresponding to the STATISTICS applet
  647. variable C2. " "6001A") "xC3" ("--> id" "The id corresponding to the STATISTICS applet
  648. variable C3. " "60040") "xC4" ("--> id" "The id corresponding to the STATISTICS applet
  649. variable C4. " "60066") "xC5" ("--> id" "The id corresponding to the STATISTICS applet
  650. variable C5. " "6008C") "~xs1" ("" "" "1240F2") "~xs2" ("" "" "1250F2") "~xs3" ("" "" "1260F2") "~xs4" ("" "" "1270F2") "~xs5" ("" "" "1280F2") "~xn1" ("" "" "1290F2") "~xn2" ("" "" "12A0F2") "~xn3" ("" "" "12B0F2") "~xn4" ("" "" "12C0F2") "~xn5" ("" "" "12D0F2") "~xD0" ("" "" "1190F2") "~xD1" ("" "" "1100F2") "~xD2" ("" "" "1110F2") "~xD3" ("" "" "1120F2") "~xD4" ("" "" "1130F2") "~xD5" ("" "" "1140F2") "~xD6" ("" "" "1150F2") "~xD7" ("" "" "1160F2") "~xD8" ("" "" "1170F2") "~xD9" ("" "" "1180F2") "~xE" ("" "" "0040F2") "~xH1" ("" "" "11A0F2") "~xH2" ("" "" "11B0F2") "~xH3" ("" "" "11C0F2") "~xH4" ("" "" "11D0F2") "~xH5" ("" "" "11E0F2") "~xI" ("" "" "0080F2") "~xQ1" ("" "" "0250F2") "~xQ3" ("" "" "0260F2") "~xS1" ("" "" "11F0F2") "~xS1fit" ("" "" "0A70F2") "~xS1mark" ("" "" "0A20F2") "~xS2" ("" "" "1200F2") "~xS2fit" ("" "" "0A80F2") "~xS2mark" ("" "" "0A30F2") "~xS3" ("" "" "1210F2") "~xS3fit" ("" "" "0A90F2") "~xS3mark" ("" "" "0A40F2") "~xS4" ("" "" "1220F2") "~xS4fit" ("" "" "0AA0F2") "~xS4mark" ("" "" "0A50F2") "~xS5" ("" "" "1230F2") "~xS5fit" ("" "" "0AB0F2") "~xS5mark" ("" "" "0A60F2") "~m->DEFACOS" ("" "" "0680F0") "~m->DEFACOSH" ("" "" "06E0F0") "~m->DEFASIN" ("" "" "0670F0") "~m->DEFASINH" ("" "" "06D0F0") "~m->DEFATAN" ("" "" "0690F0") "~m->DEFATANH" ("" "" "06F0F0") "~m->DEFCOS" ("" "" "0650F0") "~m->DEFCOSH" ("" "" "06B0F0") "~m->DEFSIN" ("" "" "0640F0") "~m->DEFSINH" ("" "" "06A0F0") "~m->DEFTAN" ("" "" "0660F0") "~m->DEFTANH" ("" "" "06C0F0") "~m->TRG" ("" "" "0630F0") "~m->[]<-*/" ("" "" "05E0F0") "~m->[]<-+-" ("" "" "05D0F0") "~m-[]*" ("" "" "03F0F0") "~m-[]+" ("" "" "0410F0") "~m-[]-" ("" "" "0420F0") "~m-[]/" ("" "" "0400F0") "~m-[]L" ("" "" "03E0F0") "~m1/[]*" ("" "" "03A0F0") "~m1/[]/" ("" "" "03B0F0") "~m1/[]E" ("" "" "03D0F0") "~m1/[]^" ("" "" "03C0F0") "~m<->*" ("" "" "0210F0") "~m<->+" ("" "" "01F0F0") "~m<->-" ("" "" "0200F0") "~m<->/" ("" "" "0220F0") "~m<-A-+" ("" "" "0230F0") "~m<-A--" ("" "" "0240F0") "~m<-A/*" ("" "" "0250F0") "~m<-A//" ("" "" "0260F0") "~m<-A^*" ("" "" "0270F0") "~m<-M*E" ("" "" "0500F0") "~m<-M*^" ("" "" "04E0F0") "~m<-M+*" ("" "" "0490F0") "~m<-M+L" ("" "" "0520F0") "~m<-M-*" ("" "" "04A0F0") "~m<-M-L" ("" "" "0530F0") "~m<-M/E" ("" "" "0510F0") "~m<-M/^" ("" "" "04F0F0") "~m<-T*/" ("" "" "0580F0") "~m<-T+-" ("" "" "0570F0") "~m<-T=" ("" "" "01B0F0") "~m<-[*/" ("" "" "05A0F0") "~m<-[+-" ("" "" "0590F0") "~m<T>*" ("" "" "0560F0") "~m<T>+" ("" "" "0550F0") "~mA->*/" ("" "" "02A0F0") "~mA->+-" ("" "" "0280F0") "~mA->--" ("" "" "0290F0") "~mA->//" ("" "" "02B0F0") "~mA->^^" ("" "" "02C0F0") "~mAFlq" ("" "" "01C0F0") "~mAFqq" ("" "" "01D0F0") "~mAFrq" ("" "" "01E0F0") "~mCONJ[]" ("" "" "05F0F0") "~mCOS+" ("" "" "0710F0") "~mCOSH+" ("" "" "0740F0") "~mD->/+" ("" "" "02D0F0") "~mD->/-" ("" "" "02E0F0") "~mD->E+" ("" "" "0310F0") "~mD->E-" ("" "" "0320F0") "~mD->L*" ("" "" "0330F0") "~mD->L/" ("" "" "0340F0") "~mD->^+" ("" "" "02F0F0") "~mD->^-" ("" "" "0300F0") "~mE[]^" ("" "" "0450F0") "~mE^*" ("" "" "0430F0") "~mE^/" ("" "" "0440F0") "~mIM[]" ("" "" "0610F0") "~mL*^" ("" "" "0460F0") "~mL[]*" ("" "" "0470F0") "~mL[]/" ("" "" "0480F0") "~mM->op" ("" "" "0540F0") "~mRE[]" ("" "" "0600F0") "~mSIN+" ("" "" "0700F0") "~mSINH+" ("" "" "0730F0") "~mT->=" ("" "" "01A0F0") "~mTAN+" ("" "" "0720F0") "~mTANH+" ("" "" "0750F0") "~m[]CHS*" ("" "" "0350F0") "~m[]CHS/" ("" "" "0360F0") "~m[]CHSL" ("" "" "0370F0") "~m[]INVE" ("" "" "0390F0") "~m[]INV^" ("" "" "0380F0") "~m]->*/" ("" "" "05C0F0") "~m]->+-" ("" "" "05B0F0") "~NSKey3.2" ("???" "The unshifted key 3.2." "00D0A1") "~NSKey3.3" ("???" "The unshifted key 3.3." "00E0A1") "~NSKey4.1" ("???" "The unshifted key 4.1." "0120A1") "~NSKey4.2" ("???" "The unshifted key 4.2." "0130A1") "~NSKey4.3" ("???" "The unshifted key 4.3." "0140A1") "~NSKey4.4" ("???" "The unshifted key 4.4." "0150A1") "~NSKey4.5" ("???" "The unshifted key 4.5." "0160A1") "~NSKey4.6" ("???" "The unshifted key 4.6." "0170A1") "~NSKey5.2" ("???" "The unshifted key 5.2." "0190A1") "~NSKey5.3" ("???" "The unshifted key 5.3." "01A0A1") "~NSKey5.4" ("???" "The unshifted key 5.4." "01B0A1") "~NSKey5.5" ("???" "The unshifted key 5.5." "01C0A1") "~NSKey6.1" ("???" "The unshifted key 6.1." "01D0A1") "~NSKey6.2" ("???" "The unshifted key 6.2." "01E0A1") "~NSKey6.3" ("???" "The unshifted key 6.3." "01F0A1") "~NSKey6.4" ("???" "The unshifted key 6.4." "0200A1") "~NSKey6.5" ("???" "The unshifted key 6.5." "0210A1") "~NSKey7.1" ("???" "The unshifted key 7.1." "0220A1") "~NSKey7.2" ("???" "The unshifted key 7.2." "0230A1") "~NSKey7.3" ("???" "The unshifted key 7.3." "0240A1") "~NSKey7.4" ("???" "The unshifted key 7.4." "0250A1") "~NSKey7.5" ("???" "The unshifted key 7.5." "0260A1") "~NSKey8.1" ("???" "The unshifted key 8.1." "0270A1") "~NSKey8.2" ("???" "The unshifted key 8.2." "0280A1") "~NSKey8.3" ("???" "The unshifted key 8.3." "0290A1") "~NSKey8.4" ("???" "The unshifted key 8.4." "02A0A1") "~NSKey8.5" ("???" "The unshifted key 8.5." "02B0A1") "~NSKey9.2" ("???" "The unshifted key 9.2." "02D0A1") "~NSKey9.3" ("???" "The unshifted key 9.3." "02E0A1") "~NSKey9.4" ("???" "The unshifted key 9.4." "02F0A1") "~NSKey9.5" ("???" "The unshifted key 9.5." "0300A1") "~LSKey1.1" ("???" "The shifted key 1.1." "0000A2") "~LSKey1.2" ("???" "The shifted key 1.2." "0010A2") "~LSKey1.3" ("???" "The shifted key 1.3." "0020A2") "~LSKey1.4" ("???" "The shifted key 1.4." "0030A2") "~LSKey1.5" ("???" "The shifted key 1.5." "0040A2") "~LSKey1.6" ("???" "The shifted key 1.6." "0050A2") "~LSKey2.1" ("???" "The shifted key 2.1." "0060A2") "~LSKey2.2" ("???" "The shifted key 2.2." "0070A2") "~LSKey2.3" ("???" "The shifted key 2.3." "0080A2") "~LSKey3.1" ("???" "The shifted key 3.1." "00C0A2") "~LSKey3.2" ("???" "The shifted key 3.2." "00D0A2") "~LSKey3.3" ("???" "The shifted key 3.3." "00E0A2") "~LSKey4.1" ("???" "The shifted key 4.1." "0120A2") "~LSKey4.2" ("???" "The shifted key 4.2." "0130A2") "~LSKey4.3" ("???" "The shifted key 4.3." "0140A2") "~LSKey4.4" ("???" "The shifted key 4.4." "0150A2") "~LSKey4.5" ("???" "The shifted key 4.5." "0160A2") "~LSKey4.6" ("???" "The shifted key 4.6." "0170A2") "~LSKey5.1" ("???" "The shifted key 5.1." "0180A2") "~LSKey5.2" ("???" "The shifted key 5.2." "0190A2") "~LSKey5.4" ("???" "The shifted key 5.4." "01B0A2") "~LSKey5.5" ("???" "The shifted key 5.5." "01C0A2") "~LSKey6.1" ("???" "The shifted key 6.1." "01D0A2") "~LSKey6.2" ("???" "The shifted key 6.2." "01E0A2") "~LSKey6.3" ("???" "The shifted key 6.3." "01F0A2") "~LSKey6.4" ("???" "The shifted key 6.4." "0200A2") "~LSKey6.5" ("???" "The shifted key 6.5." "0210A2") "~LSKey7.1" ("???" "The shifted key 7.1." "0220A2") "~LSKey7.2" ("???" "The shifted key 7.2." "0230A2") "~LSKey7.3" ("???" "The shifted key 7.3." "0240A2") "~LSKey7.4" ("???" "The shifted key 7.4." "0250A2") "~LSKey7.5" ("???" "The shifted key 7.5." "0260A2") "~LSKey8.1" ("???" "The shifted key 8.1." "0270A2") "~LSKey8.2" ("???" "The shifted key 8.2." "0280A2") "~LSKey8.3" ("???" "The shifted key 8.3." "0290A2") "~LSKey8.4" ("???" "The shifted key 8.4." "02A0A2") "~LSKey8.5" ("???" "The shifted key 8.5." "02B0A2") "~LSKey9.1" ("???" "The shifted key 9.1." "02C0A2") "~LSKey9.2" ("???" "The shifted key 9.2." "02D0A2") "~LSKey9.3" ("???" "The shifted key 9.3." "02E0A2") "~LSKey9.4" ("???" "The shifted key 9.4." "02F0A2") "~LSKey9.5" ("???" "The shifted key 9.5." "0300A2") "~ANSKey1.1" ("???" "The key 1.1 in alpha mode." "0000A4") "~ANSKey1.2" ("???" "The key 1.2 in alpha mode." "0010A4") "~ANSKey1.3" ("???" "The key 1.3 in alpha mode." "0020A4") "~ANSKey1.4" ("???" "The key 1.4 in alpha mode." "0030A4") "~ANSKey1.5" ("???" "The key 1.5 in alpha mode." "0040A4") "~ANSKey1.6" ("???" "The key 1.6 in alpha mode." "0050A4") "~ANSKey2.1" ("???" "The key 2.1 in alpha mode." "0060A4") "~ANSKey2.2" ("???" "The key 2.2 in alpha mode." "0070A4") "~ANSKey2.3" ("???" "The key 2.3 in alpha mode." "0080A4") "~ANSKey2.4" ("???" "The key 2.4 in alpha mode." "0090A4") "~ANSKey2.5" ("???" "The key 2.5 in alpha mode." "00A0A4") "~ANSKey2.6" ("???" "The key 2.6 in alpha mode." "00B0A4") "~ANSKey3.1" ("???" "The key 3.1 in alpha mode." "00C0A4") "~ANSKey3.2" ("???" "The key 3.2 in alpha mode." "00D0A4") "~ANSKey3.3" ("???" "The key 3.3 in alpha mode." "00E0A4") "~ANSKey3.4" ("???" "The key 3.4 in alpha mode." "00F0A4") "~ANSKey3.5" ("???" "The key 3.5 in alpha mode." "0100A4") "~ANSKey3.6" ("???" "The key 3.6 in alpha mode." "0110A4") "~ANSKey4.1" ("???" "The key 4.1 in alpha mode." "0120A4") "~ANSKey4.2" ("???" "The key 4.2 in alpha mode." "0130A4") "~ANSKey4.3" ("???" "The key 4.3 in alpha mode." "0140A4") "~ANSKey4.4" ("???" "The key 4.4 in alpha mode." "0150A4") "~ANSKey4.5" ("???" "The key 4.5 in alpha mode." "0160A4") "~ANSKey4.6" ("???" "The key 4.6 in alpha mode." "0170A4") "~ANSKey5.1" ("???" "The key 5.1 in alpha mode." "0180A4") "~ANSKey5.2" ("???" "The key 5.2 in alpha mode." "0190A4") "~ANSKey5.3" ("???" "The key 5.3 in alpha mode." "01A0A4") "~ANSKey5.4" ("???" "The key 5.4 in alpha mode." "01B0A4") "~ANSKey5.5" ("???" "The key 5.5 in alpha mode." "01C0A4") "~ANSKey6.1" ("???" "The key 6.1 in alpha mode." "01D0A4") "~ANSKey6.2" ("???" "The key 6.2 in alpha mode." "01E0A4") "~ANSKey6.3" ("???" "The key 6.3 in alpha mode." "01F0A4") "~ANSKey6.4" ("???" "The key 6.4 in alpha mode." "0200A4") "~ANSKey6.5" ("???" "The key 6.5 in alpha mode." "0210A4") "~ANSKey7.1" ("???" "The key 7.1 in alpha mode." "0220A4") "~ANSKey7.2" ("???" "The key 7.2 in alpha mode." "0230A4") "~ANSKey7.3" ("???" "The key 7.3 in alpha mode." "0240A4") "~ANSKey7.4" ("???" "The key 7.4 in alpha mode." "0250A4") "~ANSKey7.5" ("???" "The key 7.5 in alpha mode." "0260A4") "~ANSKey8.1" ("???" "The key 8.1 in alpha mode." "0270A4") "~ANSKey8.2" ("???" "The key 8.2 in alpha mode." "0280A4") "~ANSKey8.3" ("???" "The key 8.3 in alpha mode." "0290A4") "~ANSKey8.4" ("???" "The key 8.4 in alpha mode." "02A0A4") "~ANSKey8.5" ("???" "The key 8.5 in alpha mode." "02B0A4") "~ANSKey9.1" ("???" "The key 9.1 in alpha mode." "02C0A4") "~ANSKey9.2" ("???" "The key 9.2 in alpha mode." "02D0A4") "~ANSKey9.3" ("???" "The key 9.3 in alpha mode." "02E0A4") "~ANSKey9.4" ("???" "The key 9.4 in alpha mode." "02F0A4") "~ANSKey9.5" ("???" "The key 9.5 in alpha mode." "0300A4") "~ALSKey1.1" ("???" "The shifted 1.1 key in alpha mode." "0000A5") "~ALSKey1.2" ("???" "The shifted 1.2 key in alpha mode." "0010A5") "~ALSKey1.3" ("???" "The shifted 1.3 key in alpha mode." "0020A5") "~ALSKey1.4" ("???" "The shifted 1.4 key in alpha mode." "0030A5") "~ALSKey1.5" ("???" "The shifted 1.5 key in alpha mode." "0040A5") "~ALSKey1.6" ("???" "The shifted 1.6 key in alpha mode." "0050A5") "~ALSKey2.1" ("???" "The shifted 2.1 key in alpha mode." "0060A5") "~ALSKey2.2" ("???" "The shifted 2.2 key in alpha mode." "0070A5") "~ALSKey2.3" ("???" "The shifted 2.3 key in alpha mode." "0080A5") "~ALSKey2.4" ("???" "The shifted 2.4 key in alpha mode." "0090A5") "~ALSKey2.5" ("???" "The shifted 2.5 key in alpha mode." "00A0A5") "~ALSKey2.6" ("???" "The shifted 2.6 key in alpha mode." "00B0A5") "~ALSKey4.6" ("???" "The shifted 4.6 key in alpha mode." "0170A5") "~ALSKey3.1" ("???" "The shifted 3.1 key in alpha mode." "00C0A5") "~ALSKey3.2" ("???" "The shifted 3.2 key in alpha mode." "00D0A5") "~ALSKey3.3" ("???" "The shifted 3.3 key in alpha mode." "00E0A5") "~ALSKey3.4" ("???" "The shifted 3.4 key in alpha mode." "00F0A5") "~ALSKey3.5" ("???" "The shifted 3.5 key in alpha mode." "0100A5") "~ALSKey3.6" ("???" "The shifted 3.6 key in alpha mode." "0110A5") "~ALSKey4.1" ("???" "The shifted 4.1 key in alpha mode." "0120A5") "~ALSKey4.2" ("???" "The shifted 4.2 key in alpha mode." "0130A5") "~ALSKey4.3" ("???" "The shifted 4.3 key in alpha mode." "0140A5") "~ALSKey4.4" ("???" "The shifted 4.4 key in alpha mode." "0150A5") "~ALSKey4.5" ("???" "The shifted 4.5 key in alpha mode." "0160A5") "~ALSKey5.1" ("???" "The shifted 5.1 key in alpha mode." "0180A5") "~ALSKey5.2" ("???" "The shifted 5.2 key in alpha mode." "0190A5") "~ALSKey5.3" ("???" "The shifted 5.3 key in alpha mode." "01A0A5") "~ALSKey5.4" ("???" "The shifted 5.4 key in alpha mode." "01B0A5") "~ALSKey5.5" ("???" "The shifted 5.5 key in alpha mode." "01C0A5") "~ALSKey6.1" ("???" "The shifted 6.1 key in alpha mode." "01D0A5") "~ALSKey6.2" ("???" "The shifted 6.2 key in alpha mode." "01E0A5") "~ALSKey6.3" ("???" "The shifted 6.3 key in alpha mode." "01F0A5") "~ALSKey6.4" ("???" "The shifted 6.4 key in alpha mode." "0200A5") "~ALSKey6.5" ("???" "The shifted 6.5 key in alpha mode." "0210A5") "~ALSKey7.1" ("???" "The shifted 7.1 key in alpha mode." "0220A5") "~ALSKey7.2" ("???" "The shifted 7.2 key in alpha mode." "0230A5") "~ALSKey7.3" ("???" "The shifted 7.3 key in alpha mode." "0240A5") "~ALSKey7.4" ("???" "The shifted 7.4 key in alpha mode." "0250A5") "~ALSKey7.5" ("???" "The shifted 7.5 key in alpha mode." "0260A5") "~ALSKey8.1" ("???" "The shifted 8.1 key in alpha mode." "0270A5") "~ALSKey8.2" ("???" "The shifted 8.2 key in alpha mode." "0280A5") "~ALSKey8.3" ("???" "The shifted 8.3 key in alpha mode." "0290A5") "~ALSKey8.4" ("???" "The shifted 8.4 key in alpha mode." "02A0A5") "~ALSKey8.5" ("???" "The shifted 8.5 key in alpha mode." "02B0A5") "~ALSKey9.1" ("???" "The shifted 9.1 key in alpha mode." "02C0A5") "~ALSKey9.2" ("???" "The shifted 9.2 key in alpha mode." "02D0A5") "~ALSKey9.3" ("???" "The shifted 9.3 key in alpha mode." "02E0A5") "~ALSKey9.4" ("???" "The shifted 9.4 key in alpha mode." "02F0A5") "~ALSKey9.5" ("???" "The shifted 9.5 key in alpha mode." "0300A5") "~MissingKey1" ("" "" "0090A1") "~MissingKey2" ("" "" "00B0A1") "~MissingKey3" ("" "" "0090A2") "~MissingKey4" ("" "" "00B0A2") "INT_00" ("" "" "81937") "INT_01" ("" "" "8193C") "INT_02" ("" "" "81941") "INT_03" ("" "" "81946") "INT_04" ("" "" "8194B") "INT_05" ("" "" "81950") "INT_06" ("" "" "81955") "INT_07" ("" "" "8195A") "INT_08" ("" "" "8195F") "INT_09" ("" "" "81964") "INT_0A" ("" "" "81969") "INT_0B" ("" "" "8196E") "INT_0C" ("" "" "81973") "INT_0D" ("" "" "81978") "INT_0E" ("" "" "8197D") "INT_0F" ("" "" "81982") "LastBut0" ("" "" "81DB0") "LastBut1" ("" "" "81DB5") "LastBut2" ("" "" "81DBA") "LastBut3" ("" "" "81DBF") "LastBut4" ("" "" "81DC4") "LastBut5" ("" "" "81DC9") "LastBut6" ("" "" "81DCE") "LastBut7" ("" "" "81DD3") "LastBut8" ("" "" "81DD8") "LastBut9" ("" "" "81DDD") "LastBut10" ("" "" "81DE2") "LastBut11" ("" "" "81DE7") "LastBut12" ("" "" "81DEC") "LastBut13" ("" "" "81DF1") "LastBut14" ("" "" "81DF6") "LastBut15" ("" "" "81DFB") "LastBut16" ("" "" "81E00") "LastBut17" ("" "" "81E05") "LastBut18" ("" "" "81E0A") "LastBut19" ("" "" "81E0F") "LastBut20" ("" "" "81E14") "LastBut21" ("" "" "81E19") "LastBut22" ("" "" "81E1E") "LastBut23" ("" "" "81E23") "LastBut24" ("" "" "81E28") "LastBut25" ("" "" "81E2D") "LastBut26" ("" "" "81E32") "LastBut27" ("" "" "81E37") "LastBut28" ("" "" "81E3C") "LastBut29" ("" "" "81E41") "LastBut30" ("" "" "81E46") "LastBut31" ("" "" "81E4B") "LastBut32" ("" "" "81E50") "~xAngle" ("" "" "0620F2") "~xAns" ("" "" "0590F2") "~xArea" ("" "" "0920F2") "~xAxes" ("" "" "0630F2") "~xConnect" ("" "" "0650F2") "~xCoord" ("" "" "06C0F2") "~xDate" ("" "" "0610F2") "~xDigits" ("" "" "0810F2") "~xExtremum" ("" "" "0910F2") "~xFIT" ("" "" "05A0F2") "xFmList" ("" "" "D995F") "xFmMat" ("" "" "D998B") "~xFormat" ("" "" "0800F2") "~xGrid" ("" "" "0640F2") "~xHAngle" ("" "" "05B0F2") "~xHDigits" ("" "" "05D0F2") "~xHFormat" ("" "" "05C0F2") "~xHTick" ("" "" "0740F2") "~xHighRes" ("" "" "0660F2") "~xHisWidth" ("" "" "09F0F2") "~xHmax" ("" "" "0A10F2") "~xHmin" ("" "" "0A00F2") "~xHzoom" ("" "" "0760F2") "~xIerr" ("" "" "05F0F2") "~xIndep" ("" "" "0710F2") "~xInvCursor" ("" "" "0690F2") "~xIsect" ("" "" "0900F2") "~xLabels" ("" "" "06A0F2") "~xMAXS" ("" "" "0230F2") "~xMEANS" ("" "" "01B0F2") "~xMEANX" ("" "" "0270F2") "~xMEANY" ("" "" "02A0F2") "~xMEDIAN" ("" "" "0240F2") "~xMINS" ("" "" "0220F2") "~xNS" ("" "" "0210F2") "~xNmax" ("" "" "09B0F2") "~xNmin" ("" "" "09A0F2") "~xNoteText" ("" "" "0820F2") "~xNumCol" ("" "" "07E0F2") "~xNumFont" ("" "" "07F0F2") "~xNumIndep" ("" "" "07B0F2") "~xNumRow" ("" "" "07D0F2") "~xNumStart" ("" "" "0780F2") "~xNumStep" ("" "" "0790F2") "~xNumType" ("" "" "07A0F2") "~xNumZoom" ("" "" "07C0F2") "~xPage" ("" "" "0830F2") "~xPageNum" ("" "" "0840F2") "~xRELERR" ("" "" "0300F2") "~xRadixMark" ("" "" "05E0F2") "~xRecenter" ("" "" "0680F2") "~xRoot" ("" "" "08F0F2") "~xSSDEV" ("" "" "01F0F2") "~xSVARS" ("" "" "01D0F2") "~xSX" ("" "" "0280F2") "~xSX2" ("" "" "0290F2") "~xSXY" ("" "" "02D0F2") "~xSY" ("" "" "02B0F2") "~xSY2" ("" "" "02C0F2") "~xSeqPlot" ("" "" "09C0F2") "~xSimult" ("" "" "0670F2") "~xSlope" ("" "" "0930F2") "~xStatMode" ("" "" "09D0F2") "~xStatPlot" ("" "" "09E0F2") "~xTOTS" ("" "" "01C0F2") "~xTStep" ("" "" "0960F2") "~xThetaMax" ("" "" "0980F2") "~xThetaMin" ("" "" "0970F2") "~xThetaStep" ("" "" "0990F2") "~xTime" ("" "" "0600F2") "~xTmax" ("" "" "0950F2") "~xTmin" ("" "" "0940F2") "~xTracing" ("" "" "06B0F2") "~xVTick" ("" "" "0750F2") "~xVzoom" ("" "" "0770F2") "~xXcross" ("" "" "0720F2") "~xXmax" ("" "" "06E0F2") "~xXmin" ("" "" "06D0F2") "~xYcross" ("" "" "0730F2") "~xYmax" ("" "" "0700F2") "~xYmin" ("" "" "06F0F2") "~x>COL" ("" "" "0150AB") "~x>DIAG" ("" "" "0170AB") "~x>DISPLAY" ("" "" "0B7002") "~x>PLOT" ("" "" "0B9002") "~x>ROW" ("" "" "0130AB") "~xACOT" ("" "" "0570AB") "~xACSC" ("" "" "0580AB") "~xASEC" ("" "" "0590AB") "~xBLANKGROB" ("" "" "0BA002") "~xBOXW" ("" "" "0470AB") "~xCHECK" ("" "" "03B701") "~xCOBWEB" ("" "" "0450AB") "~xCOL>" ("" "" "0160AB") "~xCONCAT" ("" "" "0370AB") "~xCOT" ("" "" "0540AB") "~xCSC" ("" "" "0560AB") "~xCSWP" ("" "" "01E0AB") "~xCUBICFIT" ("" "" "04D0AB") "~xDFLTNOTE" ("" "" "0280F1") "~xDFLTPICT" ("" "" "0290F1") "~xDIAG>" ("" "" "0180AB") "~xDISPLAY>" ("" "" "0B6002") "~xERASEA" ("" "" "0A6002") "~xFRACTION" ("" "" "0430AB") "~xFUNCSYMB" ("" "" "0210F1") "~xFUNCTAB" ("" "" "0080F1") "~xHIST" ("" "" "0460AB") "~xLOGISFIT" ("" "" "04E0AB") "~xMKMAT" ("" "" "0530AB") "~xPARAMSYMB" ("" "" "0230F1") "~xPARAMTAB" ("" "" "00A0F1") "~xPLOT>" ("" "" "0B8002") "~xPOLARSYMB" ("" "" "0220F1") "~xPOLARTAB" ("" "" "0090F1") "~xPOLYFORM" ("" "" "05B0AB") "~xPOWERFIT" ("" "" "04B0AB") "~xPoly" ("" "" "05C0AB") "~xQUADFIT" ("" "" "04C0AB") "~xREADNOTE" ("" "" "0320F1") "~xREADPICT" ("" "" "0330F1") "~xRECURSE" ("" "" "05A0AB") "~xROW>" ("" "" "0140AB") "~xSEC" ("" "" "0550AB") "~xSEQSYMB" ("" "" "0240F1") "~xSEQTAB" ("" "" "00B0F1") "~xSOLVESYMB" ("" "" "0270F1") "~xSOLVETAB" ("" "" "00E0F1") "~xSTAIRSTEP" ("" "" "0440AB") "~xSTAT2SYMB" ("" "" "0260F1") "~xSTAT2TAB" ("" "" "00D0F1") "~xSTATSYMB" ("" "" "0250F1") "~xSTATTAB" ("" "" "00C0F1") "~xStat1Var" ("" "" "0500AB") "~xStat2Var" ("" "" "0510AB") "~xUNCHECK" ("" "" "03C701") "~xUSERFIT" ("" "" "04F0AB") "~xUndefined" ("" "" "0340F1") "~x\\85LIST" ("" "" "0330AB") "~x\\9BLIST" ("" "" "02F0AB") "~x\\9CLIST" ("" "" "0350AB") "~xx>DISPLAY" ("" "" "014701") "~xx>GROB" ("" "" "017701") "~xx>PLOT" ("" "" "016701") "~xxARC" ("" "" "018701") "~xxBEEP" ("" "" "003701") "~xxBOX" ("" "" "00F701") "~xxBREAK" ("" "" "01D701") "~xxCHOOSE" ("" "" "03F701") "~xxCOL+" ("" "" "023701") "~xxCOL-" ("" "" "022701") "~xxCSWP" ("" "" "025701") "~xxDEG" ("" "" "03C0AB") "~xxDEMO" ("" "" "038701") "~xxDISP" ("" "" "002701") "~xxDISPLAY>" ("" "" "013701") "~xxDO1VSTATS" ("" "" "031701") "~xxDO2VSTATS" ("" "" "034701") "~xxERASE" ("" "" "009701") "~xxERASEPLOT" ("" "" "00A701") "~xxFREEZE" ("" "" "01F701") "~xxGETKEY" ("" "" "040701") "~xxGOR" ("" "" "010701") "~xxGRAD" ("" "" "03E0AB") "~xxGROBNOT" ("" "" "012701") "~xxGXOR" ("" "" "011701") "~xxHELP" ("" "" "041701") "~xxINPUT" ("" "" "01C701") "~xxITERATE" ("" "" "0520AB") "~xxLIBEVAL" ("" "" "02D701") "~xxLINE" ("" "" "00D701") "~xxMATEDIT" ("" "" "02A701") "~xxMKGROB" ("" "" "02B701") "~xxMSGBOX" ("" "" "03E701") "~xxPIXOFF" ("" "" "00C701") "~xxPIXON" ("" "" "00B701") "~xxPLOT>" ("" "" "015701") "~xxPOS" ("" "" "086002") "~xxPRDISPLAY" ("" "" "01B701") "~xxPRSTC" ("" "" "019701") "~xxPRVAR" ("" "" "01A701") "~xxRAD" ("" "" "03D0AB") "~xxRANM" ("" "" "036701") "~xxRCI" ("" "" "026701") "~xxRCIJ" ("" "" "027701") "~xxRDM" ("" "" "008701") "~xxRDZ" ("" "" "005701") "~xxREPL" ("" "" "007701") "~xxROW+" ("" "" "021701") "~xxROW-" ("" "" "020701") "~xxRSWP" ("" "" "024701") "~xxRULES" ("" "" "039701") "~xxRUNPGM" ("" "" "029701") "~xxSELECT" ("" "" "035701") "~xxSETDEPEND" ("" "" "033701") "~xxSETFREQ" ("" "" "030701") "~xxSETINDEP" ("" "" "032701") "~xxSETSAMPLE" ("" "" "02F701") "~xxSETVIEWS" ("" "" "03A701") "~xxSIZE" ("" "" "085002") "~xxSTOP" ("" "" "01E701") "~xxSUB" ("" "" "006701") "~xxSYSEVAL" ("" "" "02E701") "~xxTLINE" ("" "" "00E701") "~xxTO" ("" "" "028701") "~xxTSTR" ("" "" "001701") "~xxVERSION" ("" "" "037701") "~xxWAIT" ("" "" "004701") "~xxWSLOG" ("" "" "000701") "~xxZEROGROB" ("" "" "02C701") "!>ARRAY" ("" "" "81CE8") "#+#2-" ("" "" "BA700") "#=Lookup" ("" "" "829E5") "#DIV" ("" "" "818F1") "#Error:" ("" "" "8042E") "#MOD" ("" "" "818F6") "#NEG" ("" "" "818EC") "#NOT" ("" "" "813A6") "#ODD" ("" "" "81905") "#OR" ("" "" "813AB") "#ObTypeBase" ("" "" "803E8") "#Warning:NL" ("" "" "80424") "#XOR" ("" "" "813B0") "%%-1" ("" "" "A4CEF") "&&" ("" "" "8307F") "1GETLAM#0=" ("" "" "84A2E") "1GETapndcpl" ("" "" "82E59") "2CDispList" ("" "" "8253F") "2CKeyOK" ("" "" "825DF") "2Col?Case2Col" ("" "" "82571") "2ColChoose" ("" "" "82535") "2STR" ("" "" "80046") "?AdjFocusPos" ("" "" "826ED") "?DispMoreU/D" ("" "" "82639") "?FixFieldKeys" ("" "" "829BD") "?GetFObTypes" ("" "" "8289B") "?NoTaskSwDef" ("" "" "82BF7") "ABSCOERCE" ("" "" "81CAC") "ARRYCMP" ("" "" "800DC") "ARRYLIST" ("" "" "800FA") "ARRYSYM" ("" "" "8012C") "AddEq$" ("" "" "82143") "AlDrawMenu" ("" "" "8214D") "AllowPRLCD" ("" "" "81A7C") "Angle@" ("" "" "BD42C") "AngleField" ("" "" "832C3") "AngleLabel" ("" "" "832B9") "AnyDABad?" ("" "" "8211B") "ApName$>Id" ("" "" "833BD") "ApNameId>$" ("" "" "833B3") "ApNameId>Id" ("" "" "8339F") "AppDir+Offs" ("" "" "81DA6") "Area@" ("" "" "BDF75") "AttnPOSCOMP" ("" "" "81EB4") "BAK>HOME" ("" "" "81711") "BREAK" ("" "" "81D79") "BTRow1@" ("" "" "BD8BE") "BadIfEdit" ("" "" "3949A") "BinLookup" ("" "" "8199B") "BlankClient" ("" "" "8291D") "BlankHelp" ("" "" "82927") "Bubble" ("" "" "81E5A") "CAND" ("" "" "81987") "CLRTOPICLAM" ("" "" "730F5") "COMPROMID" ("" "" "81C1B") "COR" ("" "" "8198C") "CalcDir+Offs" ("" "" "81DA1") "CatNot" ("" "" "82DFF") "CatPgm" ("" "" "82DF5") "CatThisCxt" ("" "" "82DEB") "Choose&DoTask" ("" "" "829C7") "ChooseVEntry" ("" "" "833EF") "ChooseVExit" ("" "" "833F9") "ChooseViewUI" ("" "" "83403") "Contxt+Offs" ("" "" "81DAB") "CopyRegCOb" ("" "" "81B30") "DOINDIR" ("" "" "8123D") "DOLCD>g0" ("" "" "821E3") "DOROOT" ("" "" "82FD5") "DOSHOWIT1" ("" "" "821ED") "DOSHOWIT1C" ("" "" "821F7") "DOWAIT" ("" "" "82C01") "DecompNoNL" ("" "" "8287D") "DecompOb" ("" "" "82869") "DefauPtXit" ("" "" "82189") "DefauTrcInit" ("" "" "82193") "DefaultHint" ("" "" "7B7D8") "DemoFrames" ("" "" "E03A1") "Digits@" ("" "" "BD940") "DispMsgBox" ("" "" "9165A") "DispXFunc" ("" "" "8219D") "DispYFunc" ("" "" "821A7") "DoAlert&Query" ("" "" "82909") "DoApletLib" ("" "" "833C7") "DoAs2Col" ("" "" "8257B") "DoCApNoteV" ("" "" "83313") "DoCApPlotSV" ("" "" "832F5") "DoCApPlotV" ("" "" "832D7") "DoCApSketchV" ("" "" "8331D") "DoCApSymbSV" ("" "" "83309") "DoCApSymbV" ("" "" "832EB") "DoCApTableSV" ("" "" "832FF") "DoCApTableV" ("" "" "832E1") "DoCurrAplet" ("" "" "832CD") "DoDemo" ("" "" "821C5") "DoDispBorder" ("" "" "825E9") "DoDispField" ("" "" "82783") "DoDispList" ("" "" "825FD") "DoDispPrompt" ("" "" "825F3") "DoEditLCancel" ("" "" "8250D") "DoEditLOK" ("" "" "82517") "DoEditLine" ("" "" "824F9") "DoGetObFrSto" ("" "" "82AFD") "DoIOErrAlert" ("" "" "82B2F") "DoIOStatusBox" ("" "" "82B25") "DoInApLbCxt" ("" "" "82E09") "DoInNotCxt" ("" "" "82E1D") "DoInPgmCxt" ("" "" "82E13") "DoKeyCheck" ("" "" "827E7") "DoKeyChoos/Ck" ("" "" "827D3") "DoKeyChoose" ("" "" "827DD") "DoMatEdit" ("" "" "828C3") "DoQueryBox" ("" "" "828FF") "DoRecv/GetOb" ("id -->" "Receive an object. FIXME: Stack diagram not
  651. confirmed. " "82AE9") "DoRecvObFrEls" ("" "" "82AF3") "DoRestCovWin" ("" "" "82611") "DoResultTab" ("" "" "829F9") "DoRomPtrKey" ("" "" "83039") "DoSaveCovWin" ("" "" "82607") "DoSendOb" ("ob -->" "Send an object. FIXME: Stack diagram not
  652. confirmed. " "82AAD") "DoSendObToCDi" ("" "" "82ACB") "DoSendObToDir" ("" "" "82AD5") "DoSendObToSto" ("" "" "82AC1") "DoSpecAlert" ("" "" "82913") "Docrunchc" ("" "" "67B3E") "Done?CkNoNul:" ("" "" "829DB") "DropJunk" ("" "" "25DF8") "DummyMenuErr" ("" "" "7D3ED") "ElsieGet" ("" "" "82B39") "ElsiePkt" ("" "" "82B4D") "ElsieSend" ("" "" "82B43") "EmptyList?" ("" "" "82689") "EmptyRList?" ("" "" "82585") "EnsureMenuOff" ("" "" "7D46A") "EnterGraphView" ("" "" "834FD") "EnterTextView" ("" "" "834F3") "EraseGraph" ("" "" "2B7F5") "EraseGrob" ("" "" "82201") "Err#Chr00" ("" "" "803D4") "EvalPart1" ("" "" "82959") "EvalPart2" ("" "" "82963") "EvalPart3" ("" "" "8296D") "Extremum@" ("" "" "BDFBB") "FAreaBad?" ("" "" "82981") "FOURpsh" ("" "" "82E63") "FSTFLOATROM#" ("" "" "803CA") "FTypeCheck?" ("" "" "82AA3") "FTypeFixedL?" ("" "" "82A99") "FTypeList?" ("" "" "82A8F") "FTypeText?" ("" "" "82A85") "FUNCPLOT" ("" "" "82215") "FitLeftSmF" ("" "" "82837") "FitRightSmF" ("" "" "82841") "Format@" ("" "" "BD8FF") "FuncPLoop" ("" "" "8220B") "FuncPSetup1" ("" "" "83327") "FuncSplitViewers" ("" "" "83331") "GDISP?" ("" "" "81ABD") "GROBBUFF!" ("" "" "8225B") "GROBVIEW" ("" "" "8226F") "GetBVars.1" ("" "" "82DD7") "GetChoiceFmt" ("" "" "828AF") "GetChoiceList" ("" "" "828A5") "GetDASpecFlag" ("" "" "82675") "GetElNoRomp" ("" "" "8302F") "GetLastNotThis" ("" "" "83395") "GetNextFId" ("" "" "82855") "GetObType$" ("" "" "82B1B") "GetObTypePr$" ("" "" "82B11") "GetPart1" ("" "" "8293B") "GetPart2" ("" "" "82945") "GetPart3" ("" "" "8294F") "GetPrevFId" ("" "" "8285F") "GraphTableUI" ("" "" "6E8C2") "GraphZoomUI" ("" "" "6E908") "GtoField" ("" "" "82931") "HOME>BAK" ("" "" "82DC3") "HTick@" ("" "" "BD328") "HZoom@" ("" "" "BD3AA") "HisWidth@" ("" "" "C0383") "Hmax@" ("" "" "C040F") "Hmin@" ("" "" "C03C9") "IFECheck" ("" "" "827AB") "IFEChoosByChr" ("" "" "827BF") "IFEChooseNext" ("" "" "827B5") "IFEDispClient" ("" "" "8275B") "IFEDispHelp" ("" "" "827A1") "IFEDispLabel" ("" "" "8276F") "IFEDispTitle" ("" "" "82765") "IFEUnShowSel" ("" "" "8278D") "IFEdLineMenu" ("" "" "82751") "IFMenu" ("" "" "82747") "Id>ApNameId" ("" "" "833A9") "InAplet?" ("" "" "83467") "InApletF?" ("" "" "81D97") "Init2ColMets" ("" "" "82567") "InitIndep" ("" "" "82279") "InitListMets" ("" "" "8255D") "Init_window" ("" "" "82283") "InpFormVEntry" ("" "" "833DB") "InpFormVExit" ("" "" "833E5") "InpFormViewUI" ("" "" "833D1") "InvertField" ("" "" "82797") "IsIFMenu?" ("" "" "8282D") "IsNullField?" ("" "" "82891") "IsTaskSwKey?" ("" "" "82C51") "Isect@" ("" "" "BDF2F") "KeyFace" ("" "" "82977") "LASTBUTN" ("" "" "81E55") "LEDispBorder" ("" "" "8269D") "LESetIDecomp" ("" "" "826CF") "LESetItem" ("" "" "826C5") "LESetRowWidth" ("" "" "826D9") "LF$" ("" "" "80AF4") "LHighlight" ("" "" "82625") "LSTBIMACROM#" ("" "" "80528") "LUnHighlight" ("" "" "8262F") "LastEq@" ("" "" "BD530") "LastIndep@" ("" "" "BD4EF") "LastX@" ("" "" "BD46D") "LastY@" ("" "" "BD4AE") "LeaveGraphView" ("" "" "83511") "LeaveTextView" ("" "" "83507") "ListBar" ("" "" "826E3") "ListNames" ("" "" "81F90") "ListOfEqs@" ("" "" "BE001") "M+prep" ("" "" "8315B") "Make1stAplet" ("" "" "8338B") "MakeNoteVTtl" ("" "" "83449") "MakeNumSVTtl" ("" "" "8342B") "MakeNumVTtl" ("" "" "83421") "MakePlotSVTtl" ("" "" "83417") "MakePlotVTtl" ("" "" "8340D") "MakeSketVTtl" ("" "" "83453") "MakeSymbSVTtl" ("" "" "8343F") "MakeSymbVTtl" ("" "" "83435") "MakeTitleBar" ("" "" "829B3") "MakeViewTitle" ("" "" "8345D") "MemStoAns" ("" "" "82D37") "MiniVar" ("" "" "7D42E") "MoreDown?" ("" "" "8264D") "MoreU/D?" ("" "" "8261B") "MoreUp?" ("" "" "82643") "NULLargcase" ("" "" "81D33") "NUMEVAL1" ("" "" "81FC7") "NextApOfType" ("" "" "83381") "NextTextLine" ("" "" "828EB") "NotAndbitmap" ("" "" "818DD") "OB>BAK" ("" "" "82DCD") "OVEREQcase" ("" "" "81518") "Orbitmap" ("" "" "818D3") "POLSetUIExt" ("" "" "82CBF") "PORT0ADDR" ("" "" "8171B") "PageDnNGrob" ("" "" "421AF") "PageDnYGrob" ("" "" "4216B") "PageUpNGrob" ("" "" "42127") "PageUpYGrob" ("" "" "420E3") "ParseExpr" ("" "" "3D3F6") "PickedEqs@" ("" "" "822DD") "PlaceFVals" ("" "" "829D1") "Plot2Flg@" ("" "" "BD5B2") "PlotCKSUM@" ("" "" "BD5F3") "PlotFlag@" ("" "" "BD571") "PlotOvViewUI" ("" "" "83237") "PlotViewUI" ("" "" "83219") "Port0Ids" ("" "" "82D41") "PrepCurrAplet" ("" "" "8333B") "PrepEdLKeyOb" ("" "" "82521") "PrintHist" ("" "" "82B6B") "PrintLcd" ("" "" "82B89") "PrintVar" ("" "" "82B75") "PrintVarOb" ("" "" "82B7F") "PurgeAplet" ("" "" "83359") "PurgeApletOb" ("" "" "83363") "Put3x5" ("" "" "818E2") "Put5x7" ("" "" "818E7") "PutDASpecFlag" ("" "" "8267F") "Putbitmap" ("" "" "818CE") "REALLISTREAL" ("" "" "8049C") "REALSTRID" ("" "" "8044C") "REDIMPREP" ("" "" "81E82") "RPICK" ("" "" "81B2B") "RclAplet" ("" "" "83377") "RclAplet?Err" ("" "" "8336D") "RclFieldVal" ("" "" "82887") "RclResetVal" ("" "" "828B9") "ReCalcFlag@" ("" "" "C0527") "Replace_List" ("" "" "831FB") "Root@" ("" "" "BDEA3") "SEFINISH" ("" "" "82B61") "SETPLOTENV" ("" "" "62D36") "STArryList" ("" "" "99EF3") "STBigKeyDef" ("" "" "9C0B9") "STDoMedium" ("" "" "9A7B8") "STDoSmall" ("" "" "9A03D") "STEditKeyDef" ("" "" "9BFA8") "STErrorGrob" ("" "" "97C29") "STInitCols" ("" "" "99E30") "STInsKeyDef" ("" "" "9BFD8") "STJump" ("" "" "9B5E8") "STJumpN" ("" "" "9B6BA") "STO_tTYPE" ("" "" "BD0B7") "STSortCol" ("" "" "9C4B2") "STStatsKeyDef" ("" "" "9C1FA") "STTableDisp" ("" "" "9A024") "STTableExit" ("" "" "99FFC") "STTableHKeys" ("" "" "9AEBB") "STTableInit" ("" "" "99D95") "STypeAnyChr" ("" "" "80F74") "STypeDirChr" ("" "" "80F2E") "STypeLibChr" ("" "" "80F5F") "STypeLstChr" ("" "" "80F51") "STypeMatChr" ("" "" "80F58") "STypeNteChr" ("" "" "80F3C") "STypePgmChr" ("" "" "80F43") "STypeTgtChr" ("" "" "80F66") "STypeVarChr" ("" "" "80F4A") "STypeVecChr" ("" "" "80F6D") "STypeZapChr" ("" "" "80F35") "SV_?defined" ("" "" "81D9C") "SV_actual" ("" "" "83471") "SV_calledit" ("" "" "8347B") "SV_getbody" ("" "" "83485") "SV_keycancel" ("" "" "8348F") "SV_keycheck" ("" "" "83499") "SV_keyedit" ("" "" "834A3") "SV_keyeval" ("" "" "834AD") "SV_keyok" ("" "" "834B7") "SV_keyshow" ("" "" "834C1") "SV_setgrob19" ("" "" "834CB") "SV_setitem0" ("" "" "834D5") "SVarType@" ("" "" "C02F7") "SWAPStatFlag" ("" "" "9C2CC") "SYMSTR" ("" "" "8030C") "SafeCrunch%" ("" "" "81FE5") "SafeDecomp" ("" "" "831A1") "SaveListMets" ("" "" "82553") "Sel&DispNextF" ("" "" "82823") "SelNextField" ("" "" "82805") "SelPrevField" ("" "" "8280F") "SelectAplet" ("" "" "83345") "Seq_eval0" ("" "" "C6B6B") "Seq_eval1" ("" "" "C6BC5") "Seq_eval2" ("" "" "C6E45") "Seq_evaln" ("" "" "C6FEE") "SetDA2Temp" ("" "" "820FD") "SetDAsBad" ("" "" "82125") "SetFAreaBad" ("" "" "82995") "SetFAreaOK" ("" "" "8298B") "SetFAreasBad" ("" "" "829A9") "SetFAreasOK" ("" "" "8299F") "SetInAplet" ("" "" "81D8D") "SetRedrawFlag" ("" "" "64184") "Set_window" ("" "" "8234B") "Slope@" ("" "" "BDEE9") "Split1CKSUM@" ("" "" "BD634") "Split2CKSUM@" ("" "" "BD675") "SplitRow@" ("" "" "BD87D") "SplitTraceInit" ("" "" "82355") "Stat2Flag@" ("" "" "C04E1") "StatFit@" ("" "" "C061C") "StatFont@" ("" "" "C056D") "StatMark@" ("" "" "C0455") "StatMisc[]@" ("" "" "C0586") "StatModel@" ("" "" "C049B") "StatPlot@" ("" "" "C033D") "StatType!" ("" "" "C0298") "StatType@" ("" "" "C02B1") "StdApEntry" ("" "" "73011") "StdDecompNoNL" ("" "" "82873") "StdIOProc" ("" "" "82B07") "StdTableViewUI" ("" "" "83223") "StndXYCoord?" ("" "" "82369") "StoAns@" ("" "" "82D69") "StoAns@Drp" ("" "" "82D73") "StoAplet" ("" "" "8334F") "StripTicks" ("" "" "831AB") "SwapL/RMets" ("" "" "82549") "SymbViewUI" ("" "" "8322D") "TBColL3x5" ("" "" "82373") "TBColL5x7" ("" "" "8237D") "TBColR3x5" ("" "" "82387") "TBColR5x7" ("" "" "82391") "TBDrawF3x5" ("" "" "8239B") "TBDrawF5x7" ("" "" "823A5") "TBEdSfKeys" ("" "" "82503") "TBErrorGrob" ("" "" "823AF") "TBFormat" ("" "" "823B9") "TBFuncDecomp" ("" "" "9216B") "TBInv3x5C0" ("" "" "823C3") "TBInv3x5C1" ("" "" "823CD") "TBInv3x5C2" ("" "" "823D7") "TBInv3x5C3" ("" "" "823E1") "TBInv5x7C0" ("" "" "823EB") "TBInv5x7C1" ("" "" "823F5") "TBInv5x7C2" ("" "" "823FF") "TBRollD3x5" ("" "" "82409") "TBRollD5x7" ("" "" "82413") "TBRollU3x5" ("" "" "8241D") "TBRollU5x7" ("" "" "82427") "TBStdZooms" ("" "" "83241") "TBStndSplitInfo" ("" "" "8324B") "TCol1@" ("" "" "BD83C") "TDDat3x5C1" ("" "" "82431") "TDDat3x5C2" ("" "" "8243B") "TDDat3x5C3" ("" "" "82445") "TDDat3x5C4" ("" "" "8244F") "TDDat3x5C5" ("" "" "82459") "TDDatD3x5" ("" "" "82463") "TDDatL3x5" ("" "" "8246D") "TDDatR3x5" ("" "" "82477") "TDDatU3x5" ("" "" "82481") "TDDataF3x5" ("" "" "8248B") "TFlags@" ("" "" "BD779") "THIRTYSIX" ("" "" "041A7") "THREEFOUR" ("" "" "80050") "TStart@" ("" "" "BD6B6") "TStep@" ("" "" "BD6F7") "TZoom@" ("" "" "BD738") "TablSetViewUI" ("" "" "83255") "Tcol@" ("" "" "BD7FB") "TempMenuBuff" ("" "Makes some new menus that surely comes from
  653. METAKERNEL FIXME: What is meant by this?" "82CFB") "TraceY" ("" "" "82495") "Trow@" ("" "" "BD7BA") "UnpackGrob" ("" "" "824BD") "Update_tTYPE" ("" "" "5CAD5") "UserSto" ("" "" "82D7D") "VLMAlarmMsg" ("" "" "80474") "VLMUserKeys" ("" "" "8046A") "VLMcmdlmsg" ("" "" "80488") "VLMhistmsg" ("" "" "80460") "VLMlastargs" ("" "" "8047E") "VLMmsg" ("" "" "80442") "VLMpurgemsg" ("" "" "80438") "VLMstkmsg" ("" "" "8044C") "VLMundomsg" ("" "" "80456") "VTick@" ("" "" "BD369") "VZoom@" ("" "" "BD3EB") "WidthSmF" ("" "" "8284B") "XPURGEp" ("" "" "82DAF") "XPURGEp0" ("" "" "82DB9") "XRCLp" ("" "" "82D9B") "XRCLp0" ("" "" "095A5") "XSTOp" ("" "" "82D87") "XSTOp0" ("" "" "82D91") "Xmax!" ("" "" "BD14D") "Xmax2@" ("" "" "BD265") "Xmax@" ("" "" "BD161") "Xmin!" ("" "" "BD10C") "Xmin2@" ("" "" "BD224") "Xmin@" ("" "" "BD120") "Xorbitmap" ("" "" "818D8") "Ymax2@" ("" "" "BD2E7") "Ymax@" ("" "" "BD1E3") "Ymin2@" ("" "" "BD2A6") "Ymin@" ("" "" "BD1A2") "ZoomAutoUI" ("" "" "6E94E") "alg=" ("" "" "831F1") "apndit" ("" "" "82E9F") "argswap" ("" "" "8310B") "argswap&&" ("" "" "83101") "argswapnext" ("" "" "83115") "blackbox" ("" "" "81FA4") "check_xrange" ("" "" "8216B") "check_yrange" ("" "" "82175") "chooselst" ("" "" "82EA9") "completed" ("" "" "82EB3") "d*" ("" "" "8191E") "d<" ("" "" "8190F") "d<=" ("" "" "81919") "d>" ("" "" "8190A") "d>%" ("" "" "81932") "d>=" ("" "" "81914") "dDIV" ("" "" "81923") "dMOD" ("" "" "81928") "dirstrucchk" ("" "" "0BCEE") "dmuldiv" ("" "" "8192D") "doptr!" ("" "" "852EC") "doptr@" ("" "" "852D0") "dvbind" ("" "" "82EBD") "elsiename" ("" "" "82EC7") "filename" ("" "" "82EDB") "funcCache@" ("" "" "BE03D") "grobCheck" ("" "" "82A17") "grobCheckX" ("" "" "82A21") "grobInvChk" ("" "" "82A2B") "grobInvChkX" ("" "" "82A35") "grobInvNoChk" ("" "" "82A53") "grobInvUnChkX" ("" "" "82A49") "grobMoreDown" ("" "" "82661") "grobMoreUp" ("" "" "82657") "grobNoMore" ("" "" "8266B") "grobPOBox2" ("" "" "826F7") "grobPOBox3" ("" "" "82701") "grobPOBox4" ("" "" "8270B") "grobPOBox5" ("" "" "82715") "grobPOBoxP2" ("" "" "8271F") "grobPOBoxP3" ("" "" "82729") "grobPOBoxP4" ("" "" "82733") "grobQueryIcon" ("" "" "82A71") "grobTitleBar" ("" "" "82A7B") "grobUnCheckX" ("" "" "82A3F") "idntany" ("" "" "80208") "illnameerr" ("" "" "80000") "lamany" ("" "" "8024E") "library" ("" "" "802B2") "loopdirck" ("" "" "0BD53") "metaDUP" ("" "" "83057") "metainsert" ("" "" "83129") "newsymbPA" ("" "" "82EE5") "numargs" ("" "" "8311F") "oneexpr" ("" "" "82EEF") "onestring" ("" "" "82EF9") "optfilename" ("" "" "82F03") "prx1" ("" "" "82B93") "psh1" ("" "" "8306B") "psharg" ("" "" "83093") "pshmonop" ("" "" "83089") "rbrac" ("" "" "80A0C") "realPA" ("" "" "82E31") "resolved" ("" "" "83043") "roll3RD" ("" "" "81D0B") "roll4TH" ("" "" "81D1F") "rollNTH" ("" "" "81D1A") "rrp" ("" "" "8001E") "s1>" ("" "" "82319") "solverTTT" ("" "" "82E3B") "startSQFORM" ("" "" "83205") "syminner&" ("" "" "830E3") "syminner&N" ("" "" "830F7") "syminnertwo" ("" "" "830ED") "tTYPE@" ("" "" "83025") "threeexprs" ("" "" "82F0D") "tok;triand" ("" "" "82F17") "toktriand" ("" "" "82F21") "topic_install" ("" "" "834DF") "topic_uninstall" ("" "" "834E9") "twoexprs" ("" "" "82F2B") "twostrings" ("" "" "82F35") "unroll3RD" ("" "" "81D15") "unroll4TH" ("" "" "81D24") "unrollNTH" ("" "" "81D29") "unsyminner" ("" "" "830D9") "unsymone" ("" "" "83147") "verysyminner" ("" "" "83133") "veryunsymin" ("" "" "8313D") "vunsymfcn" ("" "" "83151") "{NoteText}" ("" "" "835C5") "{NumVars}" ("" "" "835CF") "{SketchSet}" ("" "" "835D9") "{StatVars}" ("" "" "3A993") "~::args" ("" "" "0060E8") "~?NULLSETDIM" ("" "" "0130E8") "~AttentionKe" ("" "" "02C0A1") "~CHECKEXISTS" ("" "" "0830F0") "~COLCTDER" ("" "" "08F0F0") "~COLCTFCNAP" ("" "" "0940F0") "~COLCTIFTE" ("" "" "0920F0") "~COLCTINTG" ("" "" "0900F0") "~COLCTQUOTE" ("" "" "0930F0") "~COLCTSUM" ("" "" "0910F0") "~COMPLEXDUMM" ("" "" "0DA002") "~ChkDaList" ("" "" "0340AB") "~DArrow" ("" "" "0100A1") "~DefauStat2T" ("" "" "0170F1") "~DefauStatTy" ("" "" "0160F1") "~DoExponent" ("" "" "01A0A2") "~DoMenuKey1N" ("" "" "0000A1") "~DoMenuKey2N" ("" "" "0010A1") "~DoMenuKey3N" ("" "" "0020A1") "~DoMenuKey4N" ("" "" "0030A1") "~DoMenuKey5N" ("" "" "0040A1") "~DoMenuKey6N" ("" "" "0050A1") "~DoNumeric:" ("" "" "01F0E8") "~Enter/Again" ("" "" "0180A1") "~FarDArrow" ("" "" "0100A2") "~FarLArrow" ("" "" "00F0A2") "~FarRArrow" ("" "" "0110A2") "~FarUArrow" ("" "" "00A0A2") "~GETPLTLABLS" ("" "" "01D0F1") "~GetTypeText" ("" "" "0150F1") "~I:-InvSin" ("" "" "0010F0") "~I:-InvSinh" ("" "" "0090F0") "~I:Acosh" ("" "" "0170F0") "~I:Asinh" ("" "" "0160F0") "~I:Atan" ("" "" "0130F0") "~I:LnTan" ("" "" "0030F0") "~I:LnTanh" ("" "" "00A0F0") "~I:Tanh" ("" "" "00C0F0") "~INTGACOS" ("" "" "0060F0") "~INTGALOG" ("" "" "00F0F0") "~INTGASIN" ("" "" "0050F0") "~INTGATAN" ("" "" "0070F0") "~INTGCOS" ("" "" "0020F0") "~INTGCOSH" ("" "" "00B0F0") "~INTGDER" ("" "" "0190F0") "~INTGEXPM" ("" "" "00E0F0") "~INTGINV" ("" "" "0120F0") "~INTGLN" ("" "" "0100F0") "~INTGLOG" ("" "" "0110F0") "~INTGSIGN" ("" "" "0180F0") "~INTGSIN" ("" "" "0000F0") "~INTGSINH" ("" "" "0080F0") "~INTGSQ" ("" "" "0140F0") "~INTGSQRT" ("" "" "0150F0") "~INTGTAN" ("" "" "0040F0") "~INTGTANH" ("" "" "00D0F0") "~LArrow" ("" "" "00F0A1") "~LIXRecv" ("" "" "0300E8") "~LIXSend" ("" "" "0310E8") "~MAKEEPIDN" ("" "" "0330C2") "~MiscIFMsg" ("" "" "0000B9") "~NotHidden" ("" "" "0210E8") "~POINTERR" ("" "" "01E0F1") "~POINTEXIT" ("" "" "01F0F1") "~POLARDUMMY" ("" "" "0DB002") "~PlotIFMsg" ("" "" "0000BE") "~PlotViewKey" ("" "" "0060A1") "~PolyNSymbF" ("" "" "0080C0") "~PolyNSymbP" ("" "" "0070C0") "~RArrow" ("" "" "0110A1") "~REIM[]*" ("" "" "0620F0") "~SETTOPICLAM" ("" "" "01B0F1") "~SolveApEntr" ("" "" "01A0F1") "~SolveIFMsg" ("" "" "0000BF") "~StatIFMsg" ("" "" "0000BB") "~SymbViewKey" ("" "" "0070A1") "~TableViewKe" ("" "" "0080A1") "~TopicLibKey" ("" "" "00C0A1") "~UpArrow" ("" "" "00A0A1") "~UseHidden{}" ("" "" "0200E8") "~WHEREDER" ("" "" "0780F0") "~WHEREFCNAPP" ("" "" "0770F0") "~WHEREIFTE" ("" "" "0790F0") "~WHEREINTG" ("" "" "07C0F0") "~WHERESUM" ("" "" "07D0F0") "~WHEREWHERE" ("" "" "07A0F0") "~XEQDIAG>L" ("" "" "0210AB") "~XEQDIAG>R" ("" "" "0220AB") "~XEQRANM" ("" "" "0230AB") "~XEQSYMLIN" ("" "" "0020AB") "~XEQXDPTCH" ("" "" "0810F0") "~XEVALp*" ("" "" "08A0F0") "~XEVALp?" ("" "" "0890F0") "~XPURGEp*" ("" "" "08C0F0") "~XPURGEp?" ("" "" "08B0F0") "~XRCLp*" ("" "" "0880F0") "~XRCLp?" ("" "" "0850F0") "~XRCLp?acc>" ("" "" "08E0F0") "~XRCLpL" ("" "" "0870F0") "~XRCLpNL" ("" "" "0860F0") "~XSTOCHECK" ("" "" "07E0F0") "~XSTOCHECK10" ("" "" "07F0F0") "~Xcont" ("" "" "0820F0") "~adjdiv" ("" "" "04D0F0") "~adjdivsign" ("" "" "04B0F0") "~adjsign" ("" "" "04C0F0") "~arryspec" ("" "" "02E0E8") "~bad^" ("" "" "06B0AB") "~convertaddr" ("" "" "08D0F0") "~copysub" ("" "" "02D0E8") "~covD/DCROSS" ("" "" "0960F0") "~covD/DDOT" ("" "" "0970F0") "~covD/DINTG" ("" "" "0B90F0") "~covINV*" ("" "" "0C90F0") "~covINV+" ("" "" "0C60F0") "~covINV-" ("" "" "0C70F0") "~covINV/" ("" "" "0CA0F0") "~covINV=" ("" "" "0C80F0") "~covINVALOG" ("" "" "0D40F0") "~covINVCOS" ("" "" "0CF0F0") "~covINVCOSH" ("" "" "0D20F0") "~covINVEXP" ("" "" "0CD0F0") "~covINVEXPM1" ("" "" "0D50F0") "~covINVSIN" ("" "" "0CE0F0") "~covINVSINH" ("" "" "0D10F0") "~covINVTAN" ("" "" "0D00F0") "~covINVTANH" ("" "" "0D30F0") "~covINV^" ("" "" "0CB0F0") "~covINV^X" ("" "" "0CC0F0") "~covLBSTO" ("" "" "0800F0") "~covMANATG" ("" "" "0C50F0") "~covMANCSIV" ("" "" "0C10F0") "~covMANEXP" ("" "" "0BF0F0") "~covMANMENU*" ("" "" "0BD0F0") "~covMANMENU+" ("" "" "0BC0F0") "~covMANMENUC" ("" "" "0C30F0") "~covMANMENUE" ("" "" "0C20F0") "~covMANMENUL" ("" "" "0C00F0") "~covMANTRG" ("" "" "0C40F0") "~covWSPLIT" ("" "" "07B0F0") "~covmanCOL" ("" "" "0760F0") "~covmetaLIBS" ("" "" "0840F0") "~docmdlist" ("" "" "00D0E8") "~doidseqn" ("" "" "0040E8") "~dolatorre" ("" "" "00F0E8") "~dolatorre+" ("" "" "0110E8") "~dolatorre2" ("" "" "0120E8") "~dolist+" ("" "" "0190E8") "~dontuple" ("" "Internal DOSUBS" "0020E8") "~dontuple#" ("comp ob # --> {}" "Takes objects from comp in groups of # and
  654. evals ob on them. The results are returned
  655. as a list." "0030E8") "~dopcoeff" ("" "" "05F0AB") "~dopolydiv" ("" "" "05E0AB") "~dopolyz" ("" "" "05D0AB") "~doptrseqn" ("" "" "00A0E8") "~dopval" ("" "" "06D0AB") "~dosecntuple" ("" "" "0010E8") "~dosecseqn" ("" "" "0080E8") "~doseq" ("" "" "0000E8") "~doseqn" ("" "" "00B0E8") "~doseqn#" ("" "" "00C0E8") "~dosort" ("" "" "01A0E8") "~elsielists?" ("" "" "0100E8") "~etorc" ("" "" "02F0E8") "~lauserQR" ("" "" "0250C2") "~lolatorre" ("" "" "0160E8") "~lslatorre" ("" "" "0150E8") "~metapolyz" ("" "" "0600AB") "~morerepl" ("" "" "0240E8") "~moresub" ("" "" "0230E8") "~mrepll" ("" "" "0260E8") "~mrepll+" ("" "" "0270E8") "~mrepln" ("" "" "0250E8") "~msubll" ("" "" "02A0E8") "~msubll+" ("" "" "02B0E8") "~msubln" ("" "" "0280E8") "~msubnl" ("" "" "0290E8") "~msubnn" ("" "" "02C0E8") "~nBOXWHISKER" ("" "" "0070F1") "~nFUNCTION" ("" "" "0000F1") "~nFUNCTOPIC" ("" "" "00F0F1") "~nHISTOGRAM" ("" "" "0050F1") "~nPARAMETRIC" ("" "" "0030F1") "~nPARAMTOPIC" ("" "" "0110F1") "~nPOLAR" ("" "" "0020F1") "~nPOLARTOPIC" ("" "" "0100F1") "~nPTYPE>PINF" ("" "" "0180F1") "~nSCATTER" ("" "" "0040F1") "~nSEQTOPIC" ("" "" "0120F1") "~nSEQUENCE" ("" "" "0060F1") "~nSOLVE" ("" "" "0010F1") "~nSOLVETOPIC" ("" "" "0140F1") "~nSTATTOPIC" ("" "" "0130F1") "~ns*spec" ("" "" "0680AB") "~ollatorre" ("" "" "0170E8") "~ollatorre+" ("" "" "0180E8") "~pcoef" ("" "" "0040C0") "~pcoefacc1" ("" "" "0050C0") "~pcoefacc2" ("" "" "0060C0") "~pdiv" ("" "" "06E0AB") "~peval" ("" "" "0030C0") "~poly*" ("" "" "0640AB") "~poly+" ("" "" "0620AB") "~poly/" ("" "" "0700AB") "~poly^" ("" "" "06A0AB") "~poly^#" ("" "" "06C0AB") "~polyneg" ("" "" "0630AB") "~polyprep" ("" "" "0610AB") "~proot" ("" "" "0010C0") "~proot_c" ("" "" "0000C0") "~proot_r" ("" "" "0020C0") "~ptrargs" ("" "" "0070E8") "~rMAKEPCOPY" ("" "" "0310C2") "~rPACKARRYD" ("" "" "0320C2") "~resymb" ("" "" "06F0AB") "~rpnAPPLY" ("" "" "0D7002") "~rpnDER" ("" "" "0CE002") "~rpnINTG" ("" "" "0D1002") "~rpnWHERE" ("" "" "0D4002") "~runalias?" ("" "" "0200F1") "~seqid" ("" "" "0050E8") "~seqnargs" ("" "" "00E0E8") "~sllatorre" ("" "" "0140E8") "~sn*spec" ("" "" "0670AB") "~ss*spec" ("" "" "0690AB") "~topic_CAPLE" ("" "" "0310F1") "~topic_NONE" ("" "" "02A0F1") "~udfargs" ("" "" "0090E8") "~view01_CAPL" ("" "" "02C0F1") "~view23_CAPL" ("" "" "02D0F1") "~view45_CAPL" ("" "" "02E0F1") "~view6_CAPLE" ("" "" "02F0F1") "~view7_CAPLE" ("" "" "0300F1") "~view_NONE" ("" "" "02B0F1") "~{$}>{id}" ("" "" "01D0E8") "~{$}>{lam}" ("" "" "01E0E8") "~{id}>{$}" ("" "" "01B0E8") "~{lam}>{$}" ("" "" "01C0E8") "APPEND_SPC" ("" "" "83165") "AlowPrlcdCl" ("" "" "81A77") "DoSendObToEl" ("" "" "82AB7") "GetApDirLst" ("" "" "82DE1") "~xABS" ("x --> x'" "Absolute Value Function
  656. --
  657. Returns the absolute value of
  658. its argument.
  659. x \\-> |x|
  660. (x,y) \\-> sqrt(x^2+y^2)
  661. x_unit \\-> |x|_unit
  662. [ array ] \\-> || array ||
  663. 'sym' \\-> 'ABS(sym)'
  664. --
  665. Flags: -3
  666. --
  667. Related: NEG,SIGN" "02F002" :Usr) "~xACOS" ("x --> x'" "Arc cos fn
  668. --
  669. Returns angle with given cos.
  670. --
  671. z \\-> arc cos z
  672. 'sym' \\-> 'ACOS(sym)'
  673. --
  674. Related: ASIN,ATAN,COS,ISOL,ACOSH" "04A002" :Usr) "~xACOSH" ("x --> x'" "Arc hyp cos fn
  675. --
  676. Returns val with given hyp cos.
  677. --
  678. z \\-> arc hyp cos z
  679. 'sym' \\-> 'ACOSH(sym)'
  680. --
  681. Related: ASINH,ATANH,COSH,ISOL" "04D002" :Usr) "~xALOG" ("x --> x'" "Common antilog fn
  682. --
  683. ALOG x = 10^x
  684. --
  685. Flags: -3
  686. numeric result
  687. --
  688. z \\-> 10^z
  689. 'sym' \\-> 'ALOG(sym)'
  690. --
  691. Related: EXP,LN,LOG" "052002" :Usr) "~xAND" ("x1 x2 --> x3" "And fn
  692. --
  693. Logical AND of 2 args.
  694. --
  695. #n1 #n1 \\-> #n3
  696. \"str1\" \"str2\" \\-> \"str3\"
  697. T/F1 T/F2 \\-> 0/1
  698. T/F 'sym' \\-> 'T/F AND sym'
  699. 'sym' T/F \\-> 'sym AND T/F'
  700. 'sym1' 'sym2' \\-> 'sym1 AND sym2'
  701. --
  702. Flags: -3 -5
  703. Numeric res -3
  704. Bin int wordsize -5 \\-> -10
  705. --
  706. Related: NOT,OR,XOR" "0C4002" :Usr) "~xAPPLY" ("{symb1 .. symbn} f --> f(symb1...symbn)" "Apply to args fn
  707. --
  708. Creates expr for specified fn
  709. name & args
  710. --
  711. Related: QUOTE,|" "0D8002" :Usr) "~xARC" ("c r \\Gh1 \\Gh2 -->
  712. {#x #y} #r \\Gh1 \\Gh2 -->" "Draw arc fn
  713. --
  714. Draws arc in PICT anticlockwise
  715. from \\Gh1 to \\Gh2 centred on coord
  716. specified on lev4 with radius on
  717. lev3
  718. --
  719. Flags: -17 -18
  720. angle mode (-17 & -18)
  721. --
  722. Related: BOX,LINE,TLINE" "0BC002" :Usr) "~xARG" ("c --> \\Gh" "Argument fn
  723. --
  724. Returns angle of a complex number
  725. --
  726. (x,y) \\-> \\Gh
  727. 'sym' \\-> 'ARG(sym)'
  728. --
  729. Flags: -17 -18
  730. Ang Mode -17,-18" "03F002" :Usr) "~xARRY\\->" ("[] --> x1...xn {n}
  731. [[]] --> x11...xnm {n m}" "Array to stack cmd
  732. --
  733. Return elems of array to stack.
  734. OBJ\\-> includes this functionality.
  735. --
  736. Related: \\->ARRY,DTAG,EQ\\->,LIST\\->, OBJ\\->,STR\\->" "090002" :Usr) "~xARRY>" ("[] --> x1...xn {n}
  737. [[]] --> x11...xnm {n m}" "Array to stack cmd
  738. --
  739. Return elems of array to stack.
  740. OBJ\\-> includes this functionality.
  741. --
  742. Related: \\->ARRY,DTAG,EQ\\->,LIST\\->, OBJ\\->,STR\\->" "090002" :Usr) "~x\\->ARRY" ("x1..xn n --> []
  743. x11...xnm {n m} --> [[]]" "Stack to Array Cmd
  744. --
  745. Returns a vector of n real or
  746. complex elements or a matrix of
  747. n \327 m real or complex solutions.
  748. --
  749. Related: ARRY\\->,LIST\\->,\\->LIST, OBJ\\->,STR\\->,\\->TAG,\\->UNIT" "08F002" :Usr) "~x>ARRY" ("x1..xn n --> []
  750. x11...xnm {n m} --> [[]]" "Stack to Array Cmd
  751. --
  752. Returns a vector of n real or
  753. complex elements or a matrix of
  754. n \327 m real or complex solutions.
  755. --
  756. Related: ARRY\\->,LIST\\->,\\->LIST, OBJ\\->,STR\\->,\\->TAG,\\->UNIT" "08F002" :Usr) "~xASIN" ("x --> x'" "Arc sin fn
  757. --
  758. Gives angle whose sin is given
  759. --
  760. z \\-> arc sin z
  761. 'sym' \\-> 'ASIN(sym)'
  762. --
  763. Flags: -1 -3 -17 -18
  764. Principal soln -1
  765. Numerical res -3
  766. Angle mode -17,-18
  767. --
  768. Related: ACOS,ATAN,ISOL,SIN" "049002" :Usr) "~xASINH" ("x --> x'" "Arc hyp sin fn
  769. --
  770. Gives Val whose hyp sin is given
  771. --
  772. z \\-> arc hyp sin z
  773. 'sym' \\-> 'ASINH(sym)'
  774. --
  775. Flags: -1 -3
  776. Principal soln -1
  777. Numerical res -3
  778. --
  779. Related: ACOSH,ATANH,ISOL,SINH" "04C002" :Usr) "~xASN" ("obj key -->
  780. 'SKEY' -->" "Assign cmd
  781. --
  782. Defines single key on user kbd by
  783. assigning the given obj to the
  784. key x_key
  785. --
  786. Flags: -61 -62
  787. User mode lock -61
  788. User mode -62
  789. --
  790. The arg x_key is a real number
  791. rc.p where r=row,c=col,p=plane as
  792. follows:
  793. 0,1 - unshifted
  794. 2 - left shifted
  795. 3 - right shifted
  796. 4 - \214 shifted
  797. 5 - \214 left shifted
  798. 6 - \214 right shifted
  799. Add 0.01 if the modifier is to be held
  800. pressed down.
  801. --
  802. After ASN, pressing the assigned
  803. in User or 1-User mode exeutes
  804. the assigned obj instead. Remains
  805. in effect until altered by ASN or
  806. STOKEYS or DELKEYS. If 'SKEY' is
  807. passed instead, the specified key
  808. is restored to std.
  809. --
  810. Related: DELKEYS,RCLKEYS,STOKEYS
  811. <REF>TEXT:Keycodes" "10B002" :Usr) "~xASR" ("# --> #'" "Arithmetic shift right cmd
  812. --
  813. Shifts a bint 1 bit to the right
  814. except for the most significant
  815. bit which stays.
  816. --
  817. Flags: -5 -6 -7 -8 -9 -10 -11 -12
  818. bint wordsize -5 -> -10
  819. bint base -11, -12
  820. --
  821. Related: SL,SLB,SR,SRB" "000002" :Usr) "~xATAN" ("x --> x'" "Arc tan fn
  822. --
  823. Returns the angle having the tan
  824. --
  825. z \\-> arc tan z
  826. 'sym' \\-> 'ATAN(sym)'
  827. --
  828. Flags: -1 -3 -17 -18
  829. Principle soln -1
  830. Numeric results -3
  831. Angle mode -17,-18
  832. --
  833. Related: ACOS,ASIN,ISOL,TAN" "04B002" :Usr) "~xATANH" ("x --> x'" "Arc hyp tan fn
  834. --
  835. Returns the value with given hyp
  836. tan.
  837. --
  838. z \\-> arc hyp tan z
  839. 'sym' \\-> 'ATANH(sym)'
  840. --
  841. Flags: -1 -3 -22
  842. Principle soln -1
  843. Numeric results -3
  844. Infinite result exception -22
  845. --
  846. Related: ACOSH,ASINH,ISOL,TANH" "04E002" :Usr) "~xAUTO" ("-->" " Calculates a y-axis display range
  847. or an x- & y-axis display range.
  848. --
  849. Action depends on plot type:
  850. FUNCTION sets range to max &
  851. min of y vals sampled
  852. at 40 equi-spaced x
  853. vals (excluding \261\330\331)
  854. CONIC sets y-axis scale = to
  855. x-axis scale
  856. POLAR same as FUNCTION
  857. PARAMETRIC same as POLAR
  858. TRUTH no action
  859. BAR sets x-axis range from
  860. 0 to # of elems in
  861. \\GSDAT +1. sets y-range
  862. to min & max of the
  863. elts x-axis is always
  864. included.
  865. HISTOGRAM sets x-axis range to
  866. min & max of the elems
  867. in \\GSDAT. sets y-range
  868. from 0 to # of rows in
  869. \\GSDAT.
  870. SCATTER x-range is min & max
  871. of XCOL. y-range is
  872. min & max of YCOL
  873. --
  874. Related: DRAW,SCALEH,SCALE,SCL\\GS, SCALEW,XRNG,YRNG" "0A1002" :Usr) "~xBEEP" ("freq dur -->" "Beep cmd
  875. --
  876. Sounds a tone of n Hz for x secs.
  877. --
  878. Flags: -56
  879. Error Beep -56
  880. Max Freq = 4400 Hz
  881. Max Duration = 1048.575 secs.
  882. --
  883. Related: HALT,INPUT,PROMPT,WAIT" "026002" :Usr) "~xBLANK" ("#width #height --> grob" "Blank Graphics Obj Cmd
  884. --
  885. Creates a blank graphics obj of
  886. the specified width and height.
  887. --
  888. Related: \\->GROB,LCD\\->" "0B2002" :Usr) "~xBOX" ("{#n1 #m1} {#n2 #m2} -->
  889. c1 c2 -->" "Box Cmd
  890. --
  891. Draws in PICT a box whose
  892. opposite corners are defined by
  893. the specified pixel or user-unit
  894. coords.
  895. --
  896. Related: ARC,LINE,TLINE" "0B1002" :Usr) "~xBYTES" ("obj --> chksum size" "Bytes Size Cmd
  897. --
  898. Returns the number of bytes & the
  899. checksum for the given obj.
  900. --
  901. Related: MEM" "01A002" :Usr) "~xB\\->R" ("# --> R" "Binary to Real Cmd
  902. --
  903. Converts a binary integer to its
  904. floating-point equivalent.
  905. --
  906. Related: R\\->B" "00A002" :Usr) "~xB>R" ("# --> R" "Binary to Real Cmd
  907. --
  908. Converts a binary integer to its
  909. floating-point equivalent.
  910. --
  911. Related: R\\->B" "00A002" :Usr) "~xCASE" ("-->" "CASE Conditional Structure Cmd
  912. --
  913. Starts CASE ... END conditional
  914. structure.
  915. --
  916. CASE \\->
  917. THEN T/F \\->
  918. END \\->
  919. END \\->
  920. --
  921. Related: END,IF,IFERR,THEN" "017700" :Usr) "~xCEIL" ("x --> n" "Ceiling Func
  922. --
  923. Returns the smallest integer
  924. greater than or equal to the
  925. argument.
  926. --
  927. x \\-> n
  928. x_u \\-> n_u
  929. 'sym' \\-> 'CEIL(sym)'
  930. --
  931. Flags: -3
  932. --
  933. Related: FLOOR,IP,RND,TRNC" "05A002" :Usr) "~xCENTR" ("(x,y) -->
  934. x -->" "Centre Cmd
  935. --
  936. Adjusts the first two parameters
  937. in the reserved variable PPAR,
  938. (xmin, ymin) and (xmax,ymax), so
  939. that the point represented by the
  940. argument (x,y) is the plot centre.
  941. --
  942. <REF>TEXT:Reserved|PPAR
  943. --
  944. Related: SCALE" "09E002" :Usr) "~xCF" ("n -->" "Clear Flag Cmd
  945. --
  946. Clears the specified user or
  947. system flag.
  948. --
  949. Related: FC?,FC?C,FS?,FS?C,SF" "076002" :Usr) "~xCHOOSE" ("title {elems} pos --> ob 1
  950. --> 0" "User-Defined Choose Box Cmd
  951. --
  952. Creates a user-defined choose box
  953. --
  954. Related: INFORM,NOVAL" "0270AB" :Usr) "~xCHR" ("n --> $" "Character Cmd
  955. --
  956. Returns a string representing the
  957. HP 48 character corresponding to
  958. the character code n.
  959. --
  960. Related: NUM,POS,REPL,SIZE,SUB" "08A002" :Usr) "~x%CH" ("x1 x2 --> x3" "Percent Change Func
  961. --
  962. Returns the percent change from
  963. x (level 2) to y (level 1) as a
  964. percentage of x.
  965. --
  966. x y \\-> 100(y-x)/x
  967. x 'sym' \\-> '%CH(x,sym)'
  968. 'sym' x \\-> '%CH(sym,x)'
  969. 'sym1' 'sym2' \\-> '%CH(sym1,sym2)'
  970. x_u y_u \\-> 100(y_u-x_u)/x_u
  971. x_u 'sym' \\-> '%CH(x_u,sym)'
  972. 'sym' x_u \\-> '%CH(sym,x_u)'
  973. --
  974. Flags: -3
  975. --
  976. Related: %,%T" "070002" :Usr) "~xCLEAR" ("ob1 .. obn -->" "Clear Cmd
  977. --
  978. Removes all objects from the
  979. stack.
  980. --
  981. Related: CLVAR,PURGE" "0EF002" :Usr) "~xCLKADJ" ("ticks -->" "Adjust System Clock Cmd
  982. --
  983. Adjusts the system time by x
  984. clock ticks, where 8192 clock
  985. ticks equal 1 second.
  986. --
  987. Related: \\->TIME" "015002" :Usr) "~xCLLCD" ("-->" "Clear LCD Cmd
  988. --
  989. Clears (blanks) the stack display
  990. --
  991. Related: DISP,FREEZE" "02A002" :Usr) "~xCNRM" ("[] --> col_norm" "Column Norm Cmd
  992. --
  993. Returns the column norm (onenorm)
  994. of the array argument.
  995. --
  996. Related: CROSS,DET,DOT,RNRM" "069002" :Usr) "~xCOL+" ("[[]] [[]]' n --> [[]]''
  997. [] x n --> []'" "Insert Column Cmd
  998. --
  999. Inserts an array (vector or
  1000. matrix) into a matrix (one or
  1001. more elements into a vector) at
  1002. the position indicated by nindex,
  1003. and returns the modified array.
  1004. --
  1005. [[mat]]1 [mat]2 nidx \\-> [[mat]]3
  1006. [[mat]]1 [vec]col nidx \\-> [[mat]]2
  1007. [vec]1 nelement nidx \\-> [vec]2
  1008. --
  1009. Related: COL-,CSWP,ROW+,ROW-" "01C0AB" :Usr) "~xCOL-" ("[] n --> []' xn
  1010. [[]] n --> [[]]' [vn]" "Delete Column Cmd
  1011. --
  1012. Deletes column n of a matrix (or
  1013. element n of a vector), and
  1014. returns the modified matrix (or
  1015. vector) and the deleted column
  1016. (or element).
  1017. --
  1018. Related: COL+,CSWP,ROW+,ROW-" "01B0AB" :Usr) "~xCOLCT" ("symb --> symb'" "Collect Like Terms Cmd
  1019. --
  1020. Simplifies an algebraic expression
  1021. or equation by \"collecting\"
  1022. like terms. Does not modify numbers.
  1023. --
  1024. Related: EXPAN,ISOL,QUAD,SHOW" "0FF002" :Usr) "~xCOMB" ("n k --> Cn,k" "Combinations Func
  1025. --
  1026. Returns the number of possible
  1027. combinations ofn items taken m
  1028. at a time.
  1029. --
  1030. n m \\-> Cn:m
  1031. 'symn' m \\-> 'COMB(symn,m)'
  1032. n 'symm' \\-> 'COMB(n,symm)'
  1033. 'symn' 'symm' \\-> 'COMB(symn,symm)'
  1034. --
  1035. Related: PERM,!" "073002" :Usr) "~xCON" ("{ n } x --> []
  1036. { n k } x --> [[]]
  1037. [] x --> []'" "Constant Array Cmd
  1038. --
  1039. Returns a constant array, defined
  1040. as an array whose elements all
  1041. have the same value.
  1042. --
  1043. {ncols} zcnst \\-> [[veccnst]]
  1044. {nrows mrows} zcnst \\-> [[matcnst]]
  1045. [R-arr] xcnst \\-> [R-arrcnst]
  1046. [C-arr] xcnst \\-> [C-arrcnst]
  1047. 'name' zcnst \\->
  1048. --
  1049. Related: IDN" "092002" :Usr) "~xCOND" ("[[n*n]] --> x" "Conditional Number Cmd
  1050. --
  1051. Returns the 1-norm (column norm)
  1052. condition number of a square
  1053. matrix.
  1054. --
  1055. Related: SNRM,SRAD,TRACE" "0030AB" :Usr) "~xCONJ" ("x --> x'" "Conjugate Analytic Func
  1056. --
  1057. Conjugates a complex number or a
  1058. complex array.
  1059. --
  1060. x \\-> x
  1061. (x,y) \\-> (x,-y)
  1062. [ R-arr ] \\-> [ R-arr ]
  1063. [ C-arr ]1 \\-> [ C-arr ]2
  1064. 'sym' \\-> 'CONJ(sym)'
  1065. --
  1066. Flags: -3
  1067. --
  1068. Related: ABS,IM,RE,SCONJ,SIGN" "030002" :Usr) "~xCONT" ("-->" "Continue Program Execution Cmd
  1069. --
  1070. Resumes execution of a halted
  1071. program.
  1072. --
  1073. Related: HALT,KILL,PROMPT" "02C002" :Usr) "~xCONVERT" ("x1_u1 x2_u2 --> x3_u2" "Convert Units Cmd
  1074. --
  1075. Converts a source unit object to
  1076. the dimensions of a target object
  1077. --
  1078. Related: UBASE,UFACT,\\->UNIT,UVAL" "00B002" :Usr) "~xCORR" ("--> x_correlation" "Correlation Cmd
  1079. --
  1080. Returns the correlation coefficient
  1081. of the independent and
  1082. dependent data columns in the
  1083. current statistics matrix
  1084. (reserved variable \\GSDAT).
  1085. --
  1086. <REF>TEXT:Reserved|\\GSDAT
  1087. --
  1088. Related: COL\\GS,COV,PREDX,PREDY,XCOL,YCOL" "02E0F2" :Usr) "~xCOS" ("x --> x'" "Cos Func
  1089. --
  1090. Returns the cos of the argument.
  1091. --
  1092. z \\-> cos z
  1093. 'sym' \\-> 'COS(sym)'
  1094. x_uangular \\-> cos(x_uangular)
  1095. --
  1096. Flags: -3 -17 -18
  1097. --
  1098. Related: ACOS,SIN,TAN" "044002" :Usr) "~xCOSH" ("x --> x'" "Hyp Cos Func
  1099. --
  1100. Returns the hyp cos of the argument.
  1101. --
  1102. z \\-> cosh z
  1103. 'sym' \\-> 'COSH(sym)'
  1104. --
  1105. Flags: -3
  1106. --
  1107. Related: ACOSH,SINH,TANH" "047002" :Usr) "~xCOV" ("--> x_covariance" "Covariance Cmd
  1108. --
  1109. Returns the sample covariance of
  1110. the independent and dependent
  1111. data columns in the current stat
  1112. matrix (reserved variable \\GSDAT).
  1113. --
  1114. <REF>TEXT:Reserved|\\GSDAT
  1115. --
  1116. Related: COL\\GS,CORR,PCOV,PREDX,PREDY, XCOL,YCOL" "02F0F2" :Usr) "~xCROSS" ("[1] [2] --> [3]" "Cross Product Cmd
  1117. --
  1118. CROSS returns the cross product
  1119. [3] = [1] x [2] of vectors [1] and [2].
  1120. --
  1121. Related: CNRM,DET,DOT,RNRM" "06C002" :Usr) "~xC\\->PX" ("(x,y) --> {#n #m}" "Complex to Pixel Cmd
  1122. --
  1123. Converts the specifiec user-unit
  1124. coordiates to pixel coordiates.
  1125. --
  1126. (x,y) \\-> { #n #m }
  1127. --
  1128. Related: PX\\->C" "0A8002" :Usr) "~xC>PX" ("(x,y) --> {#n #m}" "Complex to Pixel Cmd
  1129. --
  1130. Converts the specifiec user-unit
  1131. coordiates to pixel coordiates.
  1132. --
  1133. (x,y) \\-> { #n #m }
  1134. --
  1135. Related: PX\\->C" "0A8002" :Usr) "~xC\\->R" ("(x,y) --> x y
  1136. [C] --> [R] [I]" "Complex to Real Cmd
  1137. --
  1138. Separates the real and imaginary
  1139. parts of a complex number or
  1140. complex array.
  1141. --
  1142. Related: R\\->C,RE,IM" "084002" :Usr) "~xC>R" ("(x,y) --> x y
  1143. [C] --> [R] [I]" "Complex to Real Cmd
  1144. --
  1145. Separates the real and imaginary
  1146. parts of a complex number or
  1147. complex array.
  1148. --
  1149. Related: R\\->C,RE,IM" "084002" :Usr) "~xDATE" ("--> date" "Returns the system date.
  1150. --
  1151. Related: DATE+,DDAYS,TIME,TSTR" "011002" :Usr) "~x\\->DATE" ("date -->" "Set Date Cmd
  1152. --
  1153. Sets the system date to date.
  1154. --
  1155. Related: \\->TIME" "013002" :Usr) "~xSETDATE" ("date -->" "Set Date Cmd
  1156. --
  1157. Sets the system date to date.
  1158. --
  1159. Related: \\->TIME" "013002" :Usr) "~xDATE+" ("date ndays --> date'" "Date Addition Cmd
  1160. --
  1161. Returns a past or future date,
  1162. given a date in level 2 and a
  1163. nmber of days in level 1.
  1164. --
  1165. Flags: -42
  1166. --
  1167. Related: DATE,DDAYS" "018002" :Usr) "~xDDAYS" ("date1 date2 --> days" "Delta Days Cmd
  1168. --
  1169. Returns the number of days
  1170. between two dates.
  1171. --
  1172. Related: DATE,DATE+" "017002" :Usr) "~xDECR" ("name --> x_new" "Decrement Cmd
  1173. --
  1174. Takes a variable on level 1,
  1175. subtracts 1, stores the new value
  1176. back into the original variable,
  1177. and returns the new value to
  1178. level 1.
  1179. --
  1180. Related: INCR,STO+,STO-" "0FE002" :Usr) "~xDEPTH" ("--> n" "Depth Cmd
  1181. --
  1182. Returns a real number representing
  1183. the number of objects present
  1184. on the stack (before DEPTH was
  1185. executed)." "0E9002" :Usr) "~xDET" ("[[]] --> x" "Determinant Func
  1186. --
  1187. Returns the determinant of a
  1188. square matrix.
  1189. --
  1190. Related: CNRM,CROSS,DOT,RNRM" "06A002" :Usr) "~xDIR" ("" "" "019700" :Usr) "~xDISP" ("obj n_line -->" "Display Cmd
  1191. --
  1192. Displays obj in the nth display
  1193. line.
  1194. --
  1195. Related: FREEZE,HALT,INPUT,PROMPT" "025002" :Usr) "~xDO" ("-->" "DO Indefinite Loop Structure Cmd
  1196. --
  1197. Starts DO ... UNTIL ... END
  1198. indefinite loop structure.
  1199. --
  1200. DO \\->
  1201. UNTIL \\->
  1202. END T/F \\->
  1203. --
  1204. Related: END,UNTIL,WHILE" "007700" :Usr) "~xDOERR" ("n -->
  1205. #n -->
  1206. $ -->
  1207. 0 -->" "Do Error Cmd
  1208. --
  1209. Executes a \"user-specified\"
  1210. error, causing a program to behave
  1211. exactly as if a normal error
  1212. had occurred during program execution.
  1213. --
  1214. Related: ERRM,ERRN,ERR0" "01D002" :Usr) "~xDOLIST" ("{1}...{n} n prog --> {}
  1215. {1}...{n} prog --> {} (n=1)" "Do to List Cmd
  1216. --
  1217. Applies commands, programs, or
  1218. user-defined functions to lists.
  1219. --
  1220. {lst}1 ...{lst}n n \\<<prog\\>> \\-> {res}
  1221. {lst}1 ...{lst}n n cmd \\-> {res}
  1222. {lst}1 ...{lst}n n name \\-> {res}
  1223. {lst}1 ...{lst}n \\<<prog\\>> \\-> {res}
  1224. {lst}1 ...{lst}n cmd \\-> {res}
  1225. {lst}1 ...{lst}n name \\-> {res}
  1226. --
  1227. Related: DOSUBS,ENDSUB,NSUB,STREAM" "0360AB" :Usr) "~xDOSUBS" ("{} n prog --> {}'
  1228. {} prog --> {}' (n=1)" "Do to Sublist Cmd
  1229. --
  1230. Applies a program or command to
  1231. groups of elements in a list.
  1232. --
  1233. {list}1 n \\<<prog\\>> \\-> {list}2
  1234. {list}1 n command \\-> {list}2
  1235. {list}1 n name \\-> {list}2
  1236. {list}1 \\<<prog\\>> \\-> {list}2
  1237. {list}1 command \\-> {list}2
  1238. {list}1 name \\-> {list}2
  1239. --
  1240. Related: DOLIST,ENDSUB,NSUB,STREAM" "02E0AB" :Usr) "~xDOT" ("[1] [2] --> x" "Dot Product Cmd
  1241. --
  1242. Returns the dot product AoB of
  1243. two arrays A and B, calculated
  1244. as the sum of the products of the
  1245. corresponding elements of the two
  1246. arrays.
  1247. --
  1248. Related: CNRM,CROSS,DET,RNRM" "06B002" :Usr) "~xDRAX" ("-->" "Draw Axes Cmd
  1249. --
  1250. Draws axes in PICT.
  1251. --
  1252. Related: AXES,DRAW,LABEL" "0A2002" :Usr) "~xDROP" ("ob -->" "Drop Object Cmd
  1253. --
  1254. Removes the level 1 object from
  1255. the stack.
  1256. --
  1257. Related: CLEAR,DROPN,DROP2" "0E5002" :Usr) "~xDROP2" ("ob1 ob2 -->" "Drop 2 Objects Cmd
  1258. --
  1259. Removes the first two objects
  1260. from the stack.
  1261. --
  1262. Related: CLEAR,DROP,DROPN" "0E6002" :Usr) "~xDROPN" ("ob1...obn n -->" "Drop n Objects Cmd
  1263. --
  1264. Removes the first n + 1 objects
  1265. from the stack (the first n objects
  1266. excluding the integer n itself).
  1267. --
  1268. Related: CLEAR,DROP,DROP2" "0EA002" :Usr) "~xDTAG" ("tag:obj --> obj" "Delete Tag Cmd
  1269. --
  1270. DTAG removes all tags (labels)
  1271. from an object.
  1272. --
  1273. Related: LIST\\->,\\->TAG" "110002" :Usr) "~xDUP" ("ob --> ob ob" "Duplicate Object Cmd
  1274. --
  1275. DUP returns a copy to level 1 of
  1276. the object in level 1.
  1277. --
  1278. Related: DUPN,DUP2,PICK" "0E2002" :Usr) "~xDUP2" ("1 2 --> 1 2 1 2" "Duplicate 2 Objects Cmd
  1279. --
  1280. DUP2 returns copies of the objects
  1281. in levels 1 and 2 of the stack.
  1282. --
  1283. Related: DUP,DUPN,PICK" "0E3002" :Usr) "~xDUPN" ("1...n n --> 1...n 1...n" "Duplicate n Objects Cmd
  1284. --
  1285. Takes an integer n from level 1
  1286. of the stack, and returns copies
  1287. of the objects in stack levels
  1288. 2n through n + 1.
  1289. --
  1290. Related: DUP,DUP2,PICK" "0EB002" :Usr) "~xD\\->R" ("x --> (\\pi/180)x" "Degrees to Radians Func
  1291. --
  1292. Converts a real number representing
  1293. an angle in degrees to its
  1294. equivalent in radians.
  1295. --
  1296. x \\-> (\\pi/180) x
  1297. 'sym' \\-> 'D\\->R(sym)'
  1298. --
  1299. Related: R\\->D" "062002" :Usr) "~xD>R" ("x --> (\\pi/180)x" "Degrees to Radians Func
  1300. --
  1301. Converts a real number representing
  1302. an angle in degrees to its
  1303. equivalent in radians.
  1304. --
  1305. x \\-> (\\pi/180) x
  1306. 'sym' \\-> 'D\\->R(sym)'
  1307. --
  1308. Related: R\\->D" "062002" :Usr) "~xe" ("--> e" "e Func
  1309. --
  1310. Returns the symbolic constant e
  1311. or its numerical representation,
  1312. 2.71828182846.
  1313. --
  1314. Related: EXP,EXPM,i,LN,LNP1,MAXR,MINR,\\pi" "034002" :Usr) "~xCONSTANTe" ("--> e" "e Func
  1315. --
  1316. Returns the symbolic constant e
  1317. or its numerical representation,
  1318. 2.71828182846.
  1319. --
  1320. Related: EXP,EXPM,i,LN,LNP1,MAXR,MINR,\\pi" "034002" :Usr) "~xEGV" ("[[]] --> [[evect]]' [evals]" "Eigenvalues and Eigenvectors Command
  1321. --
  1322. Computes the eigenvalues and right
  1323. eigenvectors for a square matrix.
  1324. --
  1325. Related: EGVL" "0090AB" :Usr) "~xEGVL" ("[[]] --> [egval]" "Eigenvalues Cmd
  1326. --
  1327. Computes the eigenvalues of a
  1328. square matrix.
  1329. --
  1330. Related: EGV" "00A0AB" :Usr) "~xELSE" ("-->" "ELSE Cmd
  1331. --
  1332. Starts false clause in conditional
  1333. or error-trapping structure.
  1334. See the IF and IFERR keyword
  1335. entries for syntax information.
  1336. --
  1337. Related: IF,CASE,DO,ELSE,IFERR,REPEAT, THEN,UNTIL,WHILE" "002700" :Usr) "~xEND" ("" "END Cmd
  1338. --
  1339. Ends conditional, error-trapping,
  1340. and indefinite loop structures.
  1341. --
  1342. See the IF, CASE, IFERR, DO, and
  1343. WHILE keyword entries for syntax
  1344. information.
  1345. --
  1346. Related: IF,CASE,DO,ELSE,IFERR,REPEAT, THEN,UNTIL,WHILE" "014700" :Usr) "~xENDDO" ("1/0 -->" "END Cmd
  1347. --
  1348. Ends conditional, error-trapping,
  1349. and indefinite loop structures.
  1350. See the IF, CASE, IFERR, DO, and
  1351. WHILE keyword entries for syntax
  1352. information.
  1353. --
  1354. Related: IF,CASE,DO,ELSE,IFERR,REPEAT, THEN,UNTIL,WHILE" "015700" :Usr) "~xIFEND" ("" "END Cmd
  1355. --
  1356. Ends conditional, error-trapping,
  1357. and indefinite loop structures.
  1358. --
  1359. See the IF, CASE, IFERR, DO, and
  1360. WHILE keyword entries for syntax
  1361. information.
  1362. --
  1363. Related: IF,CASE,DO,ELSE,IFERR,REPEAT, THEN,UNTIL,WHILE" "003700" :Usr) "~xWHILEEND" ("" "END Cmd
  1364. --
  1365. Ends conditional, error-trapping,
  1366. and indefinite loop structures.
  1367. --
  1368. See the IF, CASE, IFERR, DO, and
  1369. WHILE keyword entries for syntax
  1370. information.
  1371. --
  1372. Related: IF,CASE,DO,ELSE,IFERR,REPEAT, THEN,UNTIL,WHILE" "014700" :Usr) "~xENDSUB" ("--> x" "Ending Sublist Cmd
  1373. --
  1374. Provides a way to access the
  1375. total number of sublists contained
  1376. in the list used by DOSUBS.
  1377. --
  1378. Related: DOSUBS,NSUB" "0310AB" :Usr) "~xENG" ("n -->" "Engineering Mode Cmd
  1379. --
  1380. Sets the number display format to
  1381. Engineering mode, which displays
  1382. one to three digits to the left
  1383. of the fraction mark (decimal
  1384. point) and an exponent that is a
  1385. multiple of three. The total
  1386. number of significant digits
  1387. displayed is n + 1.
  1388. --
  1389. Related: FIX,SCI,STD" "0420AB" :Usr) "~xEQ\\->" ("'l=r' --> l r" "Equation to Stack Cmd
  1390. --
  1391. Separates an equation into its
  1392. left and right sides.
  1393. --
  1394. 'sym1=sym2' \\-> 'sym1' 'sym2'
  1395. z \\-> z 0
  1396. 'name' \\-> 'name' 0
  1397. x_u \\-> x_u 0
  1398. 'sym' \\-> 'sym' 0
  1399. --
  1400. Related: ARRY\\->,DTAG,LIST\\->,OBJ\\->,STR\\->" "08D002" :Usr) "~xEQ>" ("'l=r' --> l r" "Equation to Stack Cmd
  1401. --
  1402. Separates an equation into its
  1403. left and right sides.
  1404. --
  1405. 'sym1=sym2' \\-> 'sym1' 'sym2'
  1406. z \\-> z 0
  1407. 'name' \\-> 'name' 0
  1408. x_u \\-> x_u 0
  1409. 'sym' \\-> 'sym' 0
  1410. --
  1411. Related: ARRY\\->,DTAG,LIST\\->,OBJ\\->,STR\\->" "08D002" :Usr) "~xERASE" ("-->" "Erase PICT Cmd
  1412. --
  1413. Erases PICT, leaving a blank PICT
  1414. of the same dimensions.
  1415. --
  1416. Related: DRAW" "0A5002" :Usr) "~xERR0" ("-->" "Clear Last Error Number Cmd
  1417. --
  1418. Clears the last error number so
  1419. that a subsequent execution of
  1420. ERRN returns # 0h, and clears the
  1421. last error message.
  1422. --
  1423. Related: DOERR,ERRM,ERRN" "01E002" :Usr) "~xERRM" ("--> $msg" "Error Message Cmd
  1424. --
  1425. Returns a string containing the
  1426. error message of the most recent
  1427. calculator error.
  1428. --
  1429. Related: DOERR,ERRN,ERR0" "020002" :Usr) "~xERRN" ("--> $nerr" "Error Number Cmd
  1430. --
  1431. Returns the error number of the
  1432. most recent calculator error.
  1433. --
  1434. Related: DOERR,ERRM,ERR0" "01F002" :Usr) "xEVAL" ("ob --> ?" "Evaluate Object Cmd
  1435. --
  1436. Evaluates the object.
  1437. --
  1438. obj \\-> (see below)
  1439. Obj. Type Effects of Evaluation
  1440. Local Name Recalls the contents
  1441. of the variable.
  1442. Global Name Calls the contents of
  1443. the variable:
  1444. A name is evaluated.
  1445. A program is evaluated.
  1446. A directory becomes the current
  1447. directory.
  1448. Other objects are put on the
  1449. stack.
  1450. If no variable exists for a given
  1451. name, evaluating the name returns
  1452. the name to the stack.
  1453. Program. Enters each object in
  1454. the program:
  1455. Names are evaluated (unless quoted).
  1456. ed).
  1457. Cmds are evaluated.
  1458. Other objects are put on the
  1459. stack.
  1460. List Enters each object in the
  1461. list:
  1462. Names are evaluated.
  1463. Cmds are evaluated.
  1464. Programs are evaluated.
  1465. Other objects are put on the
  1466. stack.
  1467. Tagged If the tag specifies a
  1468. port, recalls and evaluates the
  1469. specified object. Otherwise, puts
  1470. the untagged object on the stack.
  1471. Algebraic Enters each object in
  1472. the algebraic expression:
  1473. Names are evaluated.
  1474. Cmds are evaluated.
  1475. Other objects are put on the
  1476. stack.
  1477. Cmd,
  1478. Func, XLIB
  1479. Name Evaluates the specified object.
  1480. Other Objects Puts the object on
  1481. the stack.
  1482. --
  1483. Related: \\->NUM,SYSEVAL" "81FC2" :Usr) "~xEXP" ("x --> x'" "Exponential Analytic Func
  1484. --
  1485. Returns the exponential, or
  1486. natural antilogarithm, of the
  1487. argument; that is, e raised to
  1488. the given power.
  1489. --
  1490. z \\-> ez
  1491. 'sym' \\-> 'EXP(sym)'
  1492. --
  1493. Related: ALOG,EXPM,LN,LOG" "04F002" :Usr) "~xEXPAN" ("symb1 --> symb2" "Expand Products Cmd
  1494. --
  1495. Rewrites an algebraic expression
  1496. or equation by expanding products
  1497. and powers.
  1498. --
  1499. Related: COLCT,EXPAND,ISOL,QUAD,SHOW" "100002" :CASHELP :Usr) "~xEXPFIT" ("-->" "Exponential Curve Fit Cmd
  1500. --
  1501. Stores EXPFIT as the fifth parameter
  1502. in the reserved variable
  1503. \\GSPAR, indicating that subsequent
  1504. executions of LR are to use the
  1505. exponential curve futting model.
  1506. --
  1507. <REF>TEXT:Reserved|\\GSPAR
  1508. --
  1509. Related: BESTFIT,LR,LINFIT,LOGFIT,PWRFIT" "04A0AB" :Usr) "~xEXPM" ("x --> x'" "Exponential Minus 1 Analytic Func
  1510. --
  1511. Returns e^x - 1.
  1512. --
  1513. x \\-> e^x - 1
  1514. 'sym' \\-> 'EXPM(sym)'
  1515. --
  1516. Related: EXP,LNP1" "054002" :Usr) "~xFC?" ("n --> 0/1" "Flag Clear? Cmd
  1517. --
  1518. Tests whether the system or user
  1519. flag specified by nflag number is
  1520. clear, and returns a corresponding
  1521. test result: 1 (true) if the
  1522. flag is clear or 0 (false) if the
  1523. flag is set.
  1524. --
  1525. Related: CF,FC?C,FS?,FS?C,SF" "078002" :Usr) "~xFC?C" ("n --> 0/1" "Flag Clear? Clear Cmd
  1526. --
  1527. Tests whether the system or user
  1528. flag specified by nflag number is
  1529. clear, and returns a corresponding
  1530. test result: 1 (true) if the
  1531. flag is clear or 0 (false) if the
  1532. flag is set. After testing,
  1533. clears the flag.
  1534. --
  1535. Related: CF,FC?,FS?,FS?C,SF" "07A002" :Usr) "~xFIX" ("n -->" "Fix Mode Cmd
  1536. --
  1537. Sets the number display format to
  1538. Fix mode, which rounds the display
  1539. to n display places.
  1540. --
  1541. Related: SCI,STD,ENG" "0400AB" :Usr) "~xFLOOR" ("x --> n" "Floor Func
  1542. --
  1543. Returns the greatest integer that
  1544. is less than or equal to the argument.
  1545. --
  1546. x \\-> n
  1547. x_u \\-> n_u
  1548. 'sym' \\-> 'FLOOR(sym)'
  1549. --
  1550. Related: CEIL,IP,RND,TRNC" "059002" :Usr) "~xFOR" ("start finish -->" "FOR Definite Loop Structure Cmd
  1551. --
  1552. Starts
  1553. FOR ... NEXT and
  1554. FOR ... STEP
  1555. definite loop structures.
  1556. --
  1557. FOR xstart xfinish \\->
  1558. NEXT \\->
  1559. FOR xstart xfinish \\->
  1560. STEP xincrement \\->
  1561. STEP 'symincrement' \\->
  1562. --
  1563. Related: NEXT,START,STEP" "00A700" :Usr) "~xSTARTVAR" ("start finish -->" "FOR Definite Loop Structure Cmd
  1564. --
  1565. Starts
  1566. FOR ... NEXT and
  1567. FOR ... STEP
  1568. definite loop structures.
  1569. --
  1570. FOR xstart xfinish \\->
  1571. NEXT \\->
  1572. FOR xstart xfinish \\->
  1573. STEP xincrement \\->
  1574. STEP 'symincrement' \\->
  1575. --
  1576. Related: NEXT,START,STEP" "00A700" :Usr) "~xFP" ("x --> x'" "Fractional part Func
  1577. --
  1578. Returns the fractional part of an
  1579. argument.
  1580. --
  1581. x \\-> y
  1582. x_u \\-> y_u
  1583. 'sym' \\-> 'FP(sym)'
  1584. --
  1585. Related: IP" "058002" :Usr) "~xFS?C" ("n --> 0/1" "Flag Set? Clear Cmd
  1586. --
  1587. Tests whether the system or user
  1588. flag specified by nflag number is
  1589. clear, and returns a corresponding
  1590. test result: 1 (true) if the
  1591. flag is set or 0 (false) if the
  1592. flag is clear. After testing,
  1593. clears the flag
  1594. --
  1595. Related: CF,FC?,FC?C,FS?C,SF" "079002" :Usr) "~xFS?" ("n --> 0/1" "Flag Set Cmd
  1596. --
  1597. Tests whether the system or user
  1598. flag specified by nflag number is
  1599. set, and returns a corresponding
  1600. test result: 1 (true) if the flag
  1601. is set or 0 (false) if the flag
  1602. is clear.
  1603. --
  1604. Related: CF,FC?,FC?C,FS?,SF" "077002" :Usr) "~xFUNCTION" ("-->" "Function Plot Type Cmd
  1605. --
  1606. Sets the plot type to FUNCTION.
  1607. --
  1608. Related: BAR,CONIC,DIFFEQ,FASTEQ,FAST3D, GRIDMAP,HISTOGRAM,PARAMETRIC,PARSURFACE, PCONTOUR,POLAR,SCATTER,SLOPEFIELD,TRUTH, WIREFRAME,YSLICE" "0C0002" :Usr) "~xGET" ("ob n --> elm
  1609. ob = [] or [[]] or {} or name
  1610. pos = n or {n} or {n m}" "Get Element Command
  1611. --
  1612. Returns from the level 2 array or
  1613. list (or named array or list) the
  1614. real or complex number zget or
  1615. object objget whose position is
  1616. specified in level 1.
  1617. --
  1618. [[ mat ]] nposition \\-> zget
  1619. [[ mat ]] { nrow mcol } \\-> zget
  1620. 'namematrix' nposition \\-> zget
  1621. 'namematrix' { nrow mcol } \\-> zget
  1622. [ vector ] nposition \\-> zget
  1623. [ vector ] { nposition }\\-> zget
  1624. 'namevector' nposition \\-> zget
  1625. 'namevector' { nposition } \\-> zget
  1626. { list } nposition \\-> objget
  1627. { list } {nposition} \\-> objget
  1628. 'namelist' nposition \\-> objget
  1629. 'namelist' {nposition} \\-> objget
  1630. --
  1631. Related: GETI,PUT,PUTI" "097002" :Usr) "~xGETI" ("ob pos --> ob' pos' elm
  1632. ob = [] or [[]] or {} or name
  1633. pos = n or {n} or {n m}" "Get and Increment Index Command
  1634. --
  1635. Returns from the level 2 array or
  1636. list (or named array or list) the
  1637. real or complex number zget or
  1638. object objget whose position is
  1639. specified in level 1, along with
  1640. the level 2 argument and the next
  1641. position in that argument.
  1642. --
  1643. [[ mat ]] npos1
  1644. \\-> [[ mat ]] npos2 zget
  1645. [[ mat ]] { nr mc }1
  1646. \\-> [[ mat ]] { nr mc }2 zget
  1647. 'namemat' npos1
  1648. \\-> 'namemat' npos2 zget
  1649. 'namemat' { nr mc }1
  1650. \\-> 'namemat' { nr mc }2 zget
  1651. [ vec ] npos1
  1652. \\-> [ vec ] npos2 zget
  1653. [ vec ] { npos1 }
  1654. \\-> [ vec ] { npos2 } zget
  1655. 'namevec' npos1
  1656. \\-> 'namevec' npos2 zget
  1657. 'namevec' { npos1 }
  1658. \\-> 'namevec' { npos2 } zget
  1659. { list } npos1
  1660. \\-> { list } npos2 objget
  1661. { list } { npos1 }
  1662. \\-> { list } { npos2 } objget
  1663. 'namelist' npos1
  1664. \\-> 'namelist' npos2 objget
  1665. 'namelist' { npos1 }
  1666. \\-> 'namelist' { npos2 } objget
  1667. --
  1668. Related: GET,PUT,PUTI" "098002" :Usr) "~xGOR" ("g_targ {#n #m} grob --> g_targ'
  1669. g_targ (x,y) grob --> g_targ'
  1670. PICT ... ... -->" "Graphics OR Cmd
  1671. --
  1672. Superimposes grob1 onto grobtgt
  1673. or PICT, with the upper left
  1674. corner of grob1 positioned at the
  1675. specified coordinate in grobtgt
  1676. or PICT.
  1677. --
  1678. grobtgt {#n #m} grob1 \\-> grob'
  1679. grobtgt (x,y) grob1 \\-> grob'
  1680. PICT {#n #m} grob1 \\->
  1681. PICT (x,y) grob1 \\->
  1682. --
  1683. Related: GXOR,REPL,SUB" "0B4002" :Usr) "~x\\->GROB" ("ob n_chrsize --> grob" "Stack to Graphics Object Cmd
  1684. --
  1685. Creates a graphics object representing
  1686. the level 2 object, where
  1687. the argument nchar size specifies
  1688. the character size of the representation.
  1689. --
  1690. Related: \\->LCD,LCD\\->" "0BB002" :Usr) "~x>GROB" ("ob n_chrsize --> grob" "Stack to Graphics Object Cmd
  1691. --
  1692. Creates a graphics object representing
  1693. the level 2 object, where
  1694. the argument nchar size specifies
  1695. the character size of the representation.
  1696. --
  1697. Related: \\->LCD,LCD\\->" "0BB002" :Usr) "~xGXOR" ("g_targ {#n #m} g_src --> g_targ'
  1698. g_targ (x,y) g_src --> g_targ'
  1699. PICT ... ... -->" "Graphics Exclusive OR Cmd
  1700. --
  1701. Superimposes grob1 onto grobtgt
  1702. or PICT, with the upper left
  1703. corner of grob1 positioned at the
  1704. specified coordinate in grobtgt
  1705. or PICT.
  1706. --
  1707. grobtgt {#n #m} grob1\\-> grobresult
  1708. grobtgt (x,y) grob1\\-> grobresult
  1709. PICT {#n #m} grob1\\->
  1710. PICT (x,y) grob1\\->
  1711. --
  1712. Related: GOR,REPL,SUB" "0B5002" :Usr) "~xHEAD" ("{} --> ob
  1713. $ --> $'" "First Listed Element Cmd
  1714. --
  1715. Returns the first element of a
  1716. list or string.
  1717. --
  1718. Related: TAIL" "02B0AB" :Usr) "~xHMS-" ("hms1 hms2 --> hms3" "Hours-Minutes-Seconds Minus Cmd
  1719. --
  1720. Returns the difference of two
  1721. real number, where the arguments
  1722. and the result are interpreted in
  1723. hours-minutes-seconds format.
  1724. --
  1725. Related: HMS\\->,\\->HMS,HMS+" "067002" :Usr) "~xHMS+" ("hms1 hms2 --> hms3" "Hours-Minutes-Seconds Plus Cmd
  1726. --
  1727. Returns the sum of two real number,
  1728. where the arguments and the
  1729. result are interpreted in
  1730. hours-minutes-seconds format.
  1731. --
  1732. Related: HMS\\->,\\->HMS,HMS-" "066002" :Usr) "~x\\->HMS" ("x --> x'" "Decimal to Hours-Minutes-Seconds
  1733. Cmd
  1734. --
  1735. Converts a real number representing
  1736. hours or degrees with a decimal
  1737. fraction to hours-minutes-seconds format.
  1738. --
  1739. Related: HMS\\->,HMS+,HMS-" "064002" :Usr) "~x>HMS" ("x --> x'" "Decimal to Hours-Minutes-Seconds
  1740. Cmd
  1741. --
  1742. Converts a real number representing
  1743. hours or degrees with a decimal
  1744. fraction to hours-minutes-seconds format.
  1745. --
  1746. Related: HMS\\->,HMS+,HMS-" "064002" :Usr) "~xHMS\\->" ("x --> x'" "Hours-Min-Sec to Decimal Cmd
  1747. --
  1748. Converts a real number in hours
  1749. -minutes-seconds format to its
  1750. decimal form (hours or degrees
  1751. with a decimal fraction.
  1752. --
  1753. Related: \\->HMS,HMS+,HMS-" "065002" :Usr) "~xHMS>" ("x --> x'" "Hours-Min-Sec to Decimal Cmd
  1754. --
  1755. Converts a real number in hours
  1756. -minutes-seconds format to its
  1757. decimal form (hours or degrees
  1758. with a decimal fraction.
  1759. --
  1760. Related: \\->HMS,HMS+,HMS-" "065002" :Usr) "~xHOME" ("-->" "HOME Directory Cmd
  1761. --
  1762. Makes the HOME directory the
  1763. current directory.
  1764. --
  1765. Related: CRDIR,PATH,PGDIR,UPDIR" "019002" :Usr) "~xIDN" ("n --> [[]]
  1766. [[]] --> [[]]'
  1767. name --> [[]]" "Identity Matrix Cmd
  1768. --
  1769. Returns an identity matrix; that
  1770. is, a square matrix with its
  1771. diagonal elements equal to 1 and
  1772. its off-diagonal elements equal
  1773. to 0.
  1774. --
  1775. Related: CON" "093002" :Usr) "~xIF" ("-->" "IF Conditional Structure Cmd
  1776. --
  1777. Starts IF ... THEN ... END and
  1778. IF ... THEN ... ELSE ... END
  1779. conditional structures.
  1780. --
  1781. IF \\->
  1782. THEN T/F \\->
  1783. END \\->
  1784. \\->
  1785. IF \\->
  1786. THEN T/F \\->
  1787. ELSE \\->
  1788. END \\->
  1789. --
  1790. Related: CASE,ELSE,END,IFERR,THEN" "000700" :Usr) "~xIFERR" ("-->" "If Error Conditional Struct Cmd
  1791. --
  1792. Starts IFERR ... THEN ... END and
  1793. IFERR ... THEN ... ELSE ... END
  1794. error trapping structures.
  1795. --
  1796. Related: CASE,ELSE,END,IF,THEN" "00D700" :Usr) "~xIFT" ("0/1 obj --> ?" "IF-THEN Cmd
  1797. --
  1798. Executes obj if T/F is nonzero.
  1799. Discards obj if T/F is zero.
  1800. --
  1801. Related: IFTE" "023002" :Usr) "~xIFTE" ("0/1 objT objF --> ?" "IF-THEN-ELSE Cmd
  1802. --
  1803. Executes objT if T/F is nonzero.
  1804. Discards objF if T/F is zero." "022002" :Usr) "~xi" ("--> i" "" "035002" :Usr) "~xIM" ("(x,y) --> y
  1805. [] --> []'" "Imaginary Part Func
  1806. --
  1807. Returns the imaginary part of its
  1808. (complex) argument.
  1809. --
  1810. x \\-> 0
  1811. (x,y) \\-> y
  1812. [ R-arr ] \\-> [ R-arr ]
  1813. [ C-arr ] \\-> [ R-arr ]
  1814. 'sym' \\-> 'IM(sym)'
  1815. --
  1816. Related: C\\->R,RE,R\\->C" "080002" :Usr) "~xINCR" ("name --> x" "Increment Cmd
  1817. --
  1818. Takes a variable on level 1, adds
  1819. 1, stores the new value back into
  1820. the original variable, and returns
  1821. the new value to level 1.
  1822. --
  1823. Related: DECR" "0FD002" :Usr) "~xINPUT" ("$prompt $ --> $'
  1824. $prompt {specs} --> $'" "Input Cmd
  1825. --
  1826. Prompts for data input to the
  1827. command line and prevents the
  1828. user access to stack operations.
  1829. --
  1830. Related: PROMPT,STR\\->" "10A002" :Usr) "~xINV" ("x --> 1/x
  1831. [[]] --> [[]]'" "Inverse (1/x) Analytic Func
  1832. --
  1833. Returns the reciprocal or the
  1834. matrix inverse.
  1835. --
  1836. Related: SINV,/" "03E002" :Usr) "~xIP" ("x --> n" "Integer Part Func
  1837. --
  1838. Returns the integer part of the
  1839. argument.
  1840. --
  1841. x \\-> n
  1842. x_u \\-> n_u
  1843. 'sym' \\-> 'IP(sym)'
  1844. --
  1845. Related: FP" "057002" :Usr) "~xISOL" ("symb var --> symb'" "Isolate Variable Cmd
  1846. --
  1847. Returns an algebraic symb' that
  1848. rearranges symb to \"isolate\"
  1849. the first occurrence of variable
  1850. var.
  1851. --
  1852. Related: COLCT,EXPAN,QUAD,SHOW,SOLVE" "102002" :Usr) "~x_" ("" "" "0E0002" :Usr) "~xFORMUNIT" ("" "" "0E0002" :Usr) "~x'" ("" "" "013700" :Usr) "~xENDTIC" ("" "" "013700" :Usr) "~x\\<<" ("" "" "010700" :Usr) "~x<<" ("" "" "010700" :Usr) "~x\\>>" ("" "" "011700" :Usr) "~x>>" ("" "" "011700" :Usr) "~xKEY" ("--> rc 1
  1853. --> 0" "Key Cmd
  1854. --
  1855. Returns to level 1 a test result,
  1856. and if a key is pressed, returns
  1857. to level 2 the row-column location
  1858. xn m of that key.
  1859. --
  1860. Related: WAIT,KEYEVAL" "02B002" :Usr) "~xKILL" ("-->" "Cancel Halted Programs Cmd
  1861. --
  1862. Cancels all currently halted
  1863. programs. (Halted programs are
  1864. typically canceled by pressing
  1865. PRG NXT RUN KILL.) If KILL is
  1866. executed within a program, that
  1867. program is also canceled.
  1868. --
  1869. Related: CONT,DOERR,HALT,PROMPT" "01B002" :Usr) "~xLABEL" ("-->" "Label Axes Cmd
  1870. --
  1871. Labels axes in PICT with x- and
  1872. y-axis variable names and with
  1873. the minimum and maximum values of
  1874. the display ranges.
  1875. --
  1876. Related: LABEL,DRAW,DRAX" "0AA002" :Usr) "~xLASTARG" ("--> ob1 .. obn" "Last Arguments Cmd
  1877. --
  1878. Returns copies of the arguments
  1879. of the most recently executed
  1880. command." "028002" :Usr) "~xLAST" ("--> ob1 .. obn" "Last Arguments Cmd
  1881. --
  1882. Returns copies of the arguments
  1883. of the most recently executed
  1884. command." "028002" :Usr) "~xLINE" ("(x1,y1) (x2,y2) -->
  1885. {#n1 #m1} {#n2 #m2} -->" "Draw Line Cmd
  1886. --
  1887. Draws a line in PICT between the
  1888. coordinates in levels 1 and 2.
  1889. --
  1890. Related: ARC,BOX,TLINE" "0AF002" :Usr) "~xLINFIT" ("-->" "Linear Curve Fit Cmd
  1891. --
  1892. Stores LINFIT as the fifth parameter
  1893. in the reserved variable
  1894. \\GSPAR, indicating that subsequent
  1895. executions of LR are to use the
  1896. linear curve fitting model.
  1897. --
  1898. <REF>TEXT:Reserved|\\GSPAR
  1899. --
  1900. Related: BESTFIT,EXPFIT,LOGFIT,LR, PWRFIT" "0480AB" :Usr) "~xLININ" ("symb var --> 0/1" "Linear Test Func
  1901. --
  1902. Tests whether an algebraic is
  1903. structurally linear for a given
  1904. variable." "0010AB" :Usr) "~xLIST\\->" ("{} --> ob1...obn n" "List to Stack Cmd
  1905. --
  1906. Takes a list of n objects and
  1907. returns them in separate levels,
  1908. and returns the total number of
  1909. objects to level 1.
  1910. --
  1911. Related: ARRY\\->,DTAG,EQ\\->,\\->LIST, OBJ\\->,STR\\->" "083002" :Usr) "~xLIST>" ("{} --> ob1...obn n" "List to Stack Cmd
  1912. --
  1913. Takes a list of n objects and
  1914. returns them in separate levels,
  1915. and returns the total number of
  1916. objects to level 1.
  1917. --
  1918. Related: ARRY\\->,DTAG,EQ\\->,\\->LIST, OBJ\\->,STR\\->" "083002" :Usr) "~x\\->LIST" ("ob1 .. obn n --> {}" "Stack to List Cmd
  1919. --
  1920. Takes n objects from level n+1
  1921. through level 2 and returns a
  1922. list of those n objects.
  1923. --
  1924. Related: \\->ARRY,LIST\\->,\\->STR, \\->TAG,\\->UNIT" "07D002" :Usr) "~x>LIST" ("ob1 .. obn n --> {}" "Stack to List Cmd
  1925. --
  1926. Takes n objects from level n+1
  1927. through level 2 and returns a
  1928. list of those n objects.
  1929. --
  1930. Related: \\->ARRY,LIST\\->,\\->STR, \\->TAG,\\->UNIT" "07D002" :Usr) "~xLN" ("x --> x'" "Natural Logarithm Analytic Func
  1931. --
  1932. Returns the natural (base e)
  1933. logarithm of the argument.
  1934. --
  1935. z \\-> ln z
  1936. 'sym' \\-> 'LN(sym)'
  1937. --
  1938. Related: ALOG,EXP,ISOL,LNP1,LOG" "050002" :Usr) "~xLNP1" ("x --> x'" "Natural Log of x+1 Analytic Func
  1939. --
  1940. Returns ln (x + 1).
  1941. --
  1942. x \\-> ln(x+1)
  1943. 'sym' \\-> 'LNP1(sym)'
  1944. --
  1945. Related: EXPM,LN" "053002" :Usr) "~xLOG" ("x --> x'" "Common Logarithm Analytic Func
  1946. --
  1947. Returns the common logarithm
  1948. (base 10) of the argument.
  1949. --
  1950. z \\-> log z
  1951. 'sym' \\-> 'LOG(sym)'
  1952. --
  1953. Related: ALOG,EXP,ISOL,LN" "051002" :Usr) "~xLOGFIT" ("-->" "Logarithmic Curve Fit Cmd
  1954. --
  1955. Stores LOGFIT as the fifth parameter
  1956. in the reserved variable
  1957. \\GSPAR, indicating that subsequent
  1958. executions of LR are to use the
  1959. logarithmic curve-fitting model.
  1960. --
  1961. <REF>TEXT:Reserved|\\GSPAR
  1962. --
  1963. Related: BESTFIT,EXPFIT,LINFIT,LR,PWRFIT" "0490AB" :Usr) "~xLQ" ("[[]] --> [[L]] [[Q]] [[P]]" "LQ Factorization of a Matrix Cmd
  1964. --
  1965. Returns the LQ factorization of
  1966. an n\327m matrix.
  1967. --
  1968. Related: LSQ,QR" "00F0AB" :Usr) "~xLSQ" ("[B] [[A]] --> []'
  1969. [[B]] [[A]] --> [[]]'" "Least Squares Solution Cmd
  1970. --
  1971. Returns the minimum norm least
  1972. squares solution to any system of
  1973. linear equations where A \327 X = B
  1974. --
  1975. Related: LQ,RANK,QR,/" "0080AB" :Usr) "~xLU" ("[[]] --> [[L]] [[U]] [[P]]" "LU Dec of a Sq. Matrix Cmd
  1976. --
  1977. Returns the LU decomposition of a square
  1978. matrix.
  1979. --
  1980. Related: DET,INV,LSQ,/" "00D0AB" :Usr) "~xMANT" ("x --> x'" "Mantissa Func
  1981. --
  1982. Returns the mantissa of the argument.
  1983. --
  1984. x \\-> ymant
  1985. 'sym' \\-> 'MANT(sym)'
  1986. --
  1987. Related: SIGN,XPON" "061002" :Usr) "~x\\|vMATCH" ("symb {spat srepl} --> symb' 0/1
  1988. symb {spat srepl scond} --> symb' 0/1" "Match Pattern Down Cmd
  1989. --
  1990. Rewrites an expression.
  1991. --
  1992. Related: X\\|^MATCH" "0DF002" :Usr) "~xMATCHDN" ("symb {spat srepl} --> symb' 0/1
  1993. symb {spat srepl scond} --> symb' 0/1" "Match Pattern Down Cmd
  1994. --
  1995. Rewrites an expression.
  1996. --
  1997. Related: X\\|^MATCH" "0DF002" :Usr) "~x\\|^MATCH" ("symb {spat srepl} --> symb' 0/1
  1998. symb {spat srepl scond} --> symb' 0/1" "Bottom-Up Match and Replace Cmd
  1999. --
  2000. Rewrites an expression.
  2001. --
  2002. Related: X\\|VMATCH" "0DE002" :Usr) "~xMATCHUP" ("symb {spat srepl} --> symb' 0/1
  2003. symb {spat srepl scond} --> symb' 0/1" "Bottom-Up Match and Replace Cmd
  2004. --
  2005. Rewrites an expression.
  2006. --
  2007. Related: X\\|VMATCH" "0DE002" :Usr) "~xMAX" ("x y --> x'" "Maximum Func
  2008. --
  2009. Returns the greater (more positive)
  2010. of the arguments.
  2011. --
  2012. x y \\-> max(x, y)
  2013. x 'sym' \\-> 'MAX(x, sym)'
  2014. 'sym' x \\-> 'MAX(sym, x)'
  2015. 'sym1' 'sym2' \\-> 'MAX(sym1, sym2)'
  2016. x_u1 y_u2 \\-> max(x_u1, y_u2)
  2017. --
  2018. Related: MIN" "05C002" :Usr) "~xMAXR" ("--> MAXR" "Maximum Real Func
  2019. --
  2020. Returns the symbolic constant
  2021. 'MAXR' or its numerical
  2022. representation, 9.99999999999E499.
  2023. --
  2024. \\-> 'MAXR'
  2025. \\-> 9.99999999999E499
  2026. --
  2027. Related: Ee,i,MINR,\\pi" "032002" :Usr) "~xMEM" ("--> x" "Memory Available Cmd
  2028. --
  2029. Returns the number of bytes of
  2030. available RAM.
  2031. --
  2032. Related: BYTES" "109002" :Usr) "~xMIN" ("x y --> x'" "Minumum Func
  2033. --
  2034. Returns the lesser (more
  2035. negative) of its two arguments.
  2036. --
  2037. x y \\-> min(x, y)
  2038. x 'sym' \\-> 'MIN(x, sym)'
  2039. 'sym' x \\-> 'MIN(sym, x)'
  2040. 'sym1' 'sym2' \\-> 'MIN(sym1, sym2)'
  2041. x_u1 y_u2 \\-> min(x_u1, y_u2)
  2042. --
  2043. Related: MAX" "05D002" :Usr) "~xMINR" ("--> MINR" "Minimum Real Func
  2044. --
  2045. Returns the symbolic constant
  2046. 'MINR' or its numerical representation,
  2047. 1.00000000000E-499.
  2048. --
  2049. \\-> 'MAXR'
  2050. \\-> 1.00000000000E-499
  2051. --
  2052. Related: e,i,MAXR,\\pi" "033002" :Usr) "~xMOD" ("x y --> x'" "Modulo Func
  2053. --
  2054. Returns a remainder defined by:
  2055. x mod y = x - y floor (x/y)
  2056. --
  2057. x y \\-> x mod y
  2058. x 'sym' \\-> 'MOD(x, sym)'
  2059. 'sym' x \\-> 'MOD(sym, x)'
  2060. 'sym1' 'sym2' \\-> 'MOD(sym1, sym2)'
  2061. --
  2062. Related: FLOOR,/" "060002" :Usr) "~xMSGBOX" ("$ -->" "Message Box Cmd
  2063. --
  2064. Creates a user-defined message
  2065. box.
  2066. --
  2067. Related: CHOOSE,INFORM,PROMPT" "0280AB" :Usr) "~xNEG" ("x --> x'" "Negate Analytic Func
  2068. --
  2069. Changes the sign or negates an
  2070. object.
  2071. --
  2072. z \\-> -z
  2073. #n1 \\-> #n2
  2074. [ arr ] \\-> [ -arr ]
  2075. 'sym' \\-> '-(sym)'
  2076. x_u \\-> -x_u
  2077. grob1 \\-> grob2
  2078. PICT1 \\-> PICT2
  2079. --
  2080. Related: ABS,CONJ,NOT,SIGN" "02E002" :Usr) "~xNEXT" ("-->" "NEXT Cmd
  2081. --
  2082. Ends definite loop structures.
  2083. See the FOR and START command
  2084. entries for syntax information.
  2085. --
  2086. Related: FOR,START,STEP" "00B700" :Usr) "~xNOT" ("x --> x'" "NOT Cmd
  2087. --
  2088. Returns the one's complement or
  2089. the logical inverse of the argument.
  2090. --
  2091. #n1 \\-> #n2
  2092. T/F \\-> 0/1
  2093. \"str1\" \\-> \"str2\"
  2094. 'sym' \\-> 'NOT sym'
  2095. --
  2096. Related: AND,OR,XOR" "0C6002" :Usr) "~xNSUB" ("--> npos" "Number of Sublist Cmd
  2097. --
  2098. Provides a way to access the
  2099. current sublist position during
  2100. an iteration of a program or
  2101. command applied using DOSUBS.
  2102. --
  2103. Related: DOSUBS,ENDSUB" "0300AB" :Usr) "~xNUM" ("$ --> n" "Character Number Cmd
  2104. --
  2105. Returns the character code n for
  2106. the first character in the string.
  2107. --
  2108. Related: CHR,POS,REPL,SIZE,SUB" "089002" :Usr) "~x\\->NUM" ("x --> x'" "Evaluate to Number Cmd
  2109. --
  2110. Evaluates a symbolic argument
  2111. object and returns the numerical
  2112. result.
  2113. --
  2114. objsym \\-> z
  2115. --
  2116. Related: \\->Q,\\->Qpi" "027002" :Usr) "~x>NUM" ("x --> x'" "Evaluate to Number Cmd
  2117. --
  2118. Evaluates a symbolic argument
  2119. object and returns the numerical
  2120. result.
  2121. --
  2122. objsym \\-> z
  2123. --
  2124. Related: \\->Q,\\->Qpi" "027002" :Usr) "~xOBJ\\->" ("ob --> ?" "Object to Stack Cmd
  2125. --
  2126. Separates an object into its
  2127. components onto the stack. For some
  2128. object types, the number of
  2129. composites is returned to level 1.
  2130. --
  2131. (x,y) \\-> x y
  2132. {obj1 ... objn} \\-> obj1 objn n
  2133. [x1 ... xn] \\-> x1 xn {n}
  2134. [[x11 ... xm n]] \\-> x11 xm n {m n}
  2135. \"obj\" \\-> evaluated-obj
  2136. 'sym' \\-> obj1 ... objn n func
  2137. x_u \\-> x 1_u
  2138. :tag:obj \\-> obj \"tag\"
  2139. --
  2140. Related: ARRY\\->,C\\->R,DTAG,EQ\\->, R\\->C,STR\\->,\\->TAG" "08E002" :Usr) "~xOBJ>" ("ob --> ?" "Object to Stack Cmd
  2141. --
  2142. Separates an object into its
  2143. components onto the stack. For some
  2144. object types, the number of
  2145. composites is returned to level 1.
  2146. --
  2147. (x,y) \\-> x y
  2148. {obj1 ... objn} \\-> obj1 objn n
  2149. [x1 ... xn] \\-> x1 xn {n}
  2150. [[x11 ... xm n]] \\-> x11 xm n {m n}
  2151. \"obj\" \\-> evaluated-obj
  2152. 'sym' \\-> obj1 ... objn n func
  2153. x_u \\-> x 1_u
  2154. :tag:obj \\-> obj \"tag\"
  2155. --
  2156. Related: ARRY\\->,C\\->R,DTAG,EQ\\->, R\\->C,STR\\->,\\->TAG" "08E002" :Usr) "~xOFF" ("-->" "Off Cmd
  2157. --
  2158. Turns off the calculator.
  2159. --
  2160. Related: CONT,HALT,KILL" "01C002" :Usr) "~xOR" ("x y --> x'" "OR Func
  2161. --
  2162. Returns the logical OR of two
  2163. arguments.
  2164. --
  2165. #n1 #n2 \\-> #n3
  2166. \"str1\" \"str2\" \\-> \"str3\"
  2167. T/F1 T/F2 \\-> 0/1
  2168. T/F 'sym' \\-> 'T/F OR sym'
  2169. 'sym' T/F \\-> 'sym OR T/F'
  2170. 'sym1' 'sym2' \\-> 'sym1 OR sym2'
  2171. --
  2172. Related: AND,NOT,XOR" "0C5002" :Usr) "~xOVER" ("1 2 --> 1 2 1" "Over Cmd
  2173. --
  2174. Returns a copy to stack level 1
  2175. of the object in level 2.
  2176. --
  2177. Related: PICK,ROLL,ROLLD,ROT,SWAP" "0E8002" :Usr) "~xPARAMETRIC" ("-->" "Parametric Plot Type Cmd
  2178. --
  2179. Sets the plot type to PARAMETRIC.
  2180. --
  2181. Related: BAR,CONTOUR,DIFFEQ,FUNCTION, GRIDMAP,HISTOGRAM,PARSURFACE,PCONTOUR, POLAR,SCATTER,SLOPEFIELD,TRUTH, WIREFRAME,YSLICE" "0C2002" :Usr) "~xPCOEF" ("[roots] --> [coefs]" "Monic Polynomial Coefficients Cmd
  2182. --
  2183. Returns the coefficients of a
  2184. monic polynomial (a polynomial
  2185. with a leading coefficient of 1)
  2186. having specific roots.
  2187. --
  2188. Related: PEVAL,PROOT" "0250AB" :Usr) "~xPDIM" ("(xmin,ymin) (xmax,ymax) -->
  2189. #width #height -->" "PICT Dimension Cmd
  2190. --
  2191. Replaces PICT with a blank PICT
  2192. of the specified dimensions.
  2193. --
  2194. Related: PMAX,PMIN" "0A4002" :Usr) "~xPERM" ("n k --> n'" "Permutations Func
  2195. --
  2196. Returns the number of possible
  2197. permutations of n items taken m
  2198. at a time.
  2199. --
  2200. n m \\-> Pn,m
  2201. 'symn' m \\-> 'PERM(symn,m)'
  2202. n 'symm' \\-> 'PERM(n,symm)'
  2203. 'symn' 'symm' \\-> 'PERM(symn,symm)'
  2204. --
  2205. Related: COMB,!" "074002" :Usr) "~xPEVAL" ("[coefs] x --> x'" "Polynomial Evaluation Cmd
  2206. --
  2207. Evaluates an n-degree polynomial
  2208. at x.
  2209. --
  2210. Related: PCOEFF,PROOT" "0260AB" :Usr) "~xPICK" ("1...n n --> 1..n 1" "Pick Object Cmd
  2211. --
  2212. Copies the contents of a specified
  2213. level to level 1.
  2214. --
  2215. Related: DUP,DUPN,DUP2,OVER,ROLL,ROLLD, ROT,SWAP" "0EC002" :Usr) "~xPICT" ("--> PICT" "PICT Cmd
  2216. --
  2217. Puts the name PICT on the stack.
  2218. --
  2219. Related: GOR,GCOR,NEG,PICTURE,PVIEW, RCL,REPL,SIZE,STO,SUB" "0B3002" :Usr) "~xPICTURE" ("-->" "Picture Environment Cmd
  2220. --
  2221. Selects the Picture environment
  2222. (selects the graphics display and
  2223. activates the graphics cursor and
  2224. Picture menu).
  2225. --
  2226. Related: PVIEW,TEXT,PIC" "0A9002" :Usr) "~xGRAPH" ("-->" "Picture Environment Cmd
  2227. --
  2228. Selects the Picture environment
  2229. (selects the graphics display and
  2230. activates the graphics cursor and
  2231. Picture menu).
  2232. --
  2233. Related: PVIEW,TEXT,PIC" "0A9002" :Usr) "~xPINIT" ("-->" "Port Initialize Cmd
  2234. --
  2235. Initializes all currently active
  2236. ports. Does not affect data
  2237. already stored in a port." "03D701" :Usr) "~xPIX?" ("(x,y) --> 1/0
  2238. {#n #m} --> 1/0" "Pixel On? Cmd
  2239. --
  2240. Tests whether the specified pixel
  2241. in PICT is on; returns 1 (true)
  2242. if the pixel is on, and 0 (false)
  2243. if the pixel is off.
  2244. --
  2245. Related: PIXON,PIXOFF" "0AE002" :Usr) "~xPIXOFF" ("(x,y) -->
  2246. {#n #m} -->" "Pixel Off Cmd
  2247. --
  2248. Turns off the pixel at the specified
  2249. coordinate in PICT.
  2250. --
  2251. Related: PIX?,PIXON" "0AD002" :Usr) "~xPIXON" ("(x,y) -->
  2252. {#n #m} -->" "Pixel On Cmd
  2253. --
  2254. Turns on the pixel at the
  2255. specified coordinate in PICT.
  2256. --
  2257. Related: PIX?,PIXOFF" "0AC002" :Usr) "~xPMAX" ("(x,y) -->" "PICT Maximum Cmd
  2258. --
  2259. Specifies (x,y) as the coordinates
  2260. at the upper right corner of
  2261. the display.
  2262. --
  2263. Related: PDIM,PMIN,XRNG,YRNG" "09D002" :Usr) "~xPMIN" ("(x,y) -->" "PICT Minimum Cmd
  2264. --
  2265. Specifies (x,y) as the coordinates
  2266. at the lower left corner of
  2267. the display.
  2268. --
  2269. Related: PDIM,PMAX,XRNG,YRNG" "09C002" :Usr) "~xPOLAR" ("-->" "Polar Plot Type Cmd
  2270. --
  2271. Sets the plot type to POLAR.
  2272. --
  2273. Related: BAR,CONIC,DIFFEQ,FUNCTION, GRIDMAP,HISTOGRAM,PARAMETRIC,PARSURFACE, PCONTOUR,SCATTER,SLOPEFIELD,TRUTH, WIREFRAME,YSLICE" "0C1002" :Usr) "~xPREDX" ("y --> x" "Predicted x-Value Cmd
  2274. --
  2275. Returns the predicted dependent
  2276. variable value xindepend, based
  2277. on the independent-variable value
  2278. ydepend, the currently selected
  2279. stat model, and the current
  2280. regression coefficients in the
  2281. reserved variable \\GSPAR.
  2282. --
  2283. <REF>TEXT:Reserved|\\GSPAR
  2284. --
  2285. Related: COL\\GS,CORR,COV,EXPFIT, \\GSLINE,LINFIT,LOGFIT,LR, PREDY,PWRFIT,XCOL,YCOL" "0F1002" :Usr) "~xPREDY" ("x --> y" "Predicted y-Value Cmd
  2286. --
  2287. Returns the predicted dependent
  2288. variable value ydepend, based on
  2289. the independent-variable value
  2290. xindepend, the currently selected
  2291. stat model, and the current
  2292. regression coefficients in the
  2293. reserved variable \\GSPAR.
  2294. --
  2295. <REF>TEXT:Reserved|\\GSPAR
  2296. --
  2297. Related: COL\\GS,CORR,COV,EXPFIT, \\GSLINE,LINFIT,LOGFIT,LR, PREDX,PWRFIT,XCOL,YCOL" "0F0002" :Usr) "~xPROOT" ("[coefs] --> [roots]" "Polynomial Roots Cmd
  2298. --
  2299. Returns all roots of an n-degree
  2300. polynomial having real or complex
  2301. roots.
  2302. --
  2303. Related: PCOEFF,PEVAL" "0240AB" :Usr) "~xPSDEV" ("--> xpsdev
  2304. --> {x1...xn}" "Population Standard Deviation Cmd
  2305. --
  2306. Calculates the population standard
  2307. deviation of each of the m
  2308. columns of coordiate values in
  2309. the current stastics matrix
  2310. (reserved variable \\GSDAT).
  2311. --
  2312. <REF>TEXT:Reserved|\\GSDAT
  2313. --
  2314. Related: MEAN,PCOV,PVAR,SDEV,TOT,VAR" "0200F2" :Usr) "~xPUT" ("ob pos obj --> ob'
  2315. ob = [] or [[]] or {} or name
  2316. pos = n or {n} or {n m}" "Put Element Cmd
  2317. --
  2318. In the level 3 array or list, PUT
  2319. replaces with zput or objput the
  2320. object whose position is specified
  2321. in level 2; if the array or
  2322. list is unnamed, returns the new
  2323. array or list.
  2324. --
  2325. Related: GET,GETI,PUTI" "095002" :Usr) "~xPUTI" ("ob pos obj --> [] pos'
  2326. ob = [] or [[]] or {} or name
  2327. pos = n or {n} or {n m}" "Put and Increment Index Cmd
  2328. --
  2329. In the level 3 array or list,
  2330. replaces with zput or objput the
  2331. object whose position is specified
  2332. in level 2, returning the
  2333. new array or list and the next
  2334. position in that array or list.
  2335. --
  2336. Related: GET,GETI,PUT" "096002" :Usr) "~xPVARS" ("nport --> {} mem" "Port-Variables Cmd
  2337. --
  2338. Returns a list of the backup objects
  2339. (:nport:name) and the lib-
  2340. rary objects (:nport:nlibrary) in
  2341. the specified port. Also returns
  2342. the available memory size (if
  2343. RAM) or the memory type.
  2344. --
  2345. Related: VARS" "01E0F2" :Usr) "~xPVIEW" ("(x,y) -->
  2346. {#n #m} -->" "PICT View Cmd
  2347. --
  2348. Displays PICT with the specified
  2349. coordinate at the upper left
  2350. corner of the graphics display.
  2351. --
  2352. Related: FREEZE,PICTURE,PICT,TEXT" "0AB002" :Usr) "~xPX\\->C" ("{#m #n} --> (x,y)" "Pixel to Complex Cmd
  2353. --
  2354. Converts the specified pixel
  2355. coordinates to user-unit
  2356. coordinates.
  2357. --
  2358. Related: C\\->PX" "0A7002" :Usr) "~xPX>C" ("{#m #n} --> (x,y)" "Pixel to Complex Cmd
  2359. --
  2360. Converts the specified pixel
  2361. coordinates to user-unit
  2362. coordinates.
  2363. --
  2364. Related: C\\->PX" "0A7002" :Usr) "~x\\->Q" ("x --> a/b" "To Quotient Cmd
  2365. --
  2366. Returns a rational form of the
  2367. argument.
  2368. --
  2369. x \\-> 'a/b'
  2370. (x,y) \\-> 'a/b+c/d*i
  2371. 'sym1' \\-> 'sym2'
  2372. --
  2373. Related: \\->Q\\pi,/" "0DC002" :Usr) "~x->Q" ("x --> a/b" "To Quotient Cmd
  2374. --
  2375. Returns a rational form of the
  2376. argument.
  2377. --
  2378. x \\-> 'a/b'
  2379. (x,y) \\-> 'a/b+c/d*i
  2380. 'sym1' \\-> 'sym2'
  2381. --
  2382. Related: \\->Q\\pi,/" "0DC002" :Usr) "~x\\->Q\\pi" ("x --> symb" "To Quotient Times \\pi Cmd
  2383. --
  2384. Returns a rational form of the
  2385. argument, or a rational form of
  2386. the argument with \\pi factored out,
  2387. whichever yields the smaller
  2388. denominator.
  2389. --
  2390. x \\-> 'a/b*\\pi'
  2391. x \\-> 'a/b'
  2392. 'sym1' \\-> 'symb2'
  2393. (x,y) \\-> 'a/b*\\pi+c/d*\\pi*i
  2394. (x,y) \\-> 'a/b+c/d*i
  2395. --
  2396. Related: \\->Q,/,\\pi" "0DD002" :Usr) "~x->QPI" ("x --> symb" "To Quotient Times \\pi Cmd
  2397. --
  2398. Returns a rational form of the
  2399. argument, or a rational form of
  2400. the argument with \\pi factored out,
  2401. whichever yields the smaller
  2402. denominator.
  2403. --
  2404. x \\-> 'a/b*\\pi'
  2405. x \\-> 'a/b'
  2406. 'sym1' \\-> 'symb2'
  2407. (x,y) \\-> 'a/b*\\pi+c/d*\\pi*i
  2408. (x,y) \\-> 'a/b+c/d*i
  2409. --
  2410. Related: \\->Q,/,\\pi" "0DD002" :Usr) "~xQR" ("[[]] --> [[Q]] [[R]] [[P]]" "QR Factorization of a Matrix Cmd
  2411. --
  2412. Returns the QR factorization of
  2413. an n\327m matrix.
  2414. --
  2415. Related: LQ,LSQ" "00E0AB" :Usr) "~xQUAD" ("symb var --> symb'" "Solve Quadratic Equation Cmd
  2416. --
  2417. Solves an algebraic object symb
  2418. for the variable var, and
  2419. returns an expression symb'
  2420. representing the solution.
  2421. --
  2422. Related: COLCT,EXPAN,ISOL,SHOW,SOLVE" "103002" :Usr) "~xQUOTE" ("ob --> 'ob" "Quote Argument Func
  2423. --
  2424. Returns its argument unevaluated.
  2425. --
  2426. 'sym' \\-> 'sym'
  2427. obj \\-> obj
  2428. --
  2429. Related: APPLY,|" "0D6002" :Usr) "~xRAND" ("--> x" "Random Number Cmd
  2430. --
  2431. Returns a pseudo-random number
  2432. generated using a seed value, and
  2433. updates the seed value.
  2434. --
  2435. Related: COMB,PERM,RDZ,!" "071002" :Usr) "~xRANK" ("[[]] --> n" "Matrix Rank Cmd
  2436. --
  2437. Returns the rank of a rectangular
  2438. matrix.
  2439. --
  2440. Related: LQ,LSQ,QR" "0070AB" :Usr) "~xRANM" ("{m n} --> [[]]
  2441. [[]] --> [[]]'" "Random Matrix Cmd
  2442. --
  2443. Returns a matrix of specified
  2444. dimensions that contains random
  2445. integers in the range -9 through
  2446. 9.
  2447. --
  2448. { m n } \\-> [[ rand mat ]]m\327n
  2449. [[ mat ]]m\327n \\-> [[ rand mat ]]m\327n
  2450. --
  2451. Related: RAND,RDZ" "0120AB" :Usr) "~xRATIO" ("x y --> x/y" "Prefix Divide Func
  2452. --
  2453. Prefix form of / (divide) generated
  2454. by the Equation Writer Application.
  2455. --
  2456. z1 z2 \\-> z1/z2
  2457. [arr] [[mat]] \\-> [[arr\327mat^-1]]
  2458. [arr] z \\-> [arr/z]
  2459. z 'sym' \\-> 'z/sym'
  2460. 'sym' z \\-> 'sym/z'
  2461. 'sym1' 'sym2' \\-> 'sym1/sym2'
  2462. #n1 n2 \\-> #n3
  2463. n1 #n2 \\-> #n3
  2464. #n1 #n2 \\-> #n3
  2465. x_u1 y_u2 \\-> (x/y)_u1/u2
  2466. x y_u \\-> (x/y)_1/u
  2467. x_u y \\-> (x/y)_u
  2468. 'sym' x_u \\-> 'sym/x_u'
  2469. x_u 'sym' \\-> 'x_u/sym'
  2470. --
  2471. Related: /" "0E1002" :Usr) "~xPREDIV" ("x y --> x/y" "Prefix Divide Func
  2472. --
  2473. Prefix form of / (divide) generated
  2474. by the Equation Writer Application.
  2475. --
  2476. z1 z2 \\-> z1/z2
  2477. [arr] [[mat]] \\-> [[arr\327mat^-1]]
  2478. [arr] z \\-> [arr/z]
  2479. z 'sym' \\-> 'z/sym'
  2480. 'sym' z \\-> 'sym/z'
  2481. 'sym1' 'sym2' \\-> 'sym1/sym2'
  2482. #n1 n2 \\-> #n3
  2483. n1 #n2 \\-> #n3
  2484. #n1 #n2 \\-> #n3
  2485. x_u1 y_u2 \\-> (x/y)_u1/u2
  2486. x y_u \\-> (x/y)_1/u
  2487. x_u y \\-> (x/y)_u
  2488. 'sym' x_u \\-> 'sym/x_u'
  2489. x_u 'sym' \\-> 'x_u/sym'
  2490. --
  2491. Related: /" "0E1002" :Usr) "~xRCI" ("[[]] x nrow --> [[]]'
  2492. [] x n []'" "Multiply Row by Constant Cmd
  2493. --
  2494. Multiplies row n of a matrix (or
  2495. element n of a vector) by a const
  2496. x, and returns the modified
  2497. matrix.
  2498. --
  2499. Related: RCIJ" "01F0AB" :Usr) "~xRCIJ" ("[[]] x n* n+ --> [[]]'
  2500. [] x n* n+ --> []'" "Add Multiplied Row Cmd
  2501. --
  2502. Multiplies row n* of a matrix by a
  2503. constant x, adds this product
  2504. to row n+ of the matrix, and
  2505. returns the modified matrix. Or,
  2506. multiplies element n* of a vector
  2507. by a constant x, adds this
  2508. product to element n+ of the vector,
  2509. and returns the modified
  2510. vector.
  2511. --
  2512. Related: RCI" "0200AB" :Usr) "~xRCL" ("var --> x
  2513. :port:nlib --> lib
  2514. :port:name --> ob
  2515. :port:{path} --> ob" "Recall Cmd
  2516. --
  2517. Returns the unevaluated contents
  2518. of a specified variable or plug
  2519. -in object.
  2520. --
  2521. Related: STO" "106002" :Usr) "~xRCLF" ("--> {#s1 #u1 #s2 #u2}" "Recall Flags Cmd
  2522. --
  2523. Returns a list containing four 64
  2524. bit binary integers representing
  2525. the states of the 64 system and
  2526. user flags, respectively.
  2527. --
  2528. Related: STOF" "07B002" :Usr) "~xRCLKEYS" ("--> {ob ... key ...}
  2529. --> {S ob ... key ...}" "Recall Key Assignments Cmd
  2530. --
  2531. Returns the current user key
  2532. assignments. This includes an S
  2533. if the standard key definitions
  2534. are active (not suppressed) for
  2535. those keys without user key
  2536. assignments.
  2537. --
  2538. Related: ASN,DELKEYS,STOKEYS" "10E002" :Usr) "~xRDM" ("ob size --> ob'
  2539. name size -->
  2540. ob= [] or [[]]
  2541. size = {n} or {n m}" "Redimension Array Cmd
  2542. --
  2543. Rearranges the elements of the
  2544. argument according to the
  2545. specified dimensions.
  2546. --
  2547. Related: TRN" "091002" :Usr) "~xRDZ" ("x -->" "Randomize Cmd
  2548. --
  2549. Uses a real number xseed as a
  2550. seed for the RAND command.
  2551. --
  2552. Related: COMB,PERM,RAND,!" "072002" :Usr) "~xRE" ("(x,y) --> x
  2553. [] --> []'" "Real Part Func
  2554. --
  2555. Returns the real part of the
  2556. argument.
  2557. --
  2558. x \\-> x
  2559. x_u \\-> x
  2560. (x,y) \\-> x
  2561. [ R-arr ] \\-> [ R-arr ]
  2562. [ C-arr ] \\-> [ R-arr ]
  2563. 'sym' \\-> 'RE(sym)'
  2564. --
  2565. Related: C\\->R,IM,R\\->C" "07F002" :Usr) "~xREPEAT" ("1/0 -->" "REPEAT Cmd
  2566. --
  2567. Starts loop clause in
  2568. WHILE ... REPEAT ... END
  2569. indefinite loop structure.
  2570. --
  2571. Related: END,WHILE" "006700" :Usr) "~xREPL" ("ob pos new --> ob'
  2572. ob= [[]] or [] or {} or $ or PICT
  2573. pos= N or {n m} or (n,m)" "Replace Cmd
  2574. --
  2575. Replaces a portion of the level
  2576. 3 target object with the level 1
  2577. object, beginning at a position
  2578. specified in level 2.
  2579. --
  2580. Related: CHR,GOR,GXOR,NUM,POS,SIZE,SUB" "082002" :Usr) "~xREVLIST" ("{1...n} --> {n...1}'" "Reverse List Cmd
  2581. --
  2582. Reverses the order of the
  2583. elements in a list.
  2584. --
  2585. Related: SORT" "0380AB" :Usr) "~xRL" ("# --> #'" "Rotate Left Cmd
  2586. --
  2587. Rotates a binary integer one bit
  2588. to the left.
  2589. --
  2590. Related: RLB,RR,RRB" "001002" :Usr) "~xRLB" ("# --> #'" "Rotate Left Byte Cmd
  2591. --
  2592. Rotates a binary integer one byte
  2593. to the left.
  2594. --
  2595. Related: RL,RR,RRB" "002002" :Usr) "~xRND" ("x n --> x'" "Round Func
  2596. --
  2597. Rounds an object to a specified
  2598. number of decimal places or
  2599. significant digits, or to fit the
  2600. current display format.
  2601. --
  2602. z1 nrnd \\-> z2
  2603. z 'symrnd' \\-> 'RND(z,symrnd)'
  2604. 'sym' nrnd \\-> 'RND(symb,nrnd)'
  2605. 'sym1' 'symrnd' \\-> 'RND(sym1,symrnd)'
  2606. [arr1] nrnd \\-> [arr2]
  2607. x_u nrnd \\-> y_u
  2608. x_u 'symrnd' \\-> 'RND(x_u,symrnd)'
  2609. --
  2610. Related: TRNC" "05E002" :Usr) "~xRNRM" ("[] --> x" "Row Norm Cmd
  2611. --
  2612. Returns the row norm (infinity
  2613. norm) of its argument array.
  2614. --
  2615. Related: CNRM,CROSS,DET,DOT" "068002" :Usr) "~xROLL" ("1...n n --> 2...n 1" "Roll Objects Cmd
  2616. --
  2617. Moves the contents of a specified
  2618. level to level 1, and rolls
  2619. upwards the portion of the stack
  2620. beneath the specified level.
  2621. --
  2622. Related: OVER,PICK,ROLLD,ROT,SWAP" "0ED002" :Usr) "~xROLLD" ("n ... 1 n --> 1 n...2" "Roll Down Cmd
  2623. --
  2624. Moves the contents of level 1 to
  2625. a specified level, and rolls
  2626. downwards the portion of the
  2627. stack beneath the specified level
  2628. --
  2629. Related: OVER,PICK,ROLL,ROT,SWAP" "0EE002" :Usr) "~xROOT" ("prog/s var guess --> x
  2630. prog/s var {guesses} --> x" "Root-Finder Cmd
  2631. --
  2632. Returns a real number xroot that
  2633. is a value of the specified
  2634. variable var for which the
  2635. specified program or algebraic object
  2636. most nearly evaluates to zero or
  2637. a local extremum." "0D0002" :Usr) "~xROT" ("1 2 3 --> 2 3 1" "Rotate Objects Cmd
  2638. --
  2639. Rotates the first three objects
  2640. on the stack, moving the object
  2641. in level 3 to level 1.
  2642. --
  2643. Related: OVER,PICK,ROLL,ROLLD,SWAP,UNROT" "0E7002" :Usr) "~xROW-" ("[[]] nrow --> [[]]' []
  2644. [] n --> []' elt" "Delete Row Cmd
  2645. --
  2646. Deletes row n of a matrix (or
  2647. element n of a vector), and
  2648. returns the modified matrix (or
  2649. vector) and the deleted row (or
  2650. element).
  2651. --
  2652. Related: COL-,COL+,ROW-,RSWP" "0190AB" :Usr) "~xROW+" ("[[]] [[]]' n --> [[]]''
  2653. [[]] [] n --> [[]]'
  2654. [] n n' --> []" "Insert Row Cmd
  2655. --
  2656. Inserts an array into a matrix
  2657. (or one or more numbers into a
  2658. vector) at a position indicated
  2659. by nindex, and returns the
  2660. modified matrix (or vector).
  2661. --
  2662. Related: COL-,COL+,ROW-,RSWP" "01A0AB" :Usr) "~xRR" ("# --> x'" "Rotate Right Cmd
  2663. --
  2664. Rotates a binary integer one bit
  2665. to the right.
  2666. --
  2667. Related: RL,RLB,RRB" "003002" :Usr) "~xRRB" ("# --> x'" "Rotate Right Byte Cmd
  2668. --
  2669. Rotates a binary integer one byte
  2670. to the right.
  2671. --
  2672. Related: RL,RLB,RR" "004002" :Usr) "~xRREF" ("[[]] --> [[]]'" "Reduced Row Echelon Form Cmd
  2673. --
  2674. Converts a rectangular matrix to
  2675. a reduced row echelon form." "0110AB" :CASHELP :Usr) "~xRSD" ("[B] [[A]] [Z] --> []'
  2676. [[B]] [[A]] [[Z]] --> [[]]'" "Residual Cmd
  2677. --
  2678. Computes the residual B - AZ of
  2679. the arrays B, A, and Z." "06D002" :Usr) "~xRSWP" ("[]/[[]] i j --> []/[[]]" "Row Swap Cmd
  2680. --
  2681. Swaps rows i and j of a matrix
  2682. and returns the modified matrix,
  2683. or swaps elements i and j of a
  2684. vector and returns the modified
  2685. vector.
  2686. --
  2687. Related: CSWP,ROW+,ROW-" "01D0AB" :Usr) "~xRULES" ("" "" "101002" :Usr) "~xR\\->B" ("x --> #" "Real to Binary Cmd
  2688. --
  2689. Converts a positive real integer
  2690. to its binary integer equivalent.
  2691. --
  2692. Related: B\\->R" "009002" :Usr) "~xR>B" ("x --> #" "Real to Binary Cmd
  2693. --
  2694. Converts a positive real integer
  2695. to its binary integer equivalent.
  2696. --
  2697. Related: B\\->R" "009002" :Usr) "~xR\\->C" ("x y --> (x,y)
  2698. [X] [Y] --> [(x,y)]" "Real to Complex Cmd
  2699. --
  2700. Combines two real numbers or real
  2701. arrays into a single complex
  2702. number or array.
  2703. --
  2704. Related: C\\->R,IM,RE" "07E002" :Usr) "~xR>C" ("x y --> (x,y)
  2705. [X] [Y] --> [(x,y)]" "Real to Complex Cmd
  2706. --
  2707. Combines two real numbers or real
  2708. arrays into a single complex
  2709. number or array.
  2710. --
  2711. Related: C\\->R,IM,RE" "07E002" :Usr) "~xR\\->D" ("x --> (180/\\pi)x" "Radians to Degrees Func
  2712. --
  2713. Converts a real number expressed
  2714. in radians to its equivalent in
  2715. degrees.
  2716. --
  2717. x \\-> (180/\\pi)x
  2718. 'sym' \\-> 'R\\->D(sym)'
  2719. --
  2720. Related: D\\->R" "063002" :Usr) "~xR>D" ("x --> (180/\\pi)x" "Radians to Degrees Func
  2721. --
  2722. Converts a real number expressed
  2723. in radians to its equivalent in
  2724. degrees.
  2725. --
  2726. x \\-> (180/\\pi)x
  2727. 'sym' \\-> 'R\\->D(sym)'
  2728. --
  2729. Related: D\\->R" "063002" :Usr) "~xSAME" ("ob1 ob2 --> 1/0" "Display information about the makers of the
  2730. calculator.
  2731. Same Object Cmd
  2732. --
  2733. Compares two objects, and returns
  2734. a true result (1) if they are
  2735. identical, and a false result (0)
  2736. if they are not.
  2737. --
  2738. Related: TYPE,==" "0C3002" :Usr) "~xSCALE" ("xs ys -->" "Scale Plot Cmd
  2739. --
  2740. Adjusts the first two parameters
  2741. in PPAR, (xmin, ymin) and (xmax,
  2742. ymax), so that xscale and yscale
  2743. are the new plot horizontal and
  2744. vertical scales, and the center
  2745. point doesn't change.
  2746. --
  2747. <REF>TEXT:Reserved|PPAR
  2748. --
  2749. Related: AUTO,CENTR,SCALEH,SCALEW" "0A3002" :Usr) "~xSCHUR" ("[[]] --> [[Q]] [[T]]" "Schur Decomp. of Squ. Matrix Cmd
  2750. --
  2751. Returns the Schur decomposition
  2752. of a square matrix.
  2753. --
  2754. Related: LQ,LU,QR,SVD,SVL,TRN" "0100AB" :Usr) "~xSCI" ("n -->" "Scientific Mode Cmd
  2755. --
  2756. Sets the number display format to
  2757. Scientific mode, which displays
  2758. one digit to the left of the
  2759. fraction mark and n significant
  2760. digits to the right.
  2761. --
  2762. Related: ENG,FIX,STD" "0410AB" :Usr) "~xSCONJ" ("name -->" "Store Conjugate Cmd
  2763. --
  2764. Conjugates the contents of a
  2765. named object.
  2766. --
  2767. Related: CONJ,SINV,SNEG" "0F8002" :Usr) "~xSEQ" ("prog var start end incr --> {}" "Sequential Calculation Cmd
  2768. --
  2769. Returns a list of results generated
  2770. ated by repeatedly executing prog
  2771. using index var over the range
  2772. start to end, in increments of
  2773. incr.
  2774. --
  2775. Related: DOSUBS,STREAM" "02D0AB" :Usr) "~xSF" ("n -->" "Set Flag Cmd
  2776. --
  2777. Sets a specified user or system
  2778. flag.
  2779. --
  2780. Related: CF,FC?,FC?C,FS?,FS?C" "075002" :Usr) "~xSHOW" ("symb name --> symb'
  2781. symb {names} --> symb'" "Show Variable Cmd
  2782. --
  2783. Returns symb' which is equivalent
  2784. to symb except that all
  2785. implicit references to a variable
  2786. name are made explicit.
  2787. --
  2788. Related: COLCT,EXPAN,ISOL,QUAD" "104002" :Usr) "~xSIGN" ("x --> x'" "Sign Func
  2789. --
  2790. Returns the sign of a real number
  2791. argument, the sign of the numerical
  2792. part of a unit object argument,
  2793. or the unit vector in the
  2794. direction of a complex number
  2795. argument.
  2796. --
  2797. Related: ABS,MANT,XPON" "040002" :Usr) "~xSIN" ("x --> x'" "Sine Analytic Func
  2798. --
  2799. z \\-> sin z
  2800. 'sym' \\-> 'SIN(sym)'
  2801. x_uangular \\-> sin(x_uangular)
  2802. --
  2803. Related: ASIN,COS,TAN" "043002" :Usr) "~xSINH" ("x --> x'" "Hyperbolic Sine Analytic Func
  2804. --
  2805. Returns the hyperbolic sine of
  2806. the argument.
  2807. --
  2808. z \\-> sinh z
  2809. 'sym' \\-> 'SINH(sym)'
  2810. --
  2811. Related: ANUSH,COSH,TANH" "046002" :Usr) "~xSINV" ("name -->" "Store Inverse Cmd
  2812. --
  2813. Replaces the contents of the
  2814. named variable with its inverse.
  2815. --
  2816. Related: INV,SCONJ,SNEG" "0F6002" :Usr) "~xSL" ("# --> #'" "Shift Left Cmd
  2817. --
  2818. Shifts a binary integer one bit
  2819. to the left.
  2820. --
  2821. Related: ASR,SLB,SR,SRB" "005002" :Usr) "~xSLB" ("# --> #'" "Shift Left Byte Cmd
  2822. --
  2823. Shifts a binary integer one byte
  2824. to the left.
  2825. --
  2826. Related: ASR,SL,SR,SRB" "006002" :Usr) "~xSNEG" ("name -->" "Store Negate Cmd
  2827. --
  2828. Replaces the contents of a variable
  2829. with its negative.
  2830. --
  2831. Related: NEG,SCONJ,SINV" "0F7002" :Usr) "~xSNRM" ("[] --> x" "Spectral Norm Cmd
  2832. --
  2833. Returns the spectral norm of an
  2834. array.
  2835. --
  2836. Related: ABS,CNRM,COND,RNRM,SRAD,TRACE" "0060AB" :Usr) "~xSORT" ("{} --> {}'" "Ascending Order Sort Cmd
  2837. --
  2838. Sorts the elements in a list in
  2839. ascending order.
  2840. --
  2841. Related: REVLIST" "0390AB" :Usr) "~xSQ" ("x --> x'" "Square Analytic Func
  2842. --
  2843. Returns the square of the argument.
  2844. --
  2845. z \\-> z2
  2846. x_u \\-> x2_u2
  2847. [[ mat ]] \\-> [[ mat \327 mat ]]
  2848. 'sym' \\-> 'SQ(sym)'
  2849. --
  2850. Related: \\v/,^" "042002" :Usr) "~xSR" ("# --> #'" "Shift Right Cmd
  2851. --
  2852. Shifts a binary integer one bit
  2853. to the right.
  2854. --
  2855. Related: ASR,SL,SLB,SRB" "007002" :Usr) "~xSRAD" ("[[]] --> x" "Spectral Radius Cmd
  2856. --
  2857. Returns the spectral radius of a
  2858. square matrix.
  2859. --
  2860. Related: COND,SNRM,TRACE" "0050AB" :Usr) "~xSRB" ("# --> #'" "Shift Right Byte Cmd
  2861. --
  2862. Shifts a binary integer one byte
  2863. to the right.
  2864. --
  2865. Related: ASR,SL,SLB,SR" "008002" :Usr) "~xSTART" ("start finish -->" "START Definite Loop Structure Cmd
  2866. --
  2867. START xstart xfinish \\->
  2868. NEXT xstart xfinish \\->
  2869. STEP xincrement \\->
  2870. STEP 'symbincrement' \\->
  2871. --
  2872. Related: FOR,NEXT,STEP" "009700" :Usr) "~xSTD" ("-->" "Standard Mode Cmd
  2873. --
  2874. Sets the number display format
  2875. to Standard mode.
  2876. --
  2877. Related: ENG,FIX,SCI" "03F0AB" :Usr) "~xSTEP" ("n -->
  2878. symb -->" "STEP Cmd
  2879. --
  2880. Defines the increment (step) value,
  2881. and ends definite loop struct
  2882. See the FOR and START command
  2883. entries for syntax information.
  2884. --
  2885. Related: FOR,BEXT,START" "00C700" :Usr) "~xSTO-" ("ob name -->
  2886. name ob -->" "Store Minus Cmd
  2887. --
  2888. Calculates the difference between
  2889. a number (or other object) and
  2890. the contents of a specified
  2891. variable, and stores the new
  2892. value to the specified variable.
  2893. --
  2894. Related: STO+,STO*,STO/,-" "0FA002" :Usr) "~xSTO*" ("ob name -->
  2895. name ob -->" "Store Times Cmd
  2896. --
  2897. Multiplies the contents of a
  2898. specified variable by a number or
  2899. other object.
  2900. --
  2901. Related: STO+,STO-,STO/,*" "0FC002" :Usr) "~xSTO/" ("ob name -->
  2902. name ob -->" "Store Divide Cmd
  2903. --
  2904. Calculates the quotient of a number
  2905. (or other object) and the
  2906. contents of a specified variable,
  2907. and stores the new value to the
  2908. specified variable.
  2909. --
  2910. Related: STO+,STO-,STO*,/" "0FB002" :Usr) "~xSTO+" ("ob name -->
  2911. name ob -->" "Store Plus Cmd
  2912. --
  2913. Adds a number or other object to
  2914. the contents of a specified variable.
  2915. --
  2916. Related: STO-,STO*,STO/,+" "0F9002" :Usr) "~xSTOF" ("{#s1 #u1 #s2 #u2} -->" "Store Flags Cmd
  2917. --
  2918. Sets the states of the system
  2919. flags or the system and user
  2920. flags.
  2921. --
  2922. Related: RCLF,STWS,RCWS" "07C002" :Usr) "~xSTOKEYS" ("{ob key ...} -->
  2923. {'S' ob key ...} -->
  2924. 'S' -->" "Store Key Assignments Cmd
  2925. --
  2926. Defines multiple keys on the user
  2927. keyboard by assigning objects to
  2928. specified keys.
  2929. --
  2930. Related: ASN,DELKEYS,RCLKEYS" "10C002" :Usr) "~xSTR\\->" ("$ --> ob" "Evaluate String Cmd
  2931. --
  2932. Evaluates the text of a string as
  2933. if the text were entered from the
  2934. command line.
  2935. --
  2936. Related: ARRY\\->,DTAG,EQ\\->,LIST\\->, OBJ\\->,\\->STR" "088002" :Usr) "~xSTR>" ("$ --> ob" "Evaluate String Cmd
  2937. --
  2938. Evaluates the text of a string as
  2939. if the text were entered from the
  2940. command line.
  2941. --
  2942. Related: ARRY\\->,DTAG,EQ\\->,LIST\\->, OBJ\\->,\\->STR" "088002" :Usr) "~x\\->STR" ("ob --> $" "Object to String Cmd
  2943. --
  2944. Converts any object to string
  2945. form.
  2946. --
  2947. Related: \\->ARRY,\\->LIST,STR\\->, \\->TAG,\\->UNIT" "087002" :Usr) "~x>STR" ("ob --> $" "Object to String Cmd
  2948. --
  2949. Converts any object to string
  2950. form.
  2951. --
  2952. Related: \\->ARRY,\\->LIST,STR\\->, \\->TAG,\\->UNIT" "087002" :Usr) "~xSTREAM" ("{} prog --> x" "Stream Execution Cmd
  2953. --
  2954. Moves the first two elements from
  2955. the list onto the stack, and
  2956. executes prog. The moves the next
  2957. element (if any) onto the stack,
  2958. and executes obj again using the
  2959. previous result and the new element.
  2960. Repeats this until the list
  2961. is exhausted, and returns the
  2962. final result.
  2963. --
  2964. Related: DOSUBS" "0320AB" :Usr) "~xSUB" ("ob start end --> ob'
  2965. ob= [[]], $, {}, grob, PICT
  2966. start,end = n, {n m}, (n,m)" "Subset Cmd
  2967. --
  2968. Returns the portion of a string
  2969. or list defined by specified
  2970. positions, or returns the
  2971. rectangular portion of a graphics object
  2972. or PICT defined by two corner
  2973. pixel coordinates.
  2974. --
  2975. Related: CHR,GOR,GXOR,NUM,POS,REPL,SIZE" "081002" :Usr) "~xSVD" ("[[]] --> [[U]] [[V]] [S]" "Singular Value Decomposition Cmd
  2976. --
  2977. Returns the sigular value
  2978. decomposition of an m\327n matrix.
  2979. --
  2980. Related: DIAG\\->,MIN,SVL" "00B0AB" :Usr) "~xSVL" ("[[]] --> []" "Singular Values Cmd
  2981. --
  2982. Returns the singular values of an
  2983. m\327n matrix.
  2984. --
  2985. Related: MIN,SVD" "00C0AB" :Usr) "~xSWAP" ("ob1 ob2 --> ob2 ob1" "Swap Objects Cmd
  2986. --
  2987. Interchanges the first two
  2988. objects on the stack.
  2989. --
  2990. Related:
  2991. DUP,DUPN,DUP2,OVER,PICK,ROLL,ROLLD,ROT" "0E4002" :Usr) "~xSYSEVAL" ("# --> ?" "Evaluate System Object Cmd
  2992. --
  2993. Evaluates unnamed operating system
  2994. objects specified by their
  2995. memory addresses.
  2996. --
  2997. Related: EVAL,LIBEVAL,FLASHEVAL" "024002" :Usr) "~x%T" ("x y --> 100y/x" "Percent of Total Function
  2998. --
  2999. Returns the percent of the level
  3000. 2 argument that is represented by
  3001. the level 1 argument.
  3002. --
  3003. x y \\-> 100y/x
  3004. x 'sym' \\-> '%T(x,sym)'
  3005. 'sym' x \\-> '%T(sym,x)'
  3006. 'sym1' 'sym2' \\-> '%T(sym1,sym2)'
  3007. x_u1 y_u2 \\-> 100y_u2/x_u1
  3008. x_u 'sym' \\-> '%T(x_u,sym)'
  3009. 'sym' x_u \\-> '%T(sym,x_u)'
  3010. --
  3011. Related: %,%ch" "06F002" :Usr) "~x\\->TAG" ("ob tag --> :tag:ob" "Stack to Tag Cmd
  3012. --
  3013. Combines objects in levels 1 and
  3014. 2 to created tagged (labeled)
  3015. object. Tag may be any object. It will eb
  3016. converted to a string.
  3017. --
  3018. Related: \\->ARRY,DTAG,\\->LIST,OBJ\\->, \\->STR,\\->UNIT" "10F002" :Usr) "~x->TAG" ("ob tag --> :tag:ob" "Stack to Tag Cmd
  3019. --
  3020. Combines objects in levels 1 and
  3021. 2 to created tagged (labeled)
  3022. object. Tag may be any object. It will eb
  3023. converted to a string.
  3024. --
  3025. Related: \\->ARRY,DTAG,\\->LIST,OBJ\\->, \\->STR,\\->UNIT" "10F002" :Usr) "~xTAIL" ("{} --> {}'
  3026. $ --> $'" "Last Listed Elements Cmd
  3027. --
  3028. Returns all but the first element
  3029. of a list or string.
  3030. --
  3031. Related: HEAD" "02C0AB" :Usr) "~xTAN" ("x --> x'" "Tangent Analytic Func
  3032. --
  3033. Returns the tangent of the
  3034. argument.
  3035. --
  3036. z \\-> tan z
  3037. 'sym' \\-> 'TAN(symb)'
  3038. x_unitang \\-> tan(x_unitang)
  3039. -
  3040. Related: ATAN,COS,SIN" "045002" :Usr) "~xTANH" ("x --> x'" "Hyperbolic Tangent Analytic Func
  3041. --
  3042. Returns the hyperbolic tangent of
  3043. the argument.
  3044. --
  3045. z \\-> tanh z
  3046. 'sym' \\-> 'TANH(sym)'
  3047. -
  3048. Related: ATANH,COSH,SINH" "048002" :Usr) "~xTAYLR" ("symb var n --> symb'" "Taylor's Polynomial Cmd
  3049. --
  3050. Calculates the nth order Taylor's
  3051. polynomial of 'symb' in the
  3052. variable var.
  3053. --
  3054. Related: \\.d,\\.S,\\GS" "105002" :Usr) "~xTEXT" ("-->" "Show Stack Display Cmd
  3055. --
  3056. Displays the stack display.
  3057. --
  3058. Related: PICTURE,PVIEW" "0BD002" :Usr) "~xTHEN" ("" "THEN in an ON ERROR construct.
  3059. --
  3060. Related: CASE,ELSE,END,IFERR" "016700" :Usr) "~xTHENCASE" ("" "THEN in a CASE statement.
  3061. --
  3062. Related: CASE,ELSE,END,IFERR" "018700" :Usr) "~xERRTHEN" ("" "THEN in an ON ERROR construct.
  3063. --
  3064. Related: CASE,ELSE,END,IFERR" "016700" :Usr) "~xTIME" ("--> time" "Time Cmd
  3065. --
  3066. Returns the system time in the
  3067. form HH.MMSSs.
  3068. --
  3069. Related: DATE,TICKS,TSTR" "010002" :Usr) "~x\\->TIME" ("time -->" "Set System Time Cmd
  3070. --
  3071. Sets the system time.
  3072. --
  3073. Related: CLKADJ,\\->DATE" "014002" :Usr) "~xSETTIME" ("time -->" "Set System Time Cmd
  3074. --
  3075. Sets the system time.
  3076. --
  3077. Related: CLKADJ,\\->DATE" "014002" :Usr) "~xTLINE" ("(x1,y1) (x2,y2) -->
  3078. {#n1 #m1} {#n2 #m2} -->" "Toggle Line Cmd
  3079. --
  3080. For each pixel along the line in
  3081. PICT defined by the specified
  3082. coordinates, TLINE turns off
  3083. every pixel that is on, and turns
  3084. on every pixel that is off.
  3085. --
  3086. Related: ARC,BOX,LINE" "0B0002" :Usr) "~xTRACE" ("[[]] --> x" "Matrix Trace Cmd
  3087. --
  3088. Returns the trace of a square
  3089. matrix." "0040AB" :Usr) "~xTRN" ("[[]] --> [[]]'
  3090. name -->" "Transpose Matrix Cmd
  3091. --
  3092. Returns the (conjugate) transpose
  3093. of a matrix.
  3094. --
  3095. Related: CONJ" "094002" :Usr) "~xTRNC" ("x n -->" "Truncate Func
  3096. --
  3097. Truncates an object to a specified
  3098. number of decimal places or
  3099. significant digits, or to fit the
  3100. current display format.
  3101. --
  3102. z1 ntrnc \\-> z2
  3103. z1 'symtrnc' \\->
  3104. 'TRNC(z1,symtrnc)'
  3105. 'sym1' ntrnc \\->
  3106. 'TRNC(sym1,ntrnc)'
  3107. 'sym1' 'symtrnc' \\->
  3108. 'TRNC(sym1,symtrnc)'
  3109. [ arr ]1 ntrnc \\-> [ arr ]2
  3110. x_u ntrnc \\-> y_u
  3111. x_u 'symtrnc' \\->
  3112. 'TRNC(x_u,symtrnc)'
  3113. --
  3114. Related: RND" "05F002" :Usr) "~xTSTR" ("date time --> $" "Date and Time String Cmd
  3115. --
  3116. Returns a string derived from the
  3117. date and time.
  3118. --
  3119. Related: DATE,TICKS,TIME" "016002" :Usr) "~xTYPE" ("ob --> %type" "Type Cmd
  3120. --
  3121. Returns the type number of an
  3122. object.
  3123. --
  3124. User Objects:
  3125. --
  3126. Object Type Number
  3127. ------ ---- ------
  3128. Real number 0
  3129. Complex number 1
  3130. Character string 2
  3131. Real Array 3
  3132. Complex Array 4
  3133. List 5
  3134. Global name 6
  3135. Local name 7
  3136. Program 8
  3137. Algebraic Object 9
  3138. Binary Integer 10
  3139. Graphics object 11
  3140. Tagged object 12
  3141. Unit object 13
  3142. XLIB name 14
  3143. Directory 15
  3144. Library 16
  3145. Backup object 17
  3146. --
  3147. Built-in Cmds:
  3148. --
  3149. Object Type Number
  3150. ------ ---- ------
  3151. Built-in function 18
  3152. Built-in command 19
  3153. --
  3154. System Objects:
  3155. --
  3156. Object Type Number
  3157. ------ ---- ------
  3158. System binary 20
  3159. Extended real 21
  3160. Extended complex 22
  3161. Linked array 23
  3162. Character 24
  3163. Code object 25
  3164. Library data 26
  3165. External object 26-31
  3166. --
  3167. Related: SAME,TVARS,VTYPE" "08B002" :Usr) "~xUBASE" ("u --> u'" "Convert to SI Base Units Func
  3168. --
  3169. Converts a unit object to SI base
  3170. units.
  3171. --
  3172. x_u \\-> y_base-units
  3173. 'sym' \\-> 'UBASE(symb)'
  3174. --
  3175. Related: CONVERT,UFACT,\\->UNIT,UVAL" "00E002" :Usr) "~xUFACT" ("u1 u2 --> u3" "Factor Unit Cmd
  3176. --
  3177. Factors the level 1 unit from the
  3178. unit expression of the level 2
  3179. unit object.
  3180. --
  3181. Related: CONVERT,UBASE,\\->UNIT,UVAL" "00F002" :Usr) "~x\\->UNIT" ("x u --> u'" "Stack to Unit Object Cmd
  3182. --
  3183. Creates a unit object from a real
  3184. number and the unit part of a
  3185. unit object.
  3186. --
  3187. Related: \\->ARRY,\\->LIST,\\->STR,\\->TAG" "00D002" :Usr) "~x>UNIT" ("x u --> u'" "Stack to Unit Object Cmd
  3188. --
  3189. Creates a unit object from a real
  3190. number and the unit part of a
  3191. unit object.
  3192. --
  3193. Related: \\->ARRY,\\->LIST,\\->STR,\\->TAG" "00D002" :Usr) "~xUNTIL" ("-->" "UNTIL Cmd
  3194. --
  3195. Starts test-clause in
  3196. DO ... UNTIL ... END
  3197. indefinite loop structure.
  3198. --
  3199. See the DO entry for syntax info.
  3200. --
  3201. Related: DO,END" "008700" :Usr) "~xUTPC" ("n x --> x'" "Upper Chi-Square Distribution Cmd
  3202. --
  3203. Returns the probability utpc(n,x)
  3204. that a chi-square random variable
  3205. is greater than x, where n is the
  3206. number of degrees of freedom of
  3207. the distribution.
  3208. --
  3209. Related: UTPF,UTPN,UTPT" "0F2002" :Usr) "~xUTPF" ("n1 n2 x --> x'" "Upper Snedecor's F Distrib. Cmd
  3210. --
  3211. Returns the probability
  3212. utpf(n1,n2,x)
  3213. that a Snedecor's F random variable
  3214. is greater than x, where n1
  3215. and n2 are the numerator and
  3216. denominator degrees of freedom of
  3217. the F distribution.
  3218. --
  3219. Related: UTPC,UTPN,UTPT" "0F4002" :Usr) "~xUTPN" ("n v x --> x'" "Upper Normal Distribution Cmd
  3220. --
  3221. Returns the probability
  3222. utpn(m,v,x)
  3223. that a normal random variable is
  3224. greater than x, where m and v are
  3225. the mean and variance, respectively,
  3226. of the normal distribution.
  3227. --
  3228. Related: UTPC,UTPF,UTPT" "0F3002" :Usr) "~xUTPT" ("n x --> x'" "Upper Student's t Distrib. Cmd
  3229. --
  3230. Returns the probability utpt(n,x)
  3231. that a Student's t random variable
  3232. is greater than x, where n
  3233. is the number of degrees of freedom
  3234. of the distribution.
  3235. --
  3236. Related: UTPC,UTPF,UTPN" "0F5002" :Usr) "~xUVAL" ("u --> x" "Unit Value Func
  3237. --
  3238. Returns the numerical part of a
  3239. unit object.
  3240. --
  3241. x_u \\-> x
  3242. 'sym' \\-> 'UVAL(sym)'
  3243. --
  3244. Related: CONVERT,UBASE,UFACT,\\->UNIT" "00C002" :Usr) "~xV\\->" ("[]/() --> x y
  3245. --> x y z
  3246. (in current co-system)" "Vector/Complex Num to Stack Cmd
  3247. --
  3248. [ x y ] \\-> x y
  3249. [ xr ANGy\\Gh ] \\-> xr y\\Gh
  3250. [ x1 x2 x3 ] \\-> x1 x2 x3
  3251. [ x1 ANGx\\Gh xz ] \\-> x1 x\\Gh xz
  3252. [ x1 ANGx\\Gh ANGx\324\325] \\-> x1 x\\Gh x\324\325
  3253. [ x1 x2 ... xn ] \\-> x1 ... xn
  3254. (x,y) \\-> x y
  3255. (xr ANGy\\Gh) \\-> xr y\\Gh
  3256. --
  3257. Related: \\->V2,\\->V3" "099002" :Usr) "~xV>" ("[]/() --> x y
  3258. --> x y z
  3259. (in current co-system)" "Vector/Complex Num to Stack Cmd
  3260. --
  3261. [ x y ] \\-> x y
  3262. [ xr ANGy\\Gh ] \\-> xr y\\Gh
  3263. [ x1 x2 x3 ] \\-> x1 x2 x3
  3264. [ x1 ANGx\\Gh xz ] \\-> x1 x\\Gh xz
  3265. [ x1 ANGx\\Gh ANGx\324\325] \\-> x1 x\\Gh x\324\325
  3266. [ x1 x2 ... xn ] \\-> x1 ... xn
  3267. (x,y) \\-> x y
  3268. (xr ANGy\\Gh) \\-> xr y\\Gh
  3269. --
  3270. Related: \\->V2,\\->V3" "099002" :Usr) "~x\\->V2" ("x y --> []
  3271. --> ()" "Stack to Vector/Complex Num Cmd
  3272. --
  3273. Converts two numbers from the
  3274. stack into a 2-element vector or
  3275. complex number.
  3276. --
  3277. Related: V\\->,\\->V3" "09A002" :Usr) "~x>V2" ("x y --> []
  3278. --> ()" "Stack to Vector/Complex Num Cmd
  3279. --
  3280. Converts two numbers from the
  3281. stack into a 2-element vector or
  3282. complex number.
  3283. --
  3284. Related: V\\->,\\->V3" "09A002" :Usr) "~x\\->V3" ("x y z --> []" "Stack to 3-Element Vector Cmd
  3285. --
  3286. Converts three numbers into a
  3287. 3-element vector.
  3288. --
  3289. Related: V\\->,\\->V2" "09B002" :Usr) "~x>V3" ("x y z --> []" "Stack to 3-Element Vector Cmd
  3290. --
  3291. Converts three numbers into a
  3292. 3-element vector.
  3293. --
  3294. Related: V\\->,\\->V2" "09B002" :Usr) "~xVERSION" ("--> $ $" "Software Version Cmd
  3295. --
  3296. Displays the software version and
  3297. copyright message." "0000AB" :Usr) "~xVTYPE" ("name --> n" "Variable Type Cmd
  3298. --
  3299. Returns the type number of the
  3300. object contained in the named
  3301. variable.
  3302. --
  3303. 'name' \\-> ntype
  3304. :nport:namebackup \\-> ntype
  3305. :nport:nlibrary \\-> ntype
  3306. --
  3307. Related: TYPE" "08C002" :Usr) "~xWAIT" ("sec -->
  3308. 0 --> rc.p" "Wait Cmd
  3309. --
  3310. Suspends program execution for
  3311. specified time, or until a key is
  3312. pressed.
  3313. --
  3314. Related: KEY" "029002" :Usr) "~xWHILE" ("-->" "WHILE Indefinite Loop Struct Cmd
  3315. --
  3316. Starts the
  3317. WHILE ... REPEAT ... END
  3318. indefinite loop structure.
  3319. --
  3320. Related: DO,END,REPEAT" "005700" :Usr) "~xWSLOG" ("--> $ $ $ $" "Warmstart Log Cmd
  3321. --
  3322. Returns four strings recording
  3323. the date, time, and cause of the
  3324. four most recent warmstart events" "012002" :Usr) "~xXOR" ("# #' --> #''
  3325. $ $' --> $''
  3326. 1/0 1/0 --> 1/0" "Exclusive OR Cmd
  3327. --
  3328. Returns the logical exclusive OR
  3329. of two arguments.
  3330. #n1 #n2 \\-> #n3
  3331. \"str1\" \"str2\" \\-> \"str3\"
  3332. T/F1 T/F2 \\-> 0/1
  3333. T/F 'sym' \\-> 'T/F XOR sym'
  3334. 'sym' T/F \\-> 'sym XOR T/F'
  3335. 'sym1' 'sym2' \\-> 'sym1 XOR sym2'
  3336. --
  3337. Related: AND,OR,NOT" "0C7002" :Usr) "~xXRECV" ("name -->" "XModem Receive Cmd
  3338. --
  3339. Prepares the HP 48 to receive an
  3340. object via XModem. The received
  3341. object is stored in the given
  3342. name.
  3343. --
  3344. Related: BAUD,RECV,RECN,SEND,XSEND" "02A0AB" :Usr) "~xXRNG" ("x1 x2 -->" "x-Axis Display Range Cmd
  3345. --
  3346. Specifies the x-axis display
  3347. range.
  3348. --
  3349. Related: AUTO,PDIM,PMAX,PMIN,YRNG" "0BE002" :Usr) "~xXROOT" ("y x --> Y'" "xth Root of y Cmd
  3350. --
  3351. Computes the xth root of a real
  3352. number.
  3353. y x \\-> x ROOT y
  3354. 'sym1' 'sym2' \\-> 'XROOT(sym2,sym1)'
  3355. 'sym' x \\-> 'XROOT(x,sym)'
  3356. y 'sym' \\-> 'XROOT(sym,y)'
  3357. y_u x \\-> x ROOT y_u1/x
  3358. y_u 'sym' \\-> 'XROOT(sym,y_u)'" "03D002" :Usr) "~xXSEND" ("name -->" "XModem Send Cmd
  3359. --
  3360. Sends a copy of the named object
  3361. via XModem.
  3362. --
  3363. Related: BAUD,RECN,RECV,SEND,XRECV" "0290AB" :Usr) "~xYRNG" ("y1 y2 -->" "y-Axis Display Range Cmd
  3364. --
  3365. Specifies the y-axis display
  3366. range.
  3367. --
  3368. Related: AUTO,PDIM,PMAX,PMIN,XRNG" "0BF002" :Usr) "~x^" ("y x --> y^x" "Power Analytic Func
  3369. --
  3370. Returns the value of the level 2
  3371. object raised to the power of the
  3372. level 1 object.
  3373. w z \\-> w^z
  3374. z 'sym' \\-> 'z^sym'
  3375. 'sym' z \\-> '(sym)^z'
  3376. 'sym1' 'sym2' \\-> 'sym1^(sym2)'
  3377. x_u y \\-> xy_uy
  3378. x_u 'sym' \\-> '(x_u)^(sym)'
  3379. --
  3380. Flags: -1 -3
  3381. Principal soln -1
  3382. Numeric results -3
  3383. --
  3384. Related: EXP,ISOL,LN,XROOT" "03B002" :Usr) "~x\\v/" ("x --> x'" "Square Root Analytic Func
  3385. --
  3386. Returns the (+ve) square root of
  3387. the argument.
  3388. --
  3389. z \\-> \\v/z
  3390. x_u \\-> \\v/(x)_u
  3391. 'sym' \\-> 'SQRT(sym)'
  3392. --
  3393. Flags: -1 -3
  3394. --
  3395. Related: SQ,^,ISOL" "041002" :Usr) "~xSQRT" ("x --> x'" "Square Root Analytic Func
  3396. --
  3397. Returns the (+ve) square root of
  3398. the argument.
  3399. --
  3400. z \\-> \\v/z
  3401. x_u \\-> \\v/(x)_u
  3402. 'sym' \\-> 'SQRT(sym)'
  3403. --
  3404. Flags: -1 -3
  3405. --
  3406. Related: SQ,^,ISOL" "041002" :Usr) "~x\\pi" ("--> \\pi" "PI Func
  3407. --
  3408. Returns the symbolic constant '\\pi'
  3409. or its numerical representation,
  3410. 3.14159265359.
  3411. \\-> '\\pi'
  3412. \\-> 3.14159265359
  3413. --
  3414. Flags: -2 -3
  3415. --
  3416. Related: e,i,MAXR,MINR,\\->Q\\pi" "031002" :Usr) "~xPI" ("--> \\pi" "PI Func
  3417. --
  3418. Returns the symbolic constant '\\pi'
  3419. or its numerical representation,
  3420. 3.14159265359.
  3421. \\-> '\\pi'
  3422. \\-> 3.14159265359
  3423. --
  3424. Flags: -2 -3
  3425. --
  3426. Related: e,i,MAXR,MINR,\\->Q\\pi" "031002" :Usr) "~x\\<=" ("x y --> 1 \\n --> 0" "Less Than or Equal Func
  3427. --
  3428. Tests whether one object is less
  3429. than or equal to another object.
  3430. --
  3431. x y \\-> 0/1
  3432. #n1 #n2 \\-> 0/1
  3433. \"str1\" \"str2\" \\-> 0/1
  3434. x 'sym' \\-> 'x<=sym'
  3435. 'sym' z \\-> 'sym<=z'
  3436. 'sym1' 'sym2' \\-> 'sym1<=sym2'
  3437. x_u1 y_u2 \\-> 0/1
  3438. x_u 'sym' \\-> 'x_unit<=sym'
  3439. 'sym' x_u \\-> 'sym<=x_unit'
  3440. --
  3441. Flags: -3
  3442. --
  3443. Related: <,>,\\>=,==,\\=/" "0CC002" :Usr) "~x<=?" ("x y --> 1 \\n --> 0" "Less Than or Equal Func
  3444. --
  3445. Tests whether one object is less
  3446. than or equal to another object.
  3447. --
  3448. x y \\-> 0/1
  3449. #n1 #n2 \\-> 0/1
  3450. \"str1\" \"str2\" \\-> 0/1
  3451. x 'sym' \\-> 'x<=sym'
  3452. 'sym' z \\-> 'sym<=z'
  3453. 'sym1' 'sym2' \\-> 'sym1<=sym2'
  3454. x_u1 y_u2 \\-> 0/1
  3455. x_u 'sym' \\-> 'x_unit<=sym'
  3456. 'sym' x_u \\-> 'sym<=x_unit'
  3457. --
  3458. Flags: -3
  3459. --
  3460. Related: <,>,\\>=,==,\\=/" "0CC002" :Usr) "~x\\>=" ("x y --> 1 \\n --> 0" "Greater Than or Equal Func
  3461. --
  3462. x y \\-> 0/1
  3463. #n1 #n2 \\-> 0/1
  3464. \"str1\" \"str2\" \\-> 0/1
  3465. x 'sym' \\-> 'x\\>=sym'
  3466. 'sym' z \\-> 'sym\\>=z'
  3467. 'sym1' 'sym2' \\-> 'sym1\\>=sym2'
  3468. x_u1 y_u2 \\-> 0/1
  3469. x_u 'sym' \\-> 'x_u\\>=sym'
  3470. 'sym' x_u \\-> 'sym\\>=x_u'
  3471. --
  3472. Flags: -3
  3473. --
  3474. Related: <,\\<=,>,==,\\=/" "0CD002" :Usr) "~x>=?" ("x y --> 1 \\n --> 0" "Greater Than or Equal Func
  3475. --
  3476. x y \\-> 0/1
  3477. #n1 #n2 \\-> 0/1
  3478. \"str1\" \"str2\" \\-> 0/1
  3479. x 'sym' \\-> 'x\\>=sym'
  3480. 'sym' z \\-> 'sym\\>=z'
  3481. 'sym1' 'sym2' \\-> 'sym1\\>=sym2'
  3482. x_u1 y_u2 \\-> 0/1
  3483. x_u 'sym' \\-> 'x_u\\>=sym'
  3484. 'sym' x_u \\-> 'sym\\>=x_u'
  3485. --
  3486. Flags: -3
  3487. --
  3488. Related: <,\\<=,>,==,\\=/" "0CD002" :Usr) "~x\\=/" ("x y --> 1 \\n --> 0" "Not Equal Func
  3489. --
  3490. Tests if two objects are equal.
  3491. obj1 obj2 \\-> 0/1
  3492. (x,0) x \\-> 0/1
  3493. x (x,0) \\-> 0/1
  3494. z 'sym' \\-> 'z\\=/sym'
  3495. 'sym' z \\-> 'sym\\=/z'
  3496. 'sym1' 'sym2' \\-> 'sym1\\=/sym2'
  3497. --
  3498. Flags: -3
  3499. --
  3500. Related: SAME,TYPE,<,\\<=,>,\\>=, ==" "0C9002" :Usr) "~x#?" ("x y --> 1 \\n --> 0" "Not Equal Func
  3501. --
  3502. Tests if two objects are equal.
  3503. obj1 obj2 \\-> 0/1
  3504. (x,0) x \\-> 0/1
  3505. x (x,0) \\-> 0/1
  3506. z 'sym' \\-> 'z\\=/sym'
  3507. 'sym' z \\-> 'sym\\=/z'
  3508. 'sym1' 'sym2' \\-> 'sym1\\=/sym2'
  3509. --
  3510. Flags: -3
  3511. --
  3512. Related: SAME,TYPE,<,\\<=,>,\\>=, ==" "0C9002" :Usr) "~x\\->" ("" "Create local variable comand.
  3513. <REF>xRPN->" "004700" :Usr) "~xRPN->" ("ob1 .. obn -->" "Create Local Variables Cmd
  3514. --
  3515. Creates local variables.
  3516. obj1 ... objn \\->
  3517. --
  3518. Syntax:
  3519. \\-> name1 name2 ... nameN \\<< prog \\>>
  3520. \\-> name1 name2 ... nameN 'Expr'
  3521. --
  3522. Related: DEFINE,STO" "00F700" :Usr) "~xALG->" ("" "Create local variable comand.
  3523. <REF>xRPN->" "004700" :Usr) "~x!" ("x --> x'" "Factorial (Gamma) Func
  3524. --
  3525. Returns the factorial n! of a
  3526. positive integer argument n, or
  3527. the gamma function \242(x+1) of a
  3528. non-integer argument x.
  3529. n \\-> n!
  3530. x \\-> \242(x+1)
  3531. 'sym' \\-> '(sym!)'
  3532. --
  3533. Flags: -3 -20 -21
  3534. Numerical Results -3
  3535. Underflow exception -20
  3536. Overflow exception -21
  3537. --
  3538. Related: COMB,PERM" "055002" :Usr) "~xFACT" ("x --> x'" "Factorial (Gamma) Func
  3539. --
  3540. Returns the factorial n! of a
  3541. positive integer argument n, or
  3542. the gamma function \242(x+1) of a
  3543. non-integer argument x.
  3544. n \\-> n!
  3545. x \\-> \242(x+1)
  3546. 'sym' \\-> '(sym!)'
  3547. --
  3548. Flags: -3 -20 -21
  3549. Numerical Results -3
  3550. Underflow exception -20
  3551. Overflow exception -21
  3552. --
  3553. Related: COMB,PERM" "055002" :Usr) "~x%" ("x y --> xy/100" "Percent Func
  3554. --
  3555. Returns x (level 2) percent of y
  3556. (level 1).
  3557. x y \\-> xy/100
  3558. x 'sym' \\-> '%(x,sym)'
  3559. 'sym' x \\-> '%(sym,x)'
  3560. 'sym1' 'sym2' \\-> '%(sym1,sym2)'
  3561. x y_unit \\-> (xy/100)_unit
  3562. x_unit y \\-> (xy/100)_unit
  3563. 'sym' x_unit \\-> '%(sym,x_unit)'
  3564. x_unit 'sym' \\-> '%(x_unit,sym)'
  3565. --
  3566. Flags:
  3567. Numerical Results -3
  3568. --
  3569. Related: %CH,%T" "06E002" :Usr) "~x*" ("x y --> x*y" "Multiply Analytic Func
  3570. --
  3571. Returns the product of the args.
  3572. z1 z2 \\-> z1\267z2
  3573. [[ mat ]] [ arr ] \\-> [[ mat\327arr ]]
  3574. z [ arr ] \\-> [ z \327 array ]
  3575. [ arr ] z \\-> [ arr \327 z ]
  3576. z 'sym' \\-> 'z * sym'
  3577. 'sym' z \\-> 'sym * z'
  3578. 'sym1' 'sym2' \\-> 'sym1 * sym2'
  3579. #n1 n2 \\-> #n'
  3580. n1 #n2 \\-> #n'
  3581. #n1 #n2 \\-> #n'
  3582. x_u y_u \\-> xy_ux \327 unity
  3583. x y_u \\-> xy_u
  3584. x_u y \\-> xy_u
  3585. 'sym' x_u \\-> 'sym * x_u'
  3586. x_u 'sym' \\-> 'x_u * sym'
  3587. --
  3588. Flags: -3 -5 -6 -7 -8 -9 -10
  3589. Numeric results -3
  3590. bint wordsize -5 \\-> -10
  3591. --
  3592. Related: +,-,/,=" "039002" :Usr) "~x-" ("x y --> x-y" "Subtract Analytic Func
  3593. --
  3594. Returns the difference of the
  3595. arguments: the object in level 1
  3596. is subtracted from the object in
  3597. level 2.
  3598. z1 z2 \\-> z1-z2
  3599. [ arr ]1 [ arr ]2 \\-> [ arr ]1_2
  3600. z 'sym' \\-> 'z-sym'
  3601. 'sym' z \\-> 'sym-z'
  3602. 'sym1' 'sym2' \\-> 'sym1 - sym2'
  3603. #n1 n2 \\-> #n'
  3604. n1 #n2 \\-> #n'
  3605. #n1 #n2 \\-> #n'
  3606. x1_u1 y_u2 \\-> (x2-y)_u2
  3607. 'sym' x_u \\-> 'sym-x_u'
  3608. x_u 'sym' \\-> 'x_u-sym'
  3609. --
  3610. Flags: -3
  3611. Numeric results -3
  3612. --
  3613. Related: +,*,/,=" "038002" :Usr) "~x/" ("x y --> x/y" "Divide Analytic Func
  3614. --
  3615. Returns the quotient of the
  3616. arguments: the level 2 object
  3617. divided by the level 1 object.
  3618. (Abbrev. _u = _unit)
  3619. z1 z2 \\-> z1 / z2
  3620. [ arr ] [[ mat ]] \\-> [[mat^-1\327arr]]
  3621. [ arr ] z \\-> [ arr / z ]
  3622. z 'sym' \\-> 'z / sym'
  3623. 'sym' z \\-> 'sym / z'
  3624. 'sym1' 'sym2' \\-> 'sym1 / sym2'
  3625. #n1 n2 \\-> #n'
  3626. n1 #n2 \\-> #n'
  3627. #n1 #n2 \\-> #n'
  3628. x_u1 y_u2 \\-> (x/y)_u1/u2
  3629. x y_u \\-> (x/y)_1/u
  3630. x_u y \\-> (x/y)_u
  3631. 'sym' x_u \\-> 'sym/x_u'
  3632. x_u 'sym' \\-> 'x_u/sym'
  3633. --
  3634. Related: +,-,*,=,RATIO" "03A002" :Usr) "~x<" ("x y --> 1 \\n --> 0" "Less Than Func
  3635. --
  3636. Tests whether one object is less
  3637. than another object.
  3638. x y \\-> 0/1
  3639. #n1 #n2 \\-> 0/1
  3640. \"str1\" \"str2\" \\-> 0/1
  3641. x 'sym' \\-> 'x<sym'
  3642. 'sym' x \\-> 'sym<z'
  3643. 'sym1' 'sym2' \\-> 'sym1<sym2'
  3644. x_u1 y_u2 \\-> 0/1
  3645. x_u 'sym' \\-> 'x_u<sym'
  3646. 'sym' x_u \\-> 'sym<x_u'
  3647. --
  3648. Flags: -3
  3649. Numeric results -3" "0CA002" :Usr) "~x=" ("x y --> x=y" "Makes equation out of two expressions.
  3650. Equals Analytic Func
  3651. --
  3652. Returns an equation formed from
  3653. the two arguments.
  3654. z1 z2 \\-> 'z1=z2'
  3655. z 'sym' \\-> 'z=sym'
  3656. 'sym' z \\-> 'sym=z'
  3657. 'sym1' 'sym2' \\-> 'sym1=sym2'
  3658. y x_u \\-> 'y=x_u'
  3659. y_u x \\-> 'y_u=x'
  3660. y_u x_u \\-> 'y_u=x_u'
  3661. 'sym' x_u \\-> 'sym=x_u'
  3662. x_u 'sym' \\-> 'x_u=sym'
  3663. --
  3664. Flags: -3
  3665. Numeric results -3
  3666. --
  3667. Related: DEFINE,EVAL,-" "02D002" :Usr) "~x==" ("x y --> 1 \\n --> 0" "Logical Equality Func
  3668. --
  3669. Tests if two objects are equal.
  3670. obj1 obj2 \\-> 0/1
  3671. (x,0) x \\-> 0/1
  3672. x (x,0) \\-> 0/1
  3673. z 'sym' \\-> 'z==sym'
  3674. 'sym' z \\-> 'sym==z'
  3675. 'sym1' 'sym2' \\-> 'sym1==sym2'
  3676. --
  3677. Flags: -3
  3678. Numeric results -3
  3679. --
  3680. Related: SAME,TYPE,<,\\<=,>,\\>=,\\=/" "0C8002" :Usr) "~x>" ("x y --> 1 \\n --> 0" "Greater Than Func
  3681. --
  3682. Tests whether one object is
  3683. greater than another object.
  3684. x y \\-> 0/1
  3685. #n1 #n2 \\-> 0/1
  3686. \"str1\" \"str2\" \\-> 0/1
  3687. x 'sym' \\-> 'x>sym'
  3688. 'sym' z \\-> 'sym>z'
  3689. 'sym1' 'sym2' \\-> 'sym1>sym2'
  3690. x_u1 y_u2 \\-> 0/1
  3691. x_u 'sym' \\-> 'x_u>sym'
  3692. 'sym' x_u \\-> 'sym>x_u'
  3693. --
  3694. Flags: -3
  3695. Numeric results -3
  3696. --
  3697. Related: <,\\<=,\\>=,==,\\=/
  3698. " "0CB002" :Usr) "SAVPTR" (" D0 to RPLTOP
  3699. D1 to DSKTOP
  3700. B to RETTOP
  3701. D to FREETOP
  3702. Clear carry
  3703. . 38G: 8121A \\$j%s\\ [ML]" "" "06816" :ML) "$jGETPTR" ("<REF>SAVPTR in reverse
  3704. Clears Carry." "" "810FB" :ML) "GETPTRLOOP" ("<REF>GETPTR , Loop to RPL" "" "05123" :ML) "$jD0=DSKTOP" ("Get new D0 from DSKTOP, uses A" "" "810A7" :ML) "$jD1=DSKTOP" ("Get new D1 from DSKTOP, uses C" "" "810AE" :ML) "$jAllowIntr" ("Allow interrupts." "" "8107D" :ML) "DisableIntr" ("Disable interrupts." "" "01140" :ML) "$jAINRTN" ("A=IN see also <REF>CINRTN
  3705. For hardware reasons (bug)
  3706. A=IN must be at even addr" "" "81076" :ML) "$jCINRTN" ("C=IN see also <REF>AINRTN
  3707. For hardware reasons (bug)
  3708. C=IN must be at even addr" "" "81099" :ML) "$jDOMEMERR" ("Insufficient Memory error" "" "810CA") "$jErrjmp" ("Error exit
  3709. A.A = error number" "" "810D8" :ML) "$jGPMEMERR" ("<REF>GETPTR <REF>DOMEMERR" "" "81110" :ML) "$jMUL#" ("B.A = A.A*C.A" "" "81187" :ML) "$jADJMEM" ("D= @FREETOP=<REF>ROOM / 5
  3710. Uses A.10 B.10 C.10 D.10 <REF>DIV5" "" "8106F" :ML) "$jDOGARBAGE" ("If ST=1 10 then <REF>GPMEMERR
  3711. else <REF>GARBAGECOL
  3712. and <REF>GETPTR" "" "810C3" :ML) "$jGARBAGECOL" ("Garbage collection
  3713. does not use R1..R4" "" "810E6" :ML) "SKIPOB" ("Skip object in D0, clears ST1,
  3714. clears carry, P=0
  3715. --> D0 = addr past object
  3716. Uses: A.A C.A P ST1 RSTK2" "" "03019" :ML) "$jSKIPBODY" ("" "" "81228") "$jMOVEDOWN" ("Copy downwards C.A nibbles from
  3717. D0 to D1, D0 and D1 will point
  3718. to the next locations
  3719. Used: A.W C.A P
  3720. Use this to move upwards" "" "8115D" :ML) "$jMOVERSD" ("Delete a block below RSK
  3721. A.A=end C.A=nibbles
  3722. Adjusts all refs, then <REF>ADJMEM
  3723. Uses A.W B.A C.W D.10 D0 D1 P" "" "81172" :ML) "$jMOVERSU" ("Open a block below RSK
  3724. A.A=start C.A=nibbles
  3725. Adjusts all refs, then <REF>ADJMEM
  3726. Uses A.W B.A C.10 D.10 D0 D1 P" "" "81179" :ML) "$jMOVEDSD" ("Open a block above stack
  3727. A.A=end C.A=nibbles
  3728. Adjusts all refs, then <REF>ADJMEM
  3729. Uses A.W B.A C.10 D.10 D0 D1 P" "" "81164" :ML) "$jMOVEDSU" ("Delete a block above stack
  3730. A.A=start C.A=nibbles
  3731. Adjusts all refs, then <REF>ADJMEM
  3732. Uses A.W B.A C.10 D.10 D0 D1 P" "" "8116B" :ML) "$jMOVEUP" ("Copy upwards C.A nibbles from
  3733. D0 to D1
  3734. D0 D1 will point to start of
  3735. area
  3736. Used: A.W C.A P
  3737. Use this to move downwards" "" "81180" :ML) "$jCREATETEMP" ("Allocates C.A nibbles
  3738. carry if not enough memory
  3739. -> D0=bottom, D1=top of area
  3740. -> B.A = C.A = @D1 = offset
  3741. to previous tempob = #nibbles+6" "" "810A0" :ML) "$jGETTEMP" ("<REF>CREATETEMP with
  3742. <REF>GARBAGECOL if necessary
  3743. <REF>GPMEMERR if not
  3744. enough memory" "" "81109" :ML) "$jMAKE$" ("Creates character string in
  3745. tempob area Does SETHEX,
  3746. C=C+C.A and then <REF>MAKE$N" "" "81141" :ML) "$jWIPEOUT" ("Zeroes C.A nibbles at D1
  3747. Uses A.W C.A P" "" "8122F" :ML) "PUSHA" ("Push A, Loop" "" "03A86" :ML) "GPPushFLoop" ("<REF>GETPTR , Push FALSE, Loop" "" "DEC0B" :ML) "GPPushTLoop" ("<REF>GETPTR , Push TRUE, Loop" "" "DEBF2" :ML) "$jDOFALSE" ("Push FALSE, Loop" "" "81213" :ML) "$jPushFLoop" ("Push FALSE, Loop" "" "81213" :ML) "$jDOTRUE" ("Push TRUE, Loop" "" "8120C" :ML) "$jPushTLoop" ("Push TRUE, Loop" "" "8120C" :ML) "$jGPOvrWrFLp" ("" "" "81117") "$jGPOvrWrTLp" ("" "" "81125") "$jOvrWrF/TLp" ("" "" "8118E") "$jOvrWrFLoop" ("" "" "81195") "$jOvrWrT/FLp" ("" "" "8119C") "$jOvrWrTLoop" ("" "" "811A3") "$jPshF/TLoop" ("" "" "811FE") "$jPshT/FLoop" ("" "" "81205") "POP#" ("Pop # to A.A" "" "066BC" :ML) "$jPOP2#" ("( #1 #2 --> )
  3748. Pop #1 to A.A and #2 to C.A" "" "811B8" :ML) "$jPUSH#" ("<REF>GETPTR , Push R0 as #" "" "811CD" :ML) "$jPUSH2#" ("<REF>GETPTR , Push R0 & R1 as #" "" "811D4" :ML) "$jPUSH#LOOP" ("<REF>GETPTR , Push R0 as #, Loop" "" "811E2" :ML) "$jPUSH#ALOOP" ("<REF>GETPTR , Push A as #, Loop" "" "811DB" :ML) "$jPOP2%" ("( %pop1 %pop2 -> A,C )
  3749. Pop 2 reals, <REF>SAVPTR" "" "811C6" :ML) "$jPUSH%" ("( A -> %push )
  3750. Push A as %, <REF>GETPTR" "" "811E9" :ML) "PUSH%LOOP" ("( A -> %push ) Push A as %,
  3751. <REF>GETPTRLOOP" "" "22706" :ML) "$jmakebeep" ("C = msec, D = Hz
  3752. Checks BEEP flag." "" "8114F" :ML) "DOARRY" ("Array prologue
  3753. 5 size
  3754. 5 prologue of objects
  3755. 5 # of dimensions
  3756. 5n dimensions
  3757. .. objects (content only)" "" "029E8") "DOBAK" ("Backup prologue
  3758. 5 size
  3759. 2 # of chars in name
  3760. .. name
  3761. .. object
  3762. 5 DOBINT
  3763. 5 CRC" "Apparently unused on the 49" "02B62") "DOBINT" ("BINT prologue
  3764. 5 number (hex)" "" "02911") "DOCHAR" ("Character prologue
  3765. 2 character" "" "029BF") "DOCMP" ("Complex number prologue
  3766. 3 real exponent
  3767. 12 real mantissa
  3768. 1 real sign
  3769. 3 complex exponent
  3770. 12 complex mantissa
  3771. 1 complex sign" "" "02977") "DOCODE" ("Code prologue
  3772. 5 length
  3773. .. machine code" "" "02DCC") "DOCOL" ("Secondary prologue
  3774. .. objects
  3775. 5 SEMI" "" "02D9D") "DOCSTR" ("String prologue
  3776. 5 length
  3777. .. characters" "" "02A2C") "DOECMP" ("Long complex prologue
  3778. 5 real exponent
  3779. 15 real mantissa
  3780. 1 real sign
  3781. 5 complex exponent
  3782. 15 complex mantissa
  3783. 1 complex sign" "" "0299D") "DOEREL" ("Long real prologue
  3784. 5 exponent
  3785. 15 mantissa
  3786. 1 sign" "" "02955") "DOEXT" ("Unit object prologue
  3787. .. object (usually a real)
  3788. .. unit
  3789. 5 SEMI" "" "02ADA") "DOHXS" ("HXS prologue
  3790. 5 length
  3791. .. hex digits, reverse order" "" "02A4E") "DOHSTR" ("HXS prologue
  3792. 5 length
  3793. .. hex digits, reverse order" "" "02A4E") "DOIDNT" ("Global name (ID) prologue
  3794. 2 # of characters
  3795. .. characters" "" "02E48") "DOLAM" ("Local name (LAM) prologue
  3796. see <REF>DOIDNT" "" "02E6D") "DOLNKARRY" ("Linked array prologue" "Not used by the system." "02A0A") "DOLIB" ("Library prologue" " 5 size
  3797. 2 # of characters
  3798. .. name
  3799. 2 # of characters (unless 0)
  3800. 3 library ID
  3801. 5 hash table offset
  3802. 5 message table offset
  3803. 5 link table offset
  3804. 5 config object offset
  3805. .. contents
  3806. 4 CRC
  3807. XLIBs:
  3808. 1 or 3: kind
  3809. 3 library ID
  3810. 3 command ID
  3811. .. object
  3812. --
  3813. <REF>TEXT:Libraries" "02B40") "DOLIST" ("List prologue
  3814. see <REF>DOCOL" "" "02A74") "DOREAL" ("Real number prologue
  3815. 3 exponent
  3816. 12 mantissa
  3817. 1 sign" "" "02933") "DOROMP" ("XLIB prologue
  3818. 3 library ID
  3819. 3 command #" "" "02E92") "DORRP" ("Directory prologue" " Home directory:
  3820. 3 # of attached libs
  3821. n*[
  3822. 3 library ID
  3823. 5 address of hash table
  3824. 5 address of message table
  3825. ]
  3826. 5 offset of last object
  3827. *[
  3828. 5 offset to previous object
  3829. 00000 for the first one
  3830. 2 # of characters
  3831. .. name of object
  3832. 2 # of characters
  3833. .. object
  3834. ]
  3835. Subdirectories:
  3836. 3 # of attached library
  3837. 7FF if none
  3838. 5 offset of last object
  3839. .. same as above" "02A96") "DOSYMB" ("Symbolic prologue
  3840. .. objects
  3841. 5 SEMI" "" "02AB8") "DOTAG" ("Tagged object prologue
  3842. 2 # of chars in tag
  3843. .. tag
  3844. .. object" "" "02AFC") "DOEXT0" ("" "" "02B88") "DOACPTR" ("" "" "02BAA") "DOEXT1" ("" "" "02BAA") "DOEXT2" ("" "" "02BCC") "DOEXT3" ("" "" "02BEE") "DOEXT4" ("" "" "02C10") "uart_buffer" ("UART buffer area (512)" "" "F02B8" :RAM) "~laDELROW" ("" "" "0190C3") "~laGPROW" ("" "" "01B0C3") "~laINSROW" ("" "" "01A0C3") "~la+COL" ("" "" "00D0C3") "~la+COLs" ("" "" "00E0C3") "~la+ELEM" ("" "" "0110C3") "~la+ELEMc" ("" "" "0100C3") "~la+ELEMr" ("" "" "00F0C3") "~la+RCsLP" ("" "" "00C0C3") "~la+ROW" ("" "" "00A0C3") "~la+ROWs" ("" "" "00B0C3") "~la-COL" ("" "" "0090C3") "~la-ROW" ("" "" "0070C3") "~la>COL" ("" "" "0140C3") "~la>DIAG" ("" "" "0170C3") "~la>ELEM" ("" "" "0130C3") "~la>ROW" ("" "" "0120C3") "~laBPMUTE" ("" "" "0200C2") "~laCOL>" ("" "" "0160C3") "~laCOND" ("" "" "04D0C2") "~laCONDdone" ("" "" "04E0C2") "~laCSWP" ("" "" "0040C3") "~laDIAG>" ("" "" "0180C3") "~laDT" ("" "" "0510C2") "~laECQhQAQh" ("" "" "0070C2") "~laEGV" ("" "" "0040C2") "~laEGVL" ("" "" "0020C2") "~laEGVL%%" ("" "" "0030C2") "~laEGetTiny" ("" "" "05E0C2") "~laEgCQRI" ("" "" "01B0C2") "~laEgCQRIk1" ("" "" "01C0C2") "~laEgCSchur" ("" "" "01A0C2") "~laEgHF" ("" "" "0060C2") "~laEgIsoVal" ("" "" "00A0C2") "~laEgM*G2" ("" "" "0110C2") "~laEgM*RG3" ("" "" "00F0C2") "~laEgPrep" ("" "" "01E0C2") "~laEgQRIk0" ("" "" "00C0C2") "~laEgQkHA" ("" "" "0080C2") "~laEgRQRI" ("" "" "00B0C2") "~laEgRQRIk1" ("" "" "00D0C2") "~laEgRSchur" ("" "" "0090C2") "~laEgRWilk3" ("" "" "00E0C2") "~laEgRotR" ("" "" "0130C2") "~laEgSclCls" ("" "" "0190C2") "~laEgValr" ("" "" "0120C2") "~laEgVcPair" ("" "" "0180C2") "~laEgVcSngl" ("" "" "0160C2") "~laEgVcUrhs" ("" "" "0170C2") "~laEgVecC" ("" "" "01D0C2") "~laEgVecR" ("" "" "0150C2") "~laEgWilk2" ("" "" "0100C2") "~laFPMUTE" ("" "" "01F0C2") "~laFSCALE" ("" "" "0210C2") "~laIV" ("" "" "0550C2") "~laIVF" ("" "" "0570C2") "~laIVc" ("" "" "0560C2") "~laLSQ" ("" "" "0220C2") "~laLsdScale" ("" "" "0590C2") "~laQ2hX" ("" "" "02B0C2") "~laQRF" ("" "" "0260C2") "~laQRSVecUp" ("" "" "02E0C2") "~laQRmaxSV" ("" "" "0300C2") "~laQRminSV" ("" "" "02F0C2") "~laQRrank" ("" "" "02D0C2") "~laQhA" ("" "" "0270C2") "~laQhB" ("" "" "0280C2") "~laRANK" ("" "" "0360C2") "~laRANM" ("" "" "0000C3") "~laRCI" ("" "" "0050C3") "~laRCIJ" ("" "" "0060C3") "~laROW>" ("" "" "0150C3") "~laRQF" ("" "" "02A0C2") "~laRREF" ("" "" "05B0C2") "~laRSVF" ("" "" "02C0C2") "~laRSWP" ("" "" "0020C3") "~laRSWP2" ("" "" "0030C3") "~laRanInt" ("" "" "0010C3") "~laRedHere?" ("" "" "05D0C2") "~laRedRow" ("" "" "05C0C2") "~laRefineDT" ("" "" "0520C2") "~laSCHUR" ("" "" "0050C2") "~laSETDIAG" ("" "" "0290C2") "~laSNORM" ("" "" "0340C2") "~laSNORM%%" ("" "" "0350C2") "~laSRAD" ("" "" "0000C2") "~laSV" ("" "" "0530C2") "~laSVD" ("" "" "0380C2") "~laSVL" ("" "" "0370C2") "~laSVc" ("" "" "0540C2") "~laScIntRnd" ("" "" "05A0C2") "~laSchur2" ("" "" "0140C2") "~laSvdAPPhV" ("" "" "03C0C2") "~laSvdAPk" ("" "" "03D0C2") "~laSvdBDQR" ("" "" "03F0C2") "~laSvdBDirC" ("" "" "0420C2") "~laSvdCROTL" ("" "" "0490C2") "~laSvdCROTR" ("" "" "0480C2") "~laSvdFDirC" ("" "" "0410C2") "~laSvdGPROT" ("" "" "03E0C2") "~laSvdGShft" ("" "" "0430C2") "~laSvdLtUBD" ("" "" "03A0C2") "~laSvdPSort" ("" "" "04A0C2") "~laSvdPrep" ("" "" "04B0C2") "~laSvdQR2x2" ("" "" "0400C2") "~laSvdQRB" ("" "" "0470C2") "~laSvdQRF" ("" "" "0460C2") "~laSvdQRSB" ("" "" "0450C2") "~laSvdQRSF" ("" "" "0440C2") "~laSvdUBD" ("" "" "0390C2") "~laSvdUQhQA" ("" "" "03B0C2") "~laTRACE" ("" "" "04C0C2") "~laULHSVF" ("" "" "0580C2") "~laUserLQ" ("" "" "0240C2") "~laUserLU" ("" "" "0500C2") "~laUserQR" ("" "" "0230C2") "~laVMAX%%" ("" "" "0010C2") "~laVMAXJRP" ("" "" "04F0C2") "~laVec-" ("" "" "0080C3") "~xDER" ("" "" "0CF002") "~xFCNAPPLY" ("" "" "0D9002") "~xINTEGRAL" ("" "" "0D2002") "~xWHERE" ("" "" "0D5002") "!MATTRNnc" ("" "" "81AB8") "!REDIMTEMP" ("" "" "81AAE") "!REDIMUSER" ("" "" "81AB3") "$jBITMAP" ("" "" "81084" :ML) "ChangeFocus" ("" "" "82819") "$jcorner" ("" "" "81092" :ML) "DoKeyCancel" ("" "" "827F1") "DoKeyEdit" ("" "" "827C9") "DoKeyOK" ("" "" "827FB") "DoMKeyOK" ("" "" "828D7") "DropSysObs" ("" "" "8185B") "$jDupAndThen" ("" "" "810D1") "$jECUSER" ("" "" "810DF") "EVALCRUNCH" ("" "" "81FB8") "$jGETPIX" ("" "" "810ED") "$jGETPIX3" ("" "" "810F4") "gFldVal" ("" "" "912D1") "IFEDispField" ("" "" "82779") "InitEnab" ("" "" "81C39") "lbrac" ("" "" "80A18") "LINECHANGE" ("" "" "81BD0") "~covMANMENU^" ("" "" "0BE0F0") "NEWINDEP" ("" "" "81856") "$jpixon2" ("" "" "811AA") "POLErrorTrap" ("" "" "82CC9") "~preFACT" ("" "" "056002") "PRLG" ("" "" "028FC") "PTYPE>PINFO" ("" "" "8301B") "~rpnXROOT" ("" "" "03C002") "sFldVal" ("" "" "91470") "SYMBNUMSOLVE" ("" "" "82FE9") "$jWindowXY" ("" "" "81236" :ML) "X@" ("" "" "82DA5")))