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

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 . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.4.1.html -- 2.5 Кб -- 17.01.1997
Похожие документы

10. OptInt PmWiki : MROIDelayLine / Trolley Software
... The essence of the solution is to generate a virtual PC on your desktop PC and install an old Linux distribution, circa 2006, in that. ... There are two major free virtual machines available for Linux, these are VirtualBox and KVM. ... Boot the virtual machine. ... Install a Linux 2.6 kernel if it isn't installed by default (you'll need to reboot the virtual machine after this step): . ... Printable View of http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/MROIDelayLine/TrolleySoftware) ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/MROIDelayLine/TrolleySoftware?action=print -- 12.6 Кб -- 01.03.2014
Похожие документы

11. Adding New Scaling Algorithms
SAOtng supports the following scale algorithms internally: . ... Support for other scaling algorithms can be added to SAOtng by writing a program that takes a FITS image as input and generates a scaled (8-bit) FIT image as output. ... Each scale program command line takes $data as stdin and writes the scaled FITS image to stdout. When the scale algorithm is executed, $data will be replaced by a command to retrieve the unscaled data, which then is passed to the scale program. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/saotng/adding_scales.html -- 4.2 Кб -- 01.10.2012
Похожие документы

12. Code of Good Practice for Scholarly and Scientific Research
Next: Definition of Scientific Misconduct Up: scientific Previous: Introduction . ... This Code of Good Practice closely follows the Statement on Safeguarding Good Scientific Practice issued by the Biotechnology and Biological Sciences Research Council (BBSRC) in 1998. ... The Observatory expects the highest standards of scientific integrity to be adhered to by the researchers, students and other staff that it funds, whether they are employees or associates of other institutions. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/administration/scientific/node2.html -- 11.8 Кб -- 11.02.2002
Похожие документы

13. Following a rainbow back to the Big Bang | Astronotes
Astronotes Armagh Planetarium's Stellar Blog! ... Stars . ... Space Flight . ... Some 13.7 billion years ago, a mere millionth of a second after the Big Bang, the first hydrogen and helium nuclei condensed out of a hot, dense soup of quarks and gluons. ... In the very last few kilometres some of the light was scattered by a myriad of water droplets (containing hydrogen nuclei which had existed almost since the Big Bang) slowly descending through the air following a rainshower. ...
[ Сохраненная копия ]  Ссылки http://www.armaghplanet.com/blog/following-a-rainbow-back-to-the-big-bang.html -- 42.2 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>2116) - www.armaghplanet.com/ )

14. FIRPO Help 5
Last modified on March 19, 1997 by A. Richichi . ADC cards and filter/clock box. The ADC card traditionally used with FIRPO I at CA has been used also for FIRP OII in Russia. ... At the same time, the new PCMCIA ADC card (DASCard 1000) has been succesfully installed on the TM-5000 notebook, and used for instance to record the Alpha Tau occultation at Arcetri on March 14, 1997. ... In der Filter/Clock Box war durch den Transport die Leiterplatte abgegangen und hatte einige Kontakte abgerissen. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/luna/firpo/firpo_message5.html -- 4.9 Кб -- 28.07.2005
Похожие документы
Еще в разделе: (Показать все результаты (>9024) - www.arcetri.astro.it/ )

15. Fast search through RTT150 data archive
RTT150 . ... This search system is designed for generating the necessary information on series of pointings (observations of each source consist of sets of exposures with different filters and sometimes with different exposure times) for observed sources. Search results appear at the separate page as a table with the following data: . DATE - real (not evening!) observations date (in YYYY-MM-DD format); . ... Bin - minimal CCD binning mode (may vary during the observations); . ...
[ Сохраненная копия ]  Ссылки http://hea.iki.rssi.ru/AZT22/ENG/fsearch.htm -- 9.7 Кб -- 10.07.2008
Похожие документы
Еще в разделе: (Показать все результаты (>445) - hea.iki.rssi.ru/ )

16. md5 - generate message digest
. md5 [ -0123456789 ] [ -h] file . This program generates the message digest of the given file using the RSA Message Digest 5 (MD5) and other selected algorithms. If file is not given, the program uses the standard input. -0123456789 . Select algorithm from the following list . -0 null . -1 MD5 . -2 SNEFRU . -3 CRC32 . -4 CRC16 . -5 MD4 . -6 MD2 . -7 SHA . -8 HAVAL . -9 null . -h . Display the result in hex; the default is base-64 . David L. Mills (mills@udel.edu)
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~er/xntp/md5cert.html -- 1.9 Кб -- 21.12.2007
Похожие документы

17. Dr. Dick Is Annoying....and Every Generation Is Annoyed In Turn - an Astronomy
Astronomy Discussion Forums . Forums: . ... Dr. Dick Is Annoying....and Every Generation Is Annoyed In Turn . ... Post Message | ... answers to the post at http://www.astronomy.net/forums/exploration/messages/168.shtml . ... Sorry, I don't intend to be annoying! - doctordick - November 27, 2002 - 19:51 UTC . ... www.astronomy.net . About Astronomy Net | ... Forum posts are Copyright their authors as specified in the heading above the post. "dbHTML," "AstroGuide," "ASTRONOMY.NET" & "VA.NET" . ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/forums/exploration/messages/171.shtml -- 13.8 Кб -- 09.04.2016
Похожие документы

18. Stellarium: StelScriptMgr Class Reference
... StelScriptMgr Class Reference . ... const QStringљ . ... Stops any running script. ... If the file is not found or cannot be opened for some reason, an Empty string will be returned. const QString StelScriptMgr::getDescription . ... If the file is not found or cannot be opened for some reason, an Empty string will be returned. const QString StelScriptMgr::getLicense . ... Get the rate at which the script is running as a multiple of the normal execution rate. void StelScriptMgr::pauseScript . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classStelScriptMgr.html -- 32.4 Кб -- 28.02.2014
Похожие документы

19. http://www.apo.nmsu.edu/arc35m/Instruments/TRIPLESPEC/tspec_sofwaretroubleshootingguide.pdf
... Seek help from APO hub specialists before moving to the instrument. the exposure sequence are working is a good sign that everything is talking), but the results are files filled with 0's. Array power needs to be powered in software using: tcamera arrayPower state= on or tspec arrayPower state= on 3) General error guidance: If the errors are coming from tspec or tcamera (not tcam) then there may be troubles in the instrument : --------------------------Guider ( ...
[ Текст ]  Ссылки http://www.apo.nmsu.edu/arc35m/Instruments/TRIPLESPEC/tspec_sofwaretroubleshootingguide.pdf -- 14.1 Кб -- 13.11.2008
Похожие документы

20. astro-ph
Full-Text Search . ... astro-ph . ... SAI VO . ... Atazadeh, K. group, for the Yakutsk array . Group, the CoRoT/SWG Ground-based Observations Working . Group, Next Generation Space VLBI Working . Group, Korean VLBI Network . ... Group, Pulsar Working . Group, AGILE Pulsar Working . Atanackovic-Vukmanovic, Olga . ... Group, Web Services Working . ... Group, LOFAR Pulsar Working . ... ATA GROUP . ... Group, on behalf of the ASTRO-H Science Working . ... Group, EoR Science Working . ...
[ Сохраненная копия ]  Ссылки http://vo.astronet.ru/arxiv/?author=ATA%20GROUP. -- 8.9 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>603) - vo.astronet.ru/ )

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


Астронет | Научная сеть | ГАИШ МГУ | Поиск по МГУ | О проекте | Авторам

Комментарии, вопросы? Пишите: info@astronet.ru или сюда

Rambler's Top100 RFBR Яндекс цитирования