Astronet Поиск по астрономическим сайтам English Russian
       
        Точная форма слов   О проекте   Сайты   Справка
Найдено документов: 239443 (164 сайтов) ---- Время поиска: 0.36сек.   

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | След.

Показаны документы, содержащие фрагменты текста из документа
http://www.atnf.csiro.au/computing/software/gipsy/sheltran/limitations.html.

1. Programming Languages
... VMS users have the following compilers available: C, C++, Pascal, FORTRAN, and MACRO--which is a low-level language. ... Create a source file containing valid program statements as defined by the language. ... Run the program. ... FORT RECALC $ LINK RECALC $ RUN RECALC When you write your programs, your source files should always have a file type that identifies the programming language being used. ... Users create a source file of MACRO statements and then compile, link, and run, the file. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/ftp/documents/system-docs/vms-guide/html/VUG_45.html -- 9.1 Кб -- 01.11.1995
Похожие документы

2. MIDAS Command Language
Next: Passing Parameters in Up: Monitor and Command Previous: Execution of Commands . The MIDAS command language ( MCL ) consists of all the commands which you enter interactively, and an additional set of commands to provide the necessary tools to write MIDAS ``programs'', called MIDAS procedures . ... The following Command Language commands provide the necessary programming constructs like looping and conditional branching for MIDAS procedures, they cannot be used interactively: . ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/95NOV/vol1/node40.html -- 9.8 Кб -- 23.02.1996
Похожие документы

3. Image: The procedure is as follows: put a coin into special box, pull a cord
. Album : Фотоальбом Сергея Аюкова :: Travels to distant places and countries :: 1997/08 Japan (Kyoto, Nara) :: 17/08 Kyoto streets. Maruyama park . Up . << Prev . The procedure is as follows: put a coin into special box, pull a cord (the bells will chime), clap hands and bow. Don't forget to tell god about your wishes. You see the woman at the left in the end of the prayer. Next >> . Photo album generated by album from Dave's MarginalHacks on Wed Jun 5 20:38:35 2013 .
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/album/trips/1997.08.Japan/17.Maruyama/tn/a24l.jpg.index.html -- 5.6 Кб -- 05.06.2013
Похожие документы

4. Quality Control Mission
... Monitor short-term and long-term performance of all pipeline supported instrument modes, to assure that ESO delivers astronomical data of known and controlled quality . Follow the execution of instrument calibration plans; work with Paranal Science Operations to maintain calibration plans . Process all pipeline supported calibration data; ingest certified calibration products into the Archive . Create associations for all pipeline supported science data and archive them . ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/admin/mission.html -- 3.8 Кб -- 12.07.2012
Похожие документы

5. Conditionals
... The if statement . ... The switch statement . ... if ( expression ) statement 1 else statement 2 ...or: . ... expression 1 ? ... The C switch is similar to Pascal's case statement and it allows multiple choice of a selection of items at one level of a conditional where it is a far neater way of writing multiple if statements: . switch ( expression ) { case item 1 : statement 1 ; break; case item 2 : statement 2 ; break; case item n : statement n ; break; default: statement ; break; } . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node5.html -- 8.0 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node5.html -- 8.0 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node5.html -- 8.0 Кб -- 02.10.2012
Похожие документы

6. Sheltran - I/O statements
ERR=<exit specifier>,... and/or .. END=<exit specifier>,.. The following I/O statements are recognized: READ, WRITE, OPEN, CLOSE, REWIND, BACKSPACE, INQUIRE, ENDFILE. < exit specifier > can be any one of the following: XWHILE, XREPEAT, XFOR, STOP, RETURN or < procedure name > . The exit specification must appear on the first line of the I/O statement. ... READ(1,FMT='(A)',END=XWHILE,ERR=ERRPRC) LINE WRITE(2,FMT='(1X,A)',ERR=ERRPRC) LINE CWHILE . PROC ERRPRC REWIND 1 REWIND 2 CPROC . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/sheltran/IO.html -- 2.3 Кб -- 16.01.2009
Похожие документы

7. How to reprocess ODFs to generate calibrated and concatenated EPIC event lists
... List of SAS threads This thread illustrates you how to reprocess Observation Data Files (ODF) to obtain calibrated and concatenated event lists, which can be directly used to generated scientific products (images, spectra, light curves) through evselect or xmmselect . ... run the EPIC reduction meta-tasks. ... emproc For the pn: . ... emproc selectinstruments=yes emos1=yes . ... Concatenated and calibrated EPIC event lists are already available in the PPS Pipeline Products . ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/7.0.0/documentation/threads/EPIC_reprocessing.html -- 8.5 Кб -- 21.08.2006
Похожие документы

8. ELECTRICITY GENERATION
.
[ Сохраненная копия ]  Ссылки http://zebu.uoregon.edu/1999/ph161/l3.html -- 7.6 Кб -- 15.06.2011
Похожие документы
Еще в разделе: (Показать все результаты (>299) - zebu.uoregon.edu/ )

9. The if statement
The if statement uses the exit status of the given command and conditionally executes the statements following. The general syntax is: if test then commands (if condition is true) else commands (if condition is false) fi . ... Make sure that you end each if construct with a fi statement. if statements may be nested: if ... then ... else if ..... fi fi . The elif statement can be used as shorthand for an else if statement. For example: if ... then ... elif ..... fi . Example . ...
[