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

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

Показаны документы, содержащие фрагменты текста из документа
http://star.arm.ac.uk/f77to90/c7.html.

1. Program units
In addition to the four old program units: PROGRAM (that is the main program), SUBROUTINE, FUNCTION and BLOCK DATA , the new concept MODULE has been added, as well as some new things in the old units. ... POSITIVE NUMBERS ASSUMED TYPE(INTERVAL), INTENT(IN) :: A, B TYPE (INTERVAL) :: INTERVAL_MULTIPLICATION INTERVAL_MULTIPLICATION%LOWER = A%LOWER * B%LOWER INTERVAL_MULTIPLICATION%UPPER = A%UPPER * B%UPPER END FUNCTION INTERVAL_MULTIPLICATION FUNCTION INTERVAL_DIVISION(A, B) ! ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c7.html -- 11.4 Кб -- 30.08.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/c7.html -- 11.4 Кб -- 30.08.1996
Похожие документы
Еще в разделе: (Показать все результаты (>1575) - crydee.sai.msu.ru/ )

2. Event-driven Tasks and Graphical User Interfaces
... The only event-driven pieces of software were the user interface Hermes, the display server GIDS and the GDS server. ... Event-driven tasks are fundamentally different from procedural tasks. ... Using this event handling, a collection of routines has been built, which allows the programmer to construct a graphical user interface for a task. ... These are the events associated with user input keywords and one other event which is generated when a task is resumed after it was pausing. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/pguide/event-driven.html -- 8.8 Кб -- 17.01.2009
Похожие документы

3. Python: module ihooks
ihooks . ... usr/local/Python-2.5/lib/python2.5/ihooks.py . Module Docs . Import hook support. ... 1) A "file system hooks" class provides an interface to a filesystem. ... If a module importer class supports dotted names, its import_module() . ... init__ (self, loader =None , verbose =0 ) . ... find_module (self, name, path =None ) . ... init__ (self, hooks =None , verbose =0 ) . ... class Hooks ( _Verbose ) . ... import_module (self, name, globals =None , locals =None , fromlist =None ) . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/spst/UnixTransition/doc/ihooks.html -- 27.5 Кб -- 05.11.2015
Похожие документы
Еще в разделе: (Показать все результаты (>14279) - www.stsci.edu/ )

4. Tsearch2 in Japanese
... Argument: C-Type: (char *) (IN) Desc: Pointer to the text which we parse 2. ... Argument: C-Type: (char **) (OUT) Desc: token text 3. ... LexDescr * descr = (LexDescr *) palloc(sizeof(LexDescr) * (2+1)); /* there are only two types in this parser */ descr [0].lexid = 3; descr [0].alias = pstrdup( word ); descr [0]. descr = pstrdup( Word ); descr [1].lexid = 12; descr [1].alias = pstrdup( blank ); descr [1]. descr = pstrdup( Space symbols ); descr [2].lexid = 0; PG_RETURN_POINTER( ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/HOWTO-parser-tsearch2.html -- 12.8 Кб -- 22.12.2007
Похожие документы

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

6. ESO - VLT/Instrument Interfaces
... Science . ... Science Users Information > Observing Facilities > Instrumentation Development > VLT/Instrument Interfaces . ... APEX Visitor Instrument . ... The interfaces between the VLT Unit Telescopes and the scientific instruments to be operated at the VLT Cassegrain, Nasmyth and Coudц© foci are well defined. ... Interface and numerous other relevant information for instrument builders is available in the "Requirements for Scientific Instruments on the VLT Unit Telescopes" , ESO doc. no. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/sci/facilities/develop/interfacesvlt.html -- 31.4 Кб -- 10.04.2016
Похожие документы

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

8. SAS Coding Standards
In order to ensure consistency between code written at different institutes, and to ease maintainance and testing, all code shall be written to the following standards wherever possible. ... Proper use should be made of these facilities, rather than coding in the Fortran-77 subset of the language. An explicit interface should be used for all procedures (i.e. subroutines and functions). ... However, general purpose classes should not use the application name (i.e. Sas) as the prefix. ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/6.0.0/doc/devel/coding.html -- 17.1 Кб -- 21.09.2001
Похожие документы

9. http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/ocu/pcr/masmv51/include/MIXED.INC
... ; ; ifFP statement Assembles statement if far data ; ; FPoperand Conditionally provides ES override for data ; ; pLes register, address Conditionally loads data through ES ; ; pLds register, address Conditionally loads data through DS ;if1 ; Translate command-line arguments ; Initialize procName procName equ foo ; Set model passed from command line setModel macro mod ifdef cLang . model mod, C lang EQU C elseifdef BASIC ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/ocu/pcr/masmv51/include/MIXED.INC -- 4.1 Кб -- 02.03.2001
Похожие документы

10. Using XML and Java for Astronomical Instrument Control
... Up: Telescope and Instrument Control Systems . ... 216, Astronomical Data Analysis Software and Systems IX, eds. N. Manset, C. Veillet, D. Crabtree (San Francisco: ASP), 271 . ... NASA Goddard Space Flight Center and AppNet, Inc. are developing AIML to command and control astronomical instruments. Our software architecture combines the platform-independent processing capabilities of Java with the power of XML. ... Instrument description is too tightly coupled with details of implementation. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass99/O8-03/ -- 13.6 Кб -- 04.10.2000
Похожие документы

11. Graphical user interface
... UNIX and Linux don't incorporate the user interface into the kernel; instead, they let it be implemented by user level programs. ... This arrangement makes the system more flexible, but has the disadvantage that it is simple to implement a different user interface for each program, making the system harder to learn. ... X also does not implement a user interface; it only implements a window system, i.e., tools with which a graphical user interface can