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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.adass.org/adass/authors/adassconf.sty.

1. The File Life Cycle
The File System . This section describes how you can create new files, copy existing files, and delete obsolete files. ... RENAME to change the name of a file. ... Files can be created in several ways: text can be entered from the keyboard via the CREATE command, an editor can create a file, as can a running program, and files can be copied from other directories. ... To delete obsolete files, use the DELETE command followed by a file name or file name template (wildcards). ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/ftp/documents/system-docs/vms-guide/html/VUG_22.html -- 9.0 Кб -- 01.11.1995
Похожие документы

2. Monitor and Command Language
Next: Starting the MIDAS Up: No Title Previous: Some Useful Commands . ... In section 5 you will find some details about how the MIDAS commands are executed. ... With MCL you can write high level MIDAS ``programs'' which are called MIDAS procedures to distinguish them from programs written in a language like FORTRAN-77 or C. The topics include: . ... All the commands related to MIDAS catalogs are listed in section 9, together with an example of how to use catalogs in MIDAS procedures. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/94NOV/vol1/node23.html -- 7.3 Кб -- 23.02.1996
Похожие документы

3. SM - Tips for Mongo Users
... For those users of Mongo intimidated by change, we note that in most cases it is possible to ignore the enhancements by using a macro presented in the next section. This macro redefines commands to reproduce the old syntax; for example limits is defined to mean LIMITS x y . It is also possible to read Mongo files using the READ OLD command, and the macros input and read_old based upon it. ... Vectors may be defined from the keyboard using DO loops or expressions. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/smongo/sm_31.html -- 8.0 Кб -- 02.10.2012
Похожие документы

4. Examples of using the man command
To get an overview of section 1 (one) of the manual: man 1 intro . ... This displays a one line synopsis of each command that has this keyword in its description. To search the online manual for a command with the phrase "copy files": man -k 'copy files' . ... To check what a command does: whatis more more, page (1) - browse or page through a text file . ... To display the manual page for the cp (copy files) command: man cp . ... To print the manual page for the man command: man -t man . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/examples/man.html -- 3.0 Кб -- 17.01.1997
Похожие документы

5. Summary of Tasks in this Section
Next: Bringing up IRAF Up: IRAF/PROS Previous: IRAF/PROS . Task . ... Package Needed . list contents of current package . list contents of all loaded packages . ... language* . ... edit last command . ... edit parameter file . ... edit image file headers . ... display help file for specific task or package . ... list parameters for specific task . ... list packages loaded . ... edit .qp file headers . ... Next: Bringing up IRAF Up: IRAF/PROS Previous: IRAF/PROS rsdc@cfa.harvard.edu . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/node4.html -- 6.8 Кб -- 01.10.2012
Похожие документы

6. ASRAS HOME
... Radio Astronomy . ... ASRAS Board Members . ... To see the most up to date news and events happening with ASRAS log in with your user name and password and then click on the Activities page. ... Messier Marathon (Member Observing) CANCELLED Saturday, April 9, 2016 9:00 PM Location:Farash Center Ionia NY . ... ASRAS Members meeting - Friday May 6 at Farash Center - Ionia NY . ... ASRAS Board members meeting - monday May 9 @ Farash Center Monday, May 9, 2016 7:00 PM Location:Farash Center Ionia NY . ...
[ Сохраненная копия ]  Ссылки http://www.rochesterastronomy.org/ -- 63.4 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>79) - www.rochesterastronomy.org/ )

7. Command line procedures
Next: Allocate/load STARTABLE Up: STARBASE Previous: Managing a calibrator catalog Contents . In this section we list some command line procedures. ... Allocate/load STARTABLE . ... Print/list information . Lists . ... Absolute visual magnitudes . Masses . ... Diameters . ... Absolute magnitudes . ... Orbital inclinations, semi-major axes, and secondary masses . ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~chummel/oyster/manual/node106.html -- 4.5 Кб -- 28.04.2015
Похожие документы

