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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.adass.org/adass/proceedings/adass96/stobiee.html.

1. pyQC: script structure
... overview of pyQC . ... output used by . ... All pyQC scripts and modules share a similar structure. Python offers to group functions, classes, etc. into modules which can be imported by different scripts. ... In order to avoid confusion if names are used by different (especially external) modules, the QC scripts use the 'from' statement only for pyQC modules, i.e.: . ... For other modules, the simple 'import' statement is used: . ... Python modules are also used for keeping script configuration. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/tqs/pyqc/script_struct.html -- 12.3 Кб -- 20.05.2014
Похожие документы

2. http://www.adass.org/adass/proceedings/adass96/reprints/stobiee.pdf
... The FITS List Calculator and Bulk Data Processor (FLC) is an IDL program with a graphical user interface develop ed for processing large groups of Near Infrared Camera and Multi-Ob ject Sp ectrometer (NICMOS) test data efficiently. ... Data Typ es There are four basic data typ es used in FLC: 1. lists 2. images 3. arrays 4. scalars The user may customize the numb er of lists, elements in a list, images, and arrays by editing the user defs file. ... Lists List and Image structures in FLC. ...
[ Текст ]  Ссылки http://www.adass.org/adass/proceedings/adass96/reprints/stobiee.pdf -- 129.1 Кб -- 14.01.1998
Похожие документы

3. Stellarium: Scripting Engine
Stellarium 0.12.3 . ... Classes . ... Scripting . ... Scripting Engine . ... Script Console . ... Since version 0.10.1, Stellarium includes a scripting feature based on the Qt Scripting Engine . ... Prior to version 0.10.0, Stellarium used a different scripting engine called StratoScript . ... Prior to version 0.10.0, Stellarium had a simple scripting engine, known as StratoScript . ... This script prints "Hello Universe" in the Script Console output window. core.debug( "Hello Universe" ); . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/scripting.html -- 11.5 Кб -- 28.02.2014
Похожие документы

4. correlator:mpiscript [ATNF VLBI Wiki]
... You are here: start €Ё correlator €Ё mpiscript . ... MPI . ... An important one in most cases is MPI_Comm_rank() which returns an ordinal integer number to each instance . ... Type $ mpirun -np 3 -machinefile machines env . ... On cuppa it is OMPI_MCA_ns_nds_vpid $ mpirun -np 6 -machinefile machines env | ... usr/bin/perl use Env; Env::import(); $rank=$OMPI_MCA_ns_nds_vpid; if ($rank == 0) { print "I am zero\n"; } elsif ($rank < 5) { print "I am $rank\n"; } else { die "Nothing to do\n"; } . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/vlbi/dokuwiki/doku.php/correlator/mpiscript -- 16.5 Кб -- 10.04.2016
Похожие документы

5. HTML Tag Reference
... This section discusses the tags for defining scripts in a document. Scripts allow you to include JavaScript code in your HTML documents. ... The SCRIPT tag specifies client-side JavaScript code, which means JavaScript code that runs directly in the browser. ... For example, the browser interprets text within angle brackets as a script element, not as an HTML element. ... You can also use SCRIPT tags in the body of your document to define JavaScript code to be executed in that part of the document. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/REF/tags13.htm -- 10.7 Кб -- 26.03.1998
Похожие документы

6. Creating commands and programs using the shell
As well as using the shell to run commands you can use its built-in programming language to write your own commands or programs. You can put commands into a file - known as a shell script - and then execute that file as you would a command or program. The use of the Bourne shell (sh) is illustrated as this is available on all UNIX systems. ... The C and TC shells use a programming language which is similar to the C programming lan