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

1 | 2 | 3 | 4 | 5 | След.

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

1. Sheltran - IF construct
IF <logical expression> THEN <statement>.. ELSEIF <logical expression> THEN <statement>.. ELSE <statement>.. CIF . ... ELSEIFs when present must precede any corresponding ELSE. ... When the IF or ELSEIF condition has the value .TRUE., the statements following are executed and control is transferred to the statement following the CIF. ... When the IF and all ELSEIF clauses have a value which is .FALSE., control is passed to the statement following the corresponding ELSE or CIF. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/sheltran/IF.html -- 2.6 Кб -- 16.01.2009
Похожие документы

2. 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
Похожие документы
Еще в разделе: (Показать все результаты (>809) - jet.sao.ru/ )

3. Functions
... Functions are one of the fundamental building blocks in JavaScript. ... The return statement specifies the value returned by the function. return number * number All parameters are passed to functions by value ; the value is passed to the function, but if the function changes the value of the parameter, this change is not reflected globally or in the calling function. ... return 1 . ... The two "parse" functions, parseInt and parseFloat , return a numeric value when given a string as an argument. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/javascript/clientguide/fcns.htm -- 16.0 Кб -- 07.10.1999
Похожие документы

4. Control statements
As conditional or control statements you have IF in many variants (but essentially not changed from Fortran 77), DO (with some new variants) and the completely new statement CASE . The DO- loop should now be ended with the statement END DO and we no longer need any statement number. In addition, we can use the statement EXIT to jump out of the DO -loop and CYCLE in order to go to the next iteration of the present DO -loop. ... all negative numbers WRITE (*,*) 'Negative number' CASE (0) ! ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c6.html -- 5.4 Кб -- 17.02.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/c6.html -- 5.4 Кб -- 17.02.1996
Похожие документы

5. Apache module mod_setenvif
This module provides the ability to set environment variables based upon attributes of the request. ... The mod_setenvif module allows you to set environment variables according to whether different aspects of the request match regular expressions you specify. ... BrowserMatch . ... Syntax: BrowserMatch regex env-variable [= value ] [ env-variable [= value ]] .. ... Module: mod_setenvif . ... The BrowserMatch directive defines environment variables based on the User-Agent HTTP request header field. ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_setenvif.html -- 13.8 Кб -- 05.11.2004
Похожие документы

6. 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
Похожие документы

7. The ESO VLT CCD Detectors Software
... Charge Coupled Devices (CCD) are currently by far the most widely used type of detector in astronomy. ... After a brief introduction to the VLT Control System, the VLT CCD Detectors Control Software is presented. The VLT Control System is a distributed system consisting of a set of UNIX Workstations, dedicated to high level operations, such as coordination of sub-system activities and interface to the users, and VME-based Local Control Units (LCU), dedicated to the control of sub-systems hardware. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass96/longinottia.html -- 10.1 Кб -- 23.06.1998
Похожие документы

8. Oh My Aching Chemistry Back! - an Astronomy Net Education Forum Message
Astronomy Discussion Forums . Forums: . Atm ћ Astrophotography ћ Blackholes ћ Blackholes2 ћ CCD ћ Celestron ћ Domes ћ Education . ... Discussion Forums . ... Oh My Aching Chemistry Back! Forum List | ... Post Message | ... If heat is produced, mass is lost. ... www.astronomy.net . About Astronomy Net | Advertise on 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/education/messages/114.shtml -- 13.2 Кб -- 09.04.2016
Похожие документы

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. XWare > APOD
... Readily produced in nuclear reactions and particle collisions, they can easily pass completely through planet Earth without once interacting with any other particle. ... Recent photographs by the spacecraft Mars Global Surveyor, currently in orbit around Mars, show features unusual for Mars yet similar to a dried pond on Earth. ... The quake was the first ever recorded on the Sun, but only because astronomers have only recently figured out when and how to find them using the orbiting SOHO spacecraft...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/apod.html?page=98&d=2001-01 -- 15.0 Кб -- 12.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>105095) - www.astronet.ru/ )

11. Stellarium: StelShortcutMgr Class Reference
Stellarium 0.12.3 . ... Classes . ... StelShortcutMgr Class Reference . ... voidљ . ... loadShortcuts (const QString &filePath, bool overload=false) . ... addGuiAction (const QString &actionId, bool temporary, const QString &text, const QString &primaryKey, const QString &altKey, const QString &groupId, bool checkable=true, bool autoRepeat=false, bool global=false) . ... if true, if a shortcut in the file already exists, replace its keys with the ones in the file. void StelShortcutMgr::loadShortcuts . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classStelShortcutMgr.html -- 22.0 Кб -- 28.02.2014
Похожие документы

12. Database of Optical Constants -- Level: welcome
The database contains references to the papers, data files and links to the Internet resources related to measurements and calculations of the optical constants in the wavelength interval from X-rays to radio domain. ... References to some useful books and reviews on the subject (e.g. the classical handbooks edited by E.D.Palik) and links to Internet collections of optical constants and personal WWW pages with related software were also placed in the database. You have arrived at our welcome page. ...
[ Сохраненная копия ]  Ссылки http://www.astro.spbu.ru/JPDOC/ -- 10.8 Кб -- 19.11.2010
Похожие документы
Еще в разделе: (Показать все результаты (>215) - www.astro.spbu.ru/ )