8. From Power Up To Bash Prompt: The Filesystem
Next Previous Contents . ... There are filesystems on disk partitions and other devices, and there is the filesystem as it is presented to you by a running Linux system. In Linux, you ``mount'' a disk filesystem onto the system's filesystem. ... A filesystem imposes some structure on this, and makes it look like files within directories within directories.. ... If the power cuts out at this point, the filesystem will be broken. ... Usually, the kernel mounts its root file system read-only. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/doc/pwr2bash/From-PowerUp-To-Bash-Prompt-HOWTO-7.html -- 6.8 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/doc/pwr2bash/From-PowerUp-To-Bash-Prompt-HOWTO-7.html -- 6.8 Кб -- 11.09.2010
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/doc/pwr2bash/From-PowerUp-To-Bash-Prompt-HOWTO-7.html -- 6.8 Кб -- 02.10.2012
Похожие документы

9. Keyword arguments and default arguments
Routines can now be called with keyword arguments and can use default arguments, that means that some arguments can be given with keywords instead of position and some do not have to be given at all, in which case a standard or default value is used. ... IMPLICIT NONE INTERFACE SUBROUTINE SOLVE (A, B, N) INTEGER, INTENT (IN) : : N REAL, INTENT(OUT) : : A REAL, INTENT(IN), OPTIONAL : : B END SUBROUTINE SOLVE END INTERFACE REAL X ! ... You will use keyword arguments and default arguments so that . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c8.html -- 5.4 Кб -- 11.02.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/c8.html -- 5.4 Кб -- 11.02.1996
Похожие документы

10. Configuration Files - Apache HTTP Server
... Apache HTTP Server Version 2.4 . ... Apache HTTP Server is configured by placing directives in plain text configuration files. ... The server also reads a file containing mime document types; the filename is set by the TypesConfig directive, and is mime.types by default. httpd configuration files contain one directive per line. ... The server administrator further controls what directives may be placed in .htaccess files by configuring the AllowOverride directive in the main configuration files. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/fr/configuring.html -- 18.1 Кб -- 19.11.2015
Похожие документы

11. Configuration Files
... Scope of Directives .htaccess Files . ... Apache is configured by placing directives in plain text configuration files. ... Any directive may be placed in any of these configuration files. ... Apache configuration files contain one directive per line. ... Directives placed in the main configuration files apply to the entire server. ... The server administrator further controls what directives may be placed in .htaccess files by configuring the AllowOverride directive in the main configuration files....
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/configuring.html -- 11.3 Кб -- 05.11.2004
Похожие документы

12. http://www.mrao.cam.ac.uk/ppeuc/astronomy/ppeuc.ps
... For example, citations can be to a particular paper (One & Two (1999)), or to another such as this Three et al. (1999), or to more that one (One & Two (1999), Three et al. (1999)) are specified using: ...paper (``cite--oneќ), or to another such as this ``cite--threeќ, 3 or to more that one (``cite--one,threeќ) are... where the bibliography at the end of the paper contains ``begin--thebibliographyќ--ќ ``bibitem[One ``& Two (1999)]--oneќ One A. ``& Two B., 1999. ... References One A. & Two B., 1999. ...
[ Текст ]  Ссылки http://www.mrao.cam.ac.uk/ppeuc/astronomy/ppeuc.ps -- 72.5 Кб -- 22.06.1997
Похожие документы

13. Izmccd
Download Izmccd (~2.7 MB). ... If you want to calculate equatorial coordinates of object: . Click the " File " menu, and then click " Open " ; or press  on toolbar. Choose a file with image. ... Also see section " Viewing of image ". ... Before, if it is necessary, you must make an account dark current and flat field (See section " Preliminary processing of images ".) ... Measure the marked stars. ... Click the " Calculations " menu, and then click " Coordinates " or . ...
[ Сохраненная копия ]  Ссылки http://www.izmccd.puldb.ru/izmccd1e.htm -- 5.6 Кб -- 17.09.2007
Похожие документы
Еще в разделе: (Показать все результаты (>6) - www.izmccd.puldb.ru/ )

14. About this document ...
Up: AstroAsciiData 1.1 User Manual Previous: 4 The detailed description Contents . User Manual version 1.1.1 . This document was generated using the LaTeX 2 HTML translator Version 2002-1 (1.69) . Copyright ї 1993, 1994, 1995, 1996, Nikos Drakos , Computer Based Learning Unit, University of Leeds. ... latex2html -t 'AstroAsciiData 1.1 User Manual' -show_section_numbers -split 4 -local_icons -address mkuemmel@eso.org asciidata . ... mkuemmel@eso.org ...
[ Сохраненная копия ]  Ссылки http://www.stecf.org/software/PYTHONtools/astroasciidata/manual/asciidata/node6.html -- 3.6 Кб -- 30.04.2009
Похожие документы
Еще в разделе: (Показать все результаты (>109) - www.stecf.org/ )

