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

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

Показаны документы, содержащие фрагменты текста из документа
http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.6.4.html.

1. Statements
... Loop Statements : for , while , do while , label , break , and continue ( label is not itself a looping statement, but is frequently used with these statements) . ... statement ; . ... If the condition becomes false, the statements within the loop stop executing and control passes to the statement following the loop. ... For example, you can use a label to identify a loop, and then use the break or continue statements to indicate whether a program should interrupt the loop or continue its execution....
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/javascript/clientguide/stmtsov.htm -- 25.0 Кб -- 07.10.1999
Похожие документы

2. Example of using the break and continue statements
. To prompt for commands to run: #!/bin/sh while echo "Please enter command" read response do case "$response" in 'done') break # no more commands ;; "") continue # null command ;; *) eval $response # do the command ;; esac done . This prompts the user to enter a command. While they enter a command or null string the script continues to run. To stop the command the user enters done at the prompt.
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.6.4.1.html -- 2.2 Кб -- 17.01.1997
Похожие документы

3. SM - DO and FOREACH loops, and IF statements
... Related to the macro facility are the DO and FOREACH commands. ... The syntax for a DO loop is DO variable = expr1 , expr2 [ , expr3 ] { command_list 2 where the third expression is optional, defaulting to 1. The value of variable ( $variable ) is in turn set to expr1 , expr1+exp3 , ..., expr2 , and the commands in command_list executed. ... A more interesting example is the macro repeat which repeats a given macro while the given condition is true. ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/smongo/sm_10.html -- 6.1 Кб -- 02.10.2012
Похожие документы

4. Overview of JavaScript Statements
... JavaScript supports a compact set of statements that you can use to incorporate a great deal of interactivity in Web pages. ... Loop Statements: for , while , do while , labeled , break , and continue ( labeled is not itself a looping statement, but is frequently used with these statements) . ... The optional break statement associated with each case label ensures that the program breaks out of switch once the matched statement is executed and continues execution at the statement following switch. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/Guide/stmtsov.htm -- 30.2 Кб -- 12.12.1997
Похожие документы

5. Python: module timeit
... Tool for measuring execution time of small code snippets. ... python timeit.py [-n N] [-r N] [-s S] [-t] [-c] [-h] [statement] . ... n/--number N: how many times to execute 'statement' (default: see below) . r/--repeat N: how many times to repeat the timer (default 3) . ... t/--time: use time.time() (default on Unix) . ... statement: statement to be timed (default 'pass') . ... Time 'number' executions of the main statement. ... argument is the number of times through the loop, defaulting . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/spst/UnixTransition/doc/timeit.html -- 14.1 Кб -- 05.11.2015
Похожие документы

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

7. Example 2: Correcting for bad pixels
... Meta Index / Home Page / Usage and Examples To correct for bad pixels and bad columns (section 7.10 ) a file containing the bad pixel extensions must be specified on the command line by: . ... By default the code looks for pixels which fall outside the CCD collecting area and outside the field-of-view with a resolution of 2 arcseconds. ... arfgen spectrumset=spectrum.ds badpixlocation=myevents.ds badpixelresolution=1.0 which improves the accuracy of the bad pixel calculation. ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/8.0.0/doc/arfgen/node8.html -- 4.0 Кб -- 22.10.2008
Похожие документы
Еще в разделе: (Показать все результаты (>12822) - xmm.vilspa.esa.es/ )

8. Examples of data contained in the JPDOC
Next: Silicate minerals Up: A Database of Optical Previous: Database of Optical Properties . ... If necessary, data have been determined for the different crystallographic axes. ... In the following we give some examples of the data and their possible applications. Table: Summary of data measured in the Jena laboratory, which are currently available from the JPDOC. compound . ... amorph. ... Next: Silicate minerals Up: A Database of Optical Previous: Database of Optical Properties root 2003-03-06 ...
[ Сохраненная копия ]  Ссылки http://www.astro.spbu.ru/DOP/5-OPTC/JPDOC2/node6.html -- 10.1 Кб -- 19.11.2010
Похожие документы

9. Where to Find Example/Test Code
The XPA source code directory contains two test programs, stest.c , and ctest.c that can serve as examples for writing XPA servers and clients, respectively. ... The stest program can be executed with no arguments to start an XPA server that contains the access points: xpa, xpa1, c_xpa (containing sub-commands cmd1 and cmd2), and i_xpa. ... xpaset xpa # send to xpa cat xpa.c | xpaset "xpa*" # send to xpa and xpa1 xpaget xpa # receive from xpa xpaget xpa* # receive from xpa and xpa1 etc. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/sbig/archive/xmccd-4.1/xmccd-4.1e/xpa-2.1.14/doc/examples.html -- 3.1 Кб -- 25.12.2003
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/RD/xpa/examples.html -- 3.1 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>2991) - hea-www.harvard.edu/ )

10. http://zebu.uoregon.edu/~uochep/talks/talks02/G020237.pdf
... Plot histogram and time series. Flow Chart GUILD & LIGO Tools Local File (XML) Restore Events Import XML event data into an event container LDAS Meta Database Save Events Process events (Sort, Coincidence, Cluster) Create Histogram and/or Time Series Plot Histogram/ Time Series Event Containers Hierarchy "Chain" container - A set of List containers. ... Holds one event. ... Time Series - Make a Time Series (DMT TSeries container) of the event rate, values of specified column or event function. ...
[ Текст ]  Ссылки http://zebu.uoregon.edu/~uochep/talks/talks02/G020237.pdf -- 217.5 Кб -- 25.09.2002
Похожие документы
Еще в разделе: (Показать все результаты (>336) - zebu.uoregon.edu/ )

