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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.eso.org/~qc/tqs/pyqc/python_2.6.2.html.

1. pyQC: overview
... Python 2.6.2 + most up-to-date modules (December 2009) . ... release of V1.1 for qclib and plot modules (March 2009) . ... a python routine that shows how easy it it to create log plots (base 10 or otherwise), and how python takes care of the scaling and the axis numbers automatically. ... a python routine that shows how easy it is to plot images, change their interpolation, add contours, add an overplot, and add a colour bar. ... a python routine that shows how easy it is to plot FITS images. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/tqs/pyqc/python_demos.html -- 20.9 Кб -- 07.12.2009
Похожие документы
Еще в разделе: (Показать все результаты (>21648) - www.eso.org/ )

2. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... This module provides for executing CGI scripts based on media type or request method. ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... Action action-type cgi-script [virtual] . ... Script method cgi-script . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/ztcs/manual/de/mod/mod_actions.html -- 11.1 Кб -- 25.02.2008
Похожие документы

3. mod_actions - Apache HTTP Server
... Apache HTTP Server Version 2.2 . Apache > HTTP Server > Documentation > Version 2.2 > Modules . ... This module provides for executing CGI scripts based on media type or request method. ... The Action directive lets you run CGI scripts whenever a file of a certain MIME content type is requested. ... Action action-type cgi-script [virtual] . ... Script method cgi-script . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/en/mod/mod_actions.html -- 12.9 Кб -- 21.01.2013
Похожие документы

4. Module mod_actions
This module provides for executing CGI scripts based on media type or request method. ... Source File: mod_actions.c . ... Action . ... Syntax: Action action-type cgi-script . ... Examples: # Requests for files of a particular type: Action image/gif /cgi-bin/images.cgi # Files of a particular file extension AddHandler my-file-type .xyz Action my-file-type /cgi-bin/program.cgi . ... This directive adds an action, which will activate cgi-script when a file is requested using the method of method . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_actions.html -- 7.1 Кб -- 03.10.2002
Похожие документы

5. Python: module pass_script
pass_script (version 9/16/03) . ... A module for generating PASS scripts. ... class pass_script . ... init__ (self, script_name, pass_product_type =None , sw_version ='op' , vms =False ) . ... Returns the full script as a string. add_environ_line (self, environment_var, value, is_path =1 , is_file =1 ) . ... Data . ... MEGG_OUTPUT_DIRECTORY = '/data/scheduling/spss_flight_data/pass//megg/data' . ... TEMPLATE_LOGICAL_FILE = '/data/scheduling/spss_flight_data/pass//op_logicals/ops_job_logs.com' . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/spst/UnixTransition/doc/pass_script.html -- 10.2 Кб -- 08.04.2016
Похожие документы

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

7. TUI:Scripts:Scripting Tutorial:User Input
This example shows how to add a few input widgets to a script and how to get data from them. This is a fairly artificial example in that one would normally just use the DIS Expose window for this purpose. ... import RO.Wdg import Tkinter import TUI .Inst.ExposeModel as ExposeModel from TUI .Inst.ExposeStatusWdg import ExposeStatusWdg class ScriptClass(object): Take a series of DIS darks with user input . def __init__(self, sr): Display exposure status and a few user input ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/35m_operations/TUI/Scripts/ScriptingTutorial/UserInput.html -- 6.6 Кб -- 05.09.2014
Похожие документы

8. http://hea-www.harvard.edu/~dburke/PDL/README-Astro-Cosmology-0.90
... History ------- 04 Aug 2001 v0.90 more reorganisation. Hopefully CPAN-friendly now more tests (thanks Brad) 02 Aug 2001 v0.84 minor reorganisation, no change to code or docs 01 Aug 2001 v0.83 added version method, renamed string to stringify further documentation improvements improvements to test suite (thanks Brad) 29 Jul 2001 v0.82 added STERADIAN to constants improved documentation 28 Jul 2001 v0.81 renamed to Astro :: Cosmology removed need for PDL :: Astro :: Constants 19 Jul ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/PDL/README-Astro-Cosmology-0.90 -- 6.2 Кб -- 04.08.2001
Похожие документы

9. Example of debugging a shell script
To print commands and their arguments as they are executed: cat example #!/bin/sh TEST1=result1 TEST2=result2 if [ $TEST1 = "result2" ] then echo $TEST1 fi if [ $TEST1 = "result1" ] then echo $TEST1 fi if [ $test3 = "whosit" ] then echo fail here cos it's wrong fi . This is a script called example which has an error in it; the variable $test3 is not set so the 3rd and last test [ command will fail. Running the script produces: example result1 [: argument expected . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.8.1.html -- 2.7 Кб -- 17.01.1997
Похожие документы

10. Central Processor Platform CentralProcessor 0.11 documentation
... CentralProcessor 0.11 documentation . Platform Documentation . The ASKAP Central Processor platform consists of a Cray XC30 supercomputer and a 1.4PB Cray Sonexion storage system mounted as a Lustre filesystem. 2 x Login Nodes: . ... To login to the ASKAP Central Processor: . ... usr/bin/env bash #SBATCH --time=01:00:00 #SBATCH --ntasks=80 #SBATCH --ntasks-per-node=20 #SBATCH --job-name=myjobname #SBATCH --no-requeue #SBATCH --export=NONE aprun -B ./myprogram . ... Central Processor Platform . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/askapsoft/sdp/docs/current/platform/processing.html -- 16.7 Кб -- 12.04.2016
Похожие документы

11. Python in Astronomy
Next: PyFITS, a FITS Module for Python . ... Pirzkal, N. & Hook, R. N. 1999, in ASP Conf. ... Python is a powerful, object-oriented scripting language that is easy to extend, free, and available for most computer platforms. Python, together with its Numerical module, and with the pFitsio module that is being developed by one of the authors, provides an attractive alternative to other languages such as Perl, IDL, and the IRAF CL, which are already widely used by the community. ...