15. Selection (ImageJ API)
... Class . ... SUMMARY: NESTED | FIELD | CONSTR | METHOD . DETAIL: FIELD | ... java.lang.Object ij.plugin.Selection . ... public class Selection . ... Field Summary . ... Method Summary . ... This method is called when the plugin is loaded. Methods inherited from class java.lang.Object . ... Constructor Detail public Selection () . ... This method is called when the plugin is loaded. 'arg', which may be blank, is the argument specified for this plugin in IJ_Props.txt. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/plugin/Selection.html -- 13.5 Кб -- 02.12.2010
Похожие документы

16. НАУЧНЫЙ СОВЕТ ПО АСТРОНОМИИ - Секция 9: Астрометрия и прикладная астрономия
... Бюро . Состав . Состав секции . ... Комиссия 2: Прикладная астрономия . ... 2012 . ... 9 "Астрометрия и прикладная астрономия" Научного совета по астрономии РАН создана в результате реформирования прежней секции ? 9 "Астрометрия, небесная механика и прикладная астрономия" решением Бюро Научного совета по астрономии РАН от 23 мая 2012 г. Одновременно решением Бюро Научного совета была создана Секция ? ... 2012 НАУЧНЫЙ СОВЕТ ПО АСТРОНОМИИ РАН - Секция 9: Астрометрия и прикладная астрономия. ...
[ Сохраненная копия ]  Ссылки http://www.ipa.nw.ru/sect9/ -- 5.7 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>87) - www.ipa.nw.ru/ )

17. Some Useful Routines for On-Line Data Analysis
Up: DATA ANALYSIS Previous: More Analyz Stuff . In this section we describe some useful routines for quick-look on-line analysis of your data. For a complete description of the routines, and for a description of analyzing HI spectra, look at the Spectral Line Appendices. ... cd a9999 [or whatever your project number is . ... corinfo = List the current set-up parameters. ... That is, if you want to look at the second data dump of scan number 57401, you `just' type ``corget 57401.00002". ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~astro/spectral_line/handbook_old/node25.html -- 10.7 Кб -- 16.08.2001
Похожие документы

18. SCL Sfit SLV Commands
... solve : find optimum fit in a grid of model spectra . ... It initiates an optimisation by starting with a grid of theoretical spectra, defined by model or read_grid , a set of starting parameters and an observed spectrum. ... The parameters to be optimised include: T eff , log g , n A , v sin i , v rad being effective temperature, surface gravity, an abundance variable, rotation velocity and radial velocity for one or two stars, and R 2 / R 1 being the relative radius of the second star, if present....
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/~csj/software_store/guide/scl_slv.html -- 13.7 Кб -- 18.08.2010
Похожие документы

19. Software Maintenance Manual
... Created: 23 February 2001 . ... SOFTWARE MAINTENANCE MANUAL . ... 9 January 2001 . ... Note: in the final document, the table of contents will be to third level] . The Software Maintenance Manual describes the procedures for installation and maintenance of the software for the Gemini Near-infrared Integral Field Spectrograph (NIFS). ... Section 19.4.3 of the document “Programmatic Requirements for Gemini Instrumentation Development” states the requirements for the Software Maintenance Manual . ...
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/nifs/manuals/man0003.htm -- 139.3 Кб -- 06.09.2001
Похожие документы

20. The simulative geophysical regions cross-sections coordinates
The following parameters as a function of the Moscow time (MT=UT+1h) are enclosed in this file. 1. no . ... Simulative geophysical region name . ... Simulative geophysicl region in/out . ... coordinate - . ... Corrected geomagnetic latitude (deg) . ... Geomagnetic local time (h) in the magnetic footprint . ... Geomagnetic local time (h) in the sdatellite position . ... Solar-ecliptic local time (h) in the sdatellite position . ... Geografical longitude (deg) of the magnetic footprint . ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/vprokhor/descr/bgrfile.htm -- 3.5 Кб -- 08.12.1999
[ Сохраненная копия ]  Ссылки http://www.cosmos.ru/vprokhor/descr/bgrfile.htm -- 3.5 Кб -- 08.12.1999
Похожие документы

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


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

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

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