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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.sao.ru/precise/Midas_doc/doc/94NOV/vol1/node33.html.

1. Command Line Editing
Next: Command Line Suspension Up: Command Syntax Previous: Command Recalling . The commands in the internal command buffer may also be edited. ... To edit a MIDAS command, type the command number preceded by a dot (period) or followed by a dot. ... Also the commands recalled via the arrow keys can be edited. ... So if you repeat or edit a certain command via its MIDAS command--number at least once in 15 command inputs, this command will always be kept in the buffer. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/95NOV/vol1/node35.html -- 5.8 Кб -- 23.02.1996
Похожие документы
Еще в разделе: (Показать все результаты (>3555) - www.sao.ru/ )

2. Python: module cmd
cmd . ... A generic class to build line-oriented command interpreters. ... End of file on input is processed as the command 'EOF'. ... A command `foo' is dispatched to a method 'do_foo()'; the do_ method . ... Cmd . ... Method called to complete an input line when no command-specific . ... Called on an input line when the command prefix is not recognized. ... Returns a tuple containing (command, args, line). 'command' and 'args' may be None if the line couldn't be parsed. postcmd (self, stop, line) . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/spst/UnixTransition/doc/cmd.html -- 16.5 Кб -- 05.11.2015
Похожие документы

3. Editing Text
Next: Listing and Printing Files, Up: Using IRAF Previous: Parameters . Editing text on the screen . The history of recent commands can be edited using the command ehist. ... The editor is set in the login.cl file or in the loginuser.cl file. cl > ehist # Calls the last command # and leaves you in the editor # <cr> executes the command once you have edited it. cl > ehist imcnts # calls for editing (as above) the most recent # command beginning with ``imcnts''. ... Moving text on the screen . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/PROS/PUG/node9.html -- 5.5 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>2651) - hea-www.harvard.edu/ )

4. Problem creating a new system call
... Just to learn how to generate a system call, I created a simple system call that basically sets and resets the value of a global parameter "PREFETCH". SYSTEM CALL code ********************************** int PREFETCH = 0; /* this is a global variable */ . ... To execute the sys_prefetch system call, I wrote a prefetch.c file with the following code. ************************code to call sys_prefetch***************** #include <linux/unistd.h> _syscall2 (int, prefetch, int, mode, int, nr_hints) . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/khg/135.html -- 4.2 Кб -- 23.03.2000
Похожие документы

5. VLBI Wiki | PmWiki / Internationalizations
... PmWiki . ... PmWiki FAQ . ... pmwiki.org . ... Go to new wiki . ... PmWiki supports internationalization (internationalisation) of web pages, allowing accented characters to appear in page names and almost complete customization of PmWiki 's prompts. ... Pages for many languages such as French, German, Dutch, and Spanish have already been created and maintained at the pmichaud.com site. ... php if (!defined('PmWiki')) exit(); ##change to French language XLPage('fr','PmWikiFr.XLPage'); . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/vlbi/wiki/index.php?n=PmWiki.Internationalizations -- 14.3 Кб -- 12.04.2016
Похожие документы

6. byu phased array feed.
... This was prior to the byu computer installation so an emulator program was run to respond to the commands to the byu computer. ... The sign of the offset specifies witch edge of the grid you start on. zaOffAmin < 0 starts at the za lower than the source, zaOffAmin > 0 starts at a strip with za greater than the source. stepAmin: The step size in za and cross el in great circle arc minutes. secsPnt : the time to sit on each point after the byu computer has acknowledged that it has started to take data...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/byuPhasedAr/testingThePattern.html -- 11.5 Кб -- 13.05.2010
Похожие документы

7. Generic routines
... We now also have the possibility to write our own generic functions or subroutines. ... PROGRAM SWAP _MAIN IMPLICIT NONE INTEGER :: I, J, K, L REAL :: A, B, X, Y CHARACTER :: C, D, E, F INTERFACE SWAP SUBROUTINE SWAP _R(A, B) REAL, INTENT ( INOUT ) :: A, B END SUBROUTINE SWAP _R SUBROUTINE SWAP _I(A, B) INTEGER, INTENT ( INOUT ) :: A, B END SUBROUTINE SWAP _I SUBROUTINE SWAP _C(A, B) CHARACTER, INTENT ( INOUT ) :: A, B END SUBROUTINE SWAP _C ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c10.html -- 6.2 Кб -- 11.02.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/c10.html -- 6.2 Кб -- 11.02.1996
Похожие документы

8. NPOI Lab
For this example of NPOI data reduction and analysis we use observations of Mizar from 1997. ... They include reading the raw data and computing visibilities (done by a standalone C program called CONSTRICTOR), editing the 1s incoherent averages and averaging these data for every scan. The latter steps are done with OYSTER, but for this lab it is not useful to have these steps performed by the participants. ... Background data loaded. ... Finished reading catalogs. ... Data loaded. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~chummel/oyster/lab/reduction.html -- 5.1 Кб -- 26.11.2007
Похожие документы

9. C, UNIX and Standard Libraries
... Using UNIX System Calls and Library Functions . ... To use system calls and library functions in a C program we simply call the appropriate C function. Examples of standard library functions we have met include the higher level I/O functions -- fprintf() , malloc() .. ... For most system calls and library functions we have to include an appropriate header file. e.g. stdio.h, math.h . ... Information on nearly all system calls and library functions is available in manual pages. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node15.html -- 6.1 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node15.html -- 6.1 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node15.html -- 6.1 Кб -- 02.10.2012
Похожие документы

10. Report on Cosmic Call 1999
... Report on Cosmic Call 1999 . ... Cosmic Call Sessions . ... This Report outlines methodology, hard- and software, which were developed to transmit first public Interstellar messages from Evpatoria Deep Space Center (EDSC), and describes four Cosmic Call Sessions, which were fulfilled in EDSC on May 24 and June 30 - July 1, 1999. ... Each Cosmic Call consists of two parts. ... Dutil Message, . ... The software for gathering all messages and creating the Cosmic Call stream, was written on C language. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/html/ra&sr/irm/report-1999.html -- 56.9 Кб -- 30.11.2002
Похожие документы

11. OptInt PmWiki : Trolley Software | History
OptInt PmWiki . ... Trolley Software . Edit Page | Page History | ... Software Design Documentation . ... PmWiki . ... PmWiki FAQ . ... Return to Trolley Software ( Edit ) . ... July 22, 2011, at 05:20 PM by EBS - . ... For Debian etch using a network install: . ... July 22, 2011, at 05:08 PM by EBS - First edit - trolley software compilation instructions . ... The essence of the solution is to generate a virtual PC on your desktop PC and install an old Linux distribution, circa 2006, in that. ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/MROIDelayLine/TrolleySoftware?action=diff -- 29.4 Кб -- 01.03.2014
Похожие документы

12. http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/scripts/README
This directory contains prototypes for scripts that may be called by the camera driver. ... The ccd driver executes transfer_image to send a fits image to a remote observer. ... The script set_camera_filter should take a filter number as an argument and send a command to a filter wheel. The SBIG filter wheel is supported internally and does not use this script. If you have another filter wheel, then a script such as this would allow you to use XmCCD to control the filter wheel. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/scripts/README -- 2.1 Кб -- 29.11.2012
Похожие документы

13. Armagh Planetarium: Discover Primary Science | Astronotes
Astronotes Armagh Planetarium's Stellar Blog! ... 2011 saw 472 Irish primary schools showcase excellence in science and maths. ... The Discover Primary Science and Maths programme recognises the achievements of primary school children and teachers in the application of science and maths.€а Schools registered on the Discover Primary Science and Maths programme can apply for an Award of Science and Maths Excellence after they have met certain criteria for science and maths related activities. ...
[ Сохраненная копия ]  Ссылки http://www.armaghplanet.com/blog/irish-primary-schools-science-and-maths.html -- 44.3 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>2376) - www.armaghplanet.com/ )

14. MAO NASU :: Topic: ISSI Call for Proposals 2015 for Johannes Geiss Fellowship
... Recent Topics . ... MAO main . ... ISSI Call for Proposals 2015 for Johannes Geiss Fellowship . ... От: "ISSI Secretary" . ... Тема: ISSI Call for Proposals 2015 for Johannes Geiss Fellowship . ... ISSI has approved the introduction of the Johannes Geiss Fellowships (JGF). ... Please find the complete Call for Proposals 2015 for Johannes Geiss Fellowship in the attachment. ... www.mao.kiev.ua/images/postbyemail/Call_...ls_JG_Fellowship.pdf . ... MAO NASU . ...
[ Сохраненная копия ]  Ссылки http://www.mao.kiev.ua/index.php/en/forum/info/286-issi-call-for-proposals-2015-for-johannes-geiss-fellowship -- 17.4 Кб -- 11.04.2016
Похожие документы

15. ASP: Mercury Magazine
This page contains the table of contents and select excerpts only and is not a complete reproduction of this issue. Complete content for online Mercury is available to ASP members and institutional subscribers . ... Reflections: Science Fare , Phil Plait . The Bad Astronomer (a.k.a. Phil Plait) gives a short speech to students who participated in a science fair. ... Astronomy in the News . ... Editorial, Paul Deans . ... Education Matters, David Bruning . ... Reflections, Phil Plait . ...
[ Сохраненная копия ]  Ссылки http://www.astrosociety.org/pubs/mercury/41_03/contents.html -- 11.3 Кб -- 02.10.2012
Похожие документы

16. Index: C
... UNIX commands . C shell (csh) . ... with special meaning for shell . changing . directories . ... command line . ... command alias . command history . command interpreter . command path . command substitution . command syntax . commands . ... arguments to . ... creating . ... executing in shell scripts . ... read arguments as input to shell scripts . ... use in shell scripts . ... files . ... conditional statements See shell script . ... programs See shell scripts . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/index/ic.html -- 5.6 Кб -- 17.01.1997
Похожие документы

17. Полусапоги Call It Spring - Call It Spring - Call It Spring Погремушка Canpol
... Полусапоги Call It Spring. ... title=' Погремушка Canpol Змейка 2/455 - CanpolЗмейка 2/455' border='0' align='left' width='120' style='margin-right: 20px;' hspace='7' vspace='5'/> Змейка приобретает любую форму в руках у малыша. ... Цвет керамической плитки: бежевый . Коллекция керамической плитки: Agat . Размеры керамической плитки (мм): 505*201 . Назначение керамической плитки: плитка для ванной . Тип керамической плитки: панно . Керамическая плитка AZORI коллекция Agat . ...
[ Сохраненная копия ]  Ссылки http://astrokuban.info/astroku8591.html -- 22.4 Кб -- 14.02.2016
Похожие документы

18. Algorithm
... subroutine atthkgen * get ODF * get start and end times of complete observation * open output fits file * loop through time (timestep) set attitudeFromAhf to true + call OAL_getAttitude ( get AHF attitude ) set AHF info to OAL_getAttitude info (or to NULL if bad) calculate summed attitude information for AHF set attitudeFromAhf to false + call OAL_getAttitude ( get OM ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/7.1.0/doc/atthkgen/node8.html -- 4.2 Кб -- 08.07.2007
Похожие документы
Еще в разделе: (Показать все результаты (>9263) - xmm.vilspa.esa.es/ )

19. Journal "Peremennye Zvezdy"
NGC 3242: The Ghost of Jupiter . ... HST , NASA Explanation: After a star like the Sun completes fusion in its core, it throws off its outer layers in a brief, beautiful cosmic display called a planetary nebula . ... NGC 3242 is light-years across however, and much farther away than the measly 40 light-minutes distance to Jupiter . In fact, while watching this ghostly nebula expand over time, astronomers have estimated the distance to NGC 3242 to be about 1,400 light-years. ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/varstars/msg/1209092 -- 7.7 Кб -- 31.10.2005
Похожие документы

20. NIST Modem Time Service
... Reference ID: ACTS . Driver ID: NIST_ACTS . ... This driver supports the NIST Automated Computer Time Service (ACTS). It periodically dials a prespecified telephone number, receives the NIST timecode data and calculates the local clock correction. ... In mode 0 the driver operates continuously at intervals determined by the fudge time1 parameter, as described above. ... Unlike other drivers, each ACTS call generates one clock correction and that correction is processed immediately. ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~er/xntp/driver18.html -- 10.3 Кб -- 21.12.2007
Похожие документы

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


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

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

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