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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.stsci.edu/~sontag/spicedocs/cspice/errdp_c.html.

1. CSPICE Routines: REPMF_C
... Abstract Replace a marker in a string with a formatted double precision value. ... Brief_I/O VARIABLE I/O DESCRIPTION -------- --- -------------------------------------------------- in I Input string. marker I Marker to be replaced. value I Replacement value. sigdig I Significant digits in replacement text. format I Format: 'E' or 'F'. lenout I Available space in output string. out O Output string. ... The first occurrence of marker in the input string is to be replaced by value. ... The value was #...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/repmf_c.html -- 12.4 Кб -- 17.12.2005
Похожие документы

2. Zen: tp search en
... country name . ... Query " Moscow's celebrations hotel Moscow, Russia" would failed if search attributes separately, but could be succeeded if search their concatenation. ... hotel". ... Simple search for "Moscow": # select name, country, place, rank( idx, ftsquery ) as r from hotels, to_tsquery('Moscow') as ftsquery where idx @@ ftsquery order by r desc; name | ... Query "Moscow hotel" (rewritten by hand): # select name, country, place, rank( idx, ftsquery ) as r from hotels, to_tsquery('Moscow | ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/wiki/tp_search_en -- 12.6 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>2704) - www.sai.msu.su/ )

3. Examples of replacing text
To replace one word in the current line with another: :s/that/which . This replaces the first instance of the word "that" in the current line with the word "which". To replace every instance of one word in the current line with another: :s/destroy/delete/g . ... To interactively replace every occurence of a word throughout the file, with another: :g/in conjunction with/s//with/gc option used in conjunction with the ls command ^^^^^^^^^^^^^^^^^^ . ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/examples/vi2.html -- 2.9 Кб -- 17.01.1997
Похожие документы

4. Why Break Up Microsoft?
March 1999 Or "What is an Operating System?" ... Now we can see what an OS really is: a set of standards, used by application developers, to access common software. ... There are countless examples of Microsoft altering the standards of their operating system in ways which don't make it better, but do cause competing applications to break. This is the fundamental reason why Microsoft should not be allowed to compete in the applications market while it controls the operating system market. ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~fine/opinions/whatisOS.html -- 4.9 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>2608) - hea-www.harvard.edu/ )

5. Low Level Operators and Bit Fields
... Bit Fields . Bit Fields: Practical Example . ... NOTE: The combination of pointers and bit-level operators makes C useful for many low level applications and can almost replace assembly code. ... To illustrate many points of bitwise operators let us write a function, Bitcount , that counts bits set to 1 in an 8 bit number ( unsigned char ) passed as an argument to the function. int bitcount(unsigned char x) { int count; for (count=0; x != 0; x>>=1); if ( x & 01) count++; return count; } . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node13.html -- 13.3 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node13.html -- 13.3 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node13.html -- 13.3 Кб -- 02.10.2012
Похожие документы

6. Image: Place to drink and wash hands. Similar ones are present at every shrine.
. Album : Фотоальбом Сергея Аюкова :: Travels to distant places and countries :: 1997/08 Japan (Kyoto, Nara) :: 17/08 Kyoto streets. Maruyama park . Up . << Prev . Place to drink and wash hands. Similar ones are present at every shrine. Next >> . Created with the tool album generator a Marginal Hack by Dave on Wed Jun 5 20:38:34 2013 .
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/album/trips/1997.08.Japan/17.Maruyama/tn/a17l.jpg.index.html -- 5.3 Кб -- 05.06.2013
Похожие документы

7. Replacing bad pixels instead of adding new ones
... In the calibrated events lists generated by the pipeline, the events found to be on a bad pixel have already been removed. ... But epchain and emchain allow to generate events lists in which all events flagged for rejection (including those on a bad pixel) are still present. In that case the bad pixel flagging is reversible. ... The overwrite =Y option may be used to replace the existing bad pixels with the new ones instead of adding the new bad pixels to the old ones. ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/8.0.0/doc/ebadpixupdate/node8.html -- 5.8 Кб -- 02.07.2008
Похожие документы
Еще в разделе: (Показать все результаты (>8440) - xmm.vilspa.esa.es/ )