13. GOCG Pre-Observation Products
Next: Navigation Pre-Observation Products . ... SRT (Space Radio Telescope) Schedule (SRS) File . ... What: GOCG generates the Space Radio Telescope (SRT) schedule file, or SRS file, from current GSTS file. The SRS file has more precise time stamps than long-term schedules, and also designates which GTS will be used when. ... The SRS file also serves as the antenna pointing schedule file, as it describes the planned orientation of the spacecraft (and solar panels) as a function of time. ...
[ Сохраненная копия ]  Ссылки http://www.asc.rssi.ru/RadioAstron/documents/rmoh/eng/gocgpre.htm -- 8.4 Кб -- 16.05.2001
Похожие документы

14. Known SAOtng bugs and limitations
The following bug and limitations are known. Please send new bug reports, comments, suggestions to: saotng@head-cfa.harvard.edu: . ... When the raw data is being transferred to SAOtng by the external file access program, the GUI performance can slow down noticeably. When a cursor shape is changed (e.g. from circle to rectangle) using the (Button 3) marker menu inside the cursor, the button press actions inside the cursor become confused. ... This causes problems with discrete colormaps. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/saotng/bugs.html -- 3.2 Кб -- 01.10.2012
Похожие документы

15. ShapeRoi (ImageJ API)
... Class . ... java.lang.Object ij.gui.Roi ij.gui.ShapeRoi . ... public class ShapeRoi . ... ShapeRoi (int x, int y, java.awt.Shape s) . ... Constructs a ShapeRoi from an Roi. public ShapeRoi (java.awt.Shape s) . Constructs a ShapeRoi from a Shape. public ShapeRoi (int x, int y, java.awt.Shape s) . ... ShapeRoi.SHAPE_ROI . ... Returns a reference to the Shape object encapsulated by this ShapeRoi. public static void addCircle (java.lang.String sx, java.lang.String sy, java.lang.String swidth) . ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/gui/ShapeRoi.html -- 39.5 Кб -- 02.12.2010
Похожие документы

16. Untitled Document
The types of respirators in use at APO are half-face, full face, and mask-style filter types. ... These respirators DO NOT supply oxygen. ... The observatory does not maintain Self Contained Breathing Apparatus (SCBA) for use and, consequently, materials that require them cannot be used. ... Whenever possible chose adequate ventilation over using a respirator. ... Oxygen monitors used for confined spaces may be used to monitor oxygen levels where respirators are required. ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Site/usersguide/SafetyPlan/06SafeSec14.html -- 9.8 Кб -- 21.05.2009
Похожие документы

17. Watch comets in action | Astronomy.com
... Tonight's Sky . ... The Magazine . ... Observing . ... An artificial comet holds secrets to Earths life . ... Gravitational wave search provides insights into galaxy evolution and mergers . ... The double star 54 Leonis, spiral galaxy NGC 3198, and emission nebula NGC 3199 . ... Astronomy for Kids . ... Watch comets in action . ... Get instant access to subscriber content on Astronomy.com! ... Receive news, sky-event information, observing tips, and more from Astronomy's weekly email newsletter. ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.com/magazine/2011/08/watch-comets-in-action -- 62.9 Кб -- 10.04.2016
Похожие документы

18. Asus Сумка для ноутбука Asus - Asus - Asus Бра Favourite Capella 1145-1W
... Мягкий материал отделения для ноутбука защитит устройство от случайных ударов. Модная сумка для ноутбуков и планшетов с диагональю экрана 10 или 12 дюймов, а также для их аксессуаров. ... Бренд: Favourite (Германия) . Коллекция: Capella . ... Цвет плафонов и подвесок: белый, неокрашенный . Цвет арматуры: коричневый . Тип поверхности плафонов и подвесок: матовый, прозрачный . ... Материал плафонов и подвесок: полимер, стекло . ... Fanvil X5 Черный Черный.. ... Цвет: черный . ...
[ Сохраненная копия ]  Ссылки http://astrokuban.info/astroku4012.html -- 20.6 Кб -- 14.02.2016
Похожие документы

19. 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
Похожие документы

20. IDL programs
... This program was created for correlating chosen regions in the series of fts images. ... Chosen regions' . ... In this section the program counts the integral for each region of the grid for each image. ... As a matter of fact, the integral is total brightness of the region and it is counted by 'int_tabulated' IDL function. ... In addition, the program will show the count of the regions which correlate with the corresponding region (the brighter region means the bigger count) and its contour. ...
[ Сохраненная копия ]  Ссылки http://lnfm1.sai.msu.ru/~kupry/SOFTWARE/korel_en.html -- 9.9 Кб -- 15.08.2003
Похожие документы
Еще в разделе: (Показать все результаты (>186) - lnfm1.sai.msu.ru/ )

1 | 2 | 3 | 4 | 5 | След.


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

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

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