11. Control statements
As conditional or control statements you have IF in many variants (but essentially not changed from Fortran 77), DO (with some new variants) and the completely new statement CASE . The DO- loop should now be ended with the statement END DO and we no longer need any statement number. In addition, we can use the statement EXIT to jump out of the DO -loop and CYCLE in order to go to the next iteration of the present DO -loop. ... all negative numbers WRITE (*,*) 'Negative number' CASE (0) ! ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c6.html -- 5.4 Кб -- 17.02.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/c6.html -- 5.4 Кб -- 17.02.1996
Похожие документы

12. Getting Started in Actor Prolog. Underdetermined Sets.
Underdetermined sets is a new type of data structures (terms) developed in Actor Prolog . ... The point is that an underdetermined set can include some indefinite rest (a tail) like a list in usual Prolog . At the same time, the order of elements of an underdetermined set can be arbitrary one and it does not affect results of unification of underdetermined sets. Moreover, Actor Prolog guarantees that a rest of an underdetermined set never contains elements that are explicitly given in the set. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/Lab144/start/e_sets.html -- 12.6 Кб -- 24.09.2007
Похожие документы

13. Apache module mod_include
This module provides for documents with Server Side Includes (SSI). ... Any document with handler of "server-parsed" will be parsed by this module, if the Includes option is set. If documents containing server-side include directives are given the extension .shtml, the following directives will make Apache parse them and assign the resulting document the mime type of text/html : AddType text/html .shtml AddHandler server-parsed .shtml The following directive must be given for ... cgi . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_include.html -- 22.9 Кб -- 20.05.2004
Похожие документы

14. http://xray.sai.msu.ru/~ivan/gmt/man/grdedit.html
grdedit - Modifying the header in a 2-D grdfile grdedit grdfile [ -A ] [ -D xunit / yunit / zunit / scale / offset / title / remark ] [ -R west / east / south / north [ r ] ] [ -S ] grdedit reads the header information in a binary 2-D grdfile and replaces the information with values provided on the command line [if any]. ... Older gridfiles (i.e., created prior to GMT 3.1) often had excessive slop in x _ inc , y _ inc and an adjustment is necessary. Newer files are created correctly. ...
[ Сохраненная копия ]  Ссылки http://xray.sai.msu.ru/~ivan/gmt/man/grdedit.html -- 4.2 Кб -- 19.03.1999
Похожие документы

15. http://www.eso.org/~qc/dfos/ABbuilder.txt
NAME ABbuilder - DFO data organization tool SYNOPSIS ABbuilder <options> where <options> are: --raw-dir directory containing raw data --cal-dir directory containing calib data --cal-ldir directory containing symbolic links to calib files --cal-list mcalib list --vcal-dir directory containing virtual products --pro-dir where pipeline products are created --ab-dir where association blocks are created --oca-rul file containing OCA rules --instrume instrument --date YYYY-MM-DD --mode { CALIB | ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~qc/dfos/ABbuilder.txt -- 8.0 Кб -- 17.02.2006
Похожие документы

16. Writing an Actor Using twistedActor
This manual describes the details of writing an actor based on twistedActor. ... Thus, to the extent that the underlying hardware controllers support it, an actor based on twistedActor can execute multiple commands at the same time. ... One thing to keep in mind while writing your device code is: which actor commands can the device handle directly? ... Actor contains the list of devices your actor controls and code to execute certain commands called "local commands". ... Execute the command . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/twistedActor/writingAnActor.html -- 11.3 Кб -- 29.08.2014
Похожие документы

17. Periodic command execution: cron and at
... Both users and system administrators often need to run commands periodically. For example, the system administrator might want to run a command to clean the directories with temporary files ( /tmp љ and /var/tmp љ ) from old files, to keep the disks from filling up, since not all programs clean up after themselves correctly. The cron љ service is set up to do this. Each user has a crontab љ , where he lists the commands he wants to execute and the times they should be executed. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/sag-0.4/node12.html -- 3.6 Кб -- 04.05.1997
Похожие документы
Еще в разделе: (Показать все результаты (>2246) - star.arm.ac.uk/ )

18. WIP -- An Interactive Graphics Software Package
... WIP is an interactive package with a simple to use interface designed to produce high quality graphical output. WIP was developed as part of the Berkeley-Illinois-Maryland Association (BIMA) project and is available via anonymous ftp. ... Included in the WIP distribution is a complete manual which contains several sample figures with associated commands, a frequently asked questions section, and a descriptive listing of all available commands. ... Figure illustrates WIP's ability to handle images. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass94/morganj.html -- 11.8 Кб -- 03.11.2000
Похожие документы

19. Accessing measurement set data Bojan Nikolic web pages (r. 329)
... Bojan Nikolic web pages (r. 329) . ... The CASA table tool allows access to all data contained in measurement set format. ... For this reason I have sketched out a simple, python-orientated, wrapper for data access in casata. ... cols = [ "TIME" , "DATA" ] . one gets (unsurprisingly) both the time and the data.. ... msin = "/home/bnikolic/data/almagen/uid___A002_Xa048f_X1.ms" >>> time , visdata = data . ... time , point1 , point2 = data . ... data . ... Accessing measurement set data . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/~bn204/alma/casata/flex-data-access.html -- 21.1 Кб -- 04.04.2016
Похожие документы

20. GIMP animations: merge-anim examples
The following pages contain some examples of what you can do with my merge-anim script.. I tried to minimize the size of the images on these pages (all animations are smaller than 50 Kb), but you will probably have to be patient anyway. ... Adding a background to an animation . ... It merges a background (or top) layer with all other layers in an animation. ... I will probably add some options for applying a layer mask to an animation or applying an animated mask to a static layer. ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/gimp/merge-anim/ -- 3.4 Кб -- 22.12.2007
Похожие документы

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


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

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

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