8. mod_remoteip - Apache HTTP Server
... Apache HTTP Server Version 2.4 . ... Replaces the original client IP address for the connection with the useragent IP address list presented by a proxies or a load balancer via the request headers. ... The module overrides the client IP address for the connection with the useragent IP address reported in the request header configured with the RemoteIPHeader directive. ... When multiple, comma delimited useragent IP addresses are listed in the header value, they are processed in Right-to-Left order. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/manual/fr/mod/mod_remoteip.html -- 21.2 Кб -- 19.11.2015
Похожие документы

9. Table Packing Example
... Packing Widgets . ... The data passed to this function is printed to stdout */ void callback ( GtkWidget *widget, gpointer data ) { g_print ( Hello again - %s was pressed\n , (char *) data); } /* This callback quits the program */ gint delete_event ( GtkWidget *widget, GdkEvent *event, gpointer data ) { gtk_main_quit (); return FALSE; } int main( int argc, char *argv[] ) { GtkWidget * window ; GtkWidget * button ; GtkWidget * table ; gtk_init ( argc, argv); /* ... Packing Using Tables . ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/GTK2/sec-tablepackingexamples.html -- 6.1 Кб -- 19.07.2002
Похожие документы

10. JSC Celebrates 40 Years
JSC Celebrates 40 Years of Human Space Flight . America's Nerve Center for Mission Operations . ... An overall view from the rear shows activity in the new Mission Control Center, opened for operation and dedicated during the STS-70 space shuttle mission. ... Shuttle design and construction involved close support from the mission operations team. ... The Spaceflight Control Center in Korolev is where the Russian flight controllers support operations of the Russian elements of the space station. ...
[ Сохраненная копия ]  Ссылки http://www.jsc.nasa.gov/history/jsc40/jsc40_pg9.htm -- 17.7 Кб -- 08.07.2015
Похожие документы
Еще в разделе: (Показать все результаты (>3290) - www.jsc.nasa.gov/ )

12. The first Russian symposium on nanosatellites will take place in SSAU
... SSAU History . ... The first Russian symposium on nanosatellites RusNanoSat-2015 will take place in Samara State Aerospace University from June 2 to June 4. ... The first SSAU nanosatellite SamSat-218 (the first Russian students nanosatellite) will be sent into orbit in the first launch campaign from the space-launch complex Vostochniy, together with a small spacecraft Aist-2 . ... The first Russian symposium on nanosatellite RusNanoSat-2015 will be attended by the leading Russian and foreign . ...
[ Сохраненная копия ]  Ссылки http://www.ssau.ru/engnews/11526/ -- 30.1 Кб -- 20.05.2015
Похожие документы

13. What would cause Earthт??s orbit to become more circular instead of its present
... Globular cluster NGC 2808, elliptical galaxy NGC 2986, and the Sextans Dwarf . ... What would cause Earthт??s orbit to become more circular instead of its present elliptical orbit, and has this ever happened before? ... Gravitational interactions among the planets cause the ellipticities of the orbits to oscillate periodically by a few percent over millions of years. Get instant access to subscriber content on Astronomy.com! ... If you are already registered on Astronomy.com, please log in below. ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.com/magazine/ask-astro/2012/04/orbital-shapes -- 63.1 Кб -- 10.04.2016
Похожие документы

14. Containers and Pop-up Shells
... Any elements created after this call will be placed in the container. ... After such a shell container has been created, it is not visible yet. ... Main program: /* example9.c -XT */ # include stddef.h # include gipsyc.h # include cmain.h # include init.h # include finis.h # include userfio.h # include ggi.h /* * Button keyword handler for quitting. */ static void quit(ident id, char * key , int code, void *arg) { bool button =toflog(FALSE); ( void )userflog( , 1, 2, ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/pguide/gui-example9.html -- 7.3 Кб -- 17.01.2009
Похожие документы

15. Astronomy: what is our place in the Universe? Wed 14 October | International
... Star Gazing: Saturday 17 October, Castle Espie . ... Astronomy Ireland's Evening Classes to begin on 8 October . 14 October: Science NI presents Prof Alan Fitzsimmons @ the Science Cafц©, 7.30 p.m. (doors open at 7 pm) . ... Topic "Astromomy: What is our place in the Universe?" The Science Cafe is a monthly event where different topics of science are being discussed. ... Monday, 12 October 2009 15:54 . International Year of Astronomy, Ireland National Node . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/scholars/iya/local/astronomy_what_is_our_place.html -- 8.1 Кб -- 31.12.2009
Похожие документы

16. Steel supports being placed under the main beams of the library floor.
... Steel supports being placed under the main beтАж . Sidebar Left . Sidebar Top . No Sidebar . Sidebar Bottom . Sidebar Right . ... Title: Steel supports being placed under the main beams of the library floor. ... Steel supports being placed under the main beams of the library floor. ...
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/gallery3/index.php/reconstruction/album36/DSCN1061 -- 31.4 Кб -- 10.04.2016
Похожие документы

17. Mean places of star explanation page of Computer Ephemeris (DE200/LE200).
. Computer Ephemeris. Mean places of fundamental stars. Explanations. Table presented contains mean places at the middle of the year of all FK5 stars with -80
[ Сохраненная копия ]  Ссылки http://space.univ.kiev.ua/ephem/exp/St1.html -- 2.1 Кб -- 16.10.2004
Похожие документы

18. The national Earth remote sensing spacecraft of Ukraine will be placed into
... Comments, Opinions Publications Dnepr Program . Dnepr launch record 17 August 2011. Cluster Launch of Dnepr LV 22 August 2013 KOMPSAT-5 Launch 21 November 2013. ... The Sych-2 satellite is being developed as a part of the space optical-range Earth observation system by the State Design Office of Yuzhnoye and built by the Industrial Association Yuzhny Machine Building Plant in cooperation w ith other space industry entities upon the state order of the National Space Agency of Ukraine . ...
[ Сохраненная копия ]  Ссылки http://www.kosmotras.ru/en/news/79/ -- 14.8 Кб -- 09.04.2016
Похожие документы

19. The IV Asian-Pacific Astronomy Olympiad
... Place of birth: Province (city/town), state, country . ... Passport data: 8.1.( ... 10.6. (for students) In what previous IAOs or APAOs participated (write years and Diploma, like: IAO-2003, 2nd Diploma) 11. ... What official language (Russian or English) he/she will use while translate text at the olympiad and during the cultural programme . ... GUVD 611, city Alma-Ata, Kazakhstan . ... Dr. Michael G. Gavrilov, Founding Chairman and Coordinator of the Asian-Pacific Astronomy Olympiad (APAO) . ...
[ Сохраненная копия ]  Ссылки http://www.issp.ac.ru/iao/apao/2008/qi08_e.html -- 12.6 Кб -- 08.11.2008
Похожие документы

20. Information for Authors of Articles
... Article text . ... Article should be formatted according to the present rules, using the styles containing in the attached file example.doc . ... For example, article name should be typed in string Here Is the Paper Title , using style "title paper", etc. ... Title part of article Paper Title (style Title Paper . ... It is necessary to use style text paper for the body of article. ... In the text of article there should be links to every Figure and Table: Fig. 1 and Tab. 1 accordingly. ...
[ Сохраненная копия ]  Ссылки http://www.ipa.nw.ru/conference/SETI-2011/ruletz.htm -- 12.4 Кб -- 09.04.2016
Похожие документы

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


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

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

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