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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.stsci.edu/~sontag/spicedocs/cspice/repmd_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. Stellarium: StelScriptMgr Class Reference
... StelScriptMgr Class Reference . ... const QStringљ . ... Stops any running script. ... If the file is not found or cannot be opened for some reason, an Empty string will be returned. const QString StelScriptMgr::getDescription . ... If the file is not found or cannot be opened for some reason, an Empty string will be returned. const QString StelScriptMgr::getLicense . ... Get the rate at which the script is running as a multiple of the normal execution rate. void StelScriptMgr::pauseScript . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classStelScriptMgr.html -- 32.4 Кб -- 28.02.2014
Похожие документы

3. WCSLIB: fitskey Struct Reference
WCSLIB љ 5.15 . ... DataљStructures . ... fitskey Struct Reference . ... fitshdr() returns an array of fitskey structs, each of which contains the result of parsing one FITS header keyrecord. ... Returned ) Keyvalue data type: . ... Returned ) Logical ( fitskey::type == 1) and 32-bit signed integer ( fitskey::type == 2) data types in the fitskey::keyvalue union. int64 fitskey::k . Returned ) 64-bit signed integer ( fitskey::type == 3) data type in the fitskey::keyvalue union. int fitskey::l . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/people/mcalabre/WCS/wcslib/structfitskey.html -- 23.4 Кб -- 10.04.2016
Похожие документы

4. http://www.arcetri.astro.it/irlab/doc/library/javascript/clientreference/boolean.htm
... The Boolean object is an object wrapper for a boolean value. ... JavaScript 1.3: added toSource method . ... If value is omitted or is 0, -0, null, false, NaN , undefined, or the empty string ( "" ), the object has an initial value of false. All other values, including any object or the string "false" , create an object with an initial value of true. ... For Boolean objects and values, the built-in toString method returns the string "true" or "false" depending on the value of the boolean object. ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/javascript/clientreference/boolean.htm -- 16.3 Кб -- 07.10.1999
Похожие документы

5. Time Functions
... Basic time functions . ... Example 2: Set a random number seed . ... Uses of time functions include: . ... time_t time(time_t *tloc) -- returns the time since 00:00:00 GMT, Jan. 1, 1970 , measured in seconds. ... timer.c */ #include <stdio.h> #include <sys/types.h> #include <time.h> main() { int i; time_t t1,t2; (void) time(&t1); for (i=1;i<=300;++i) printf(``%d %d %d n'',i, i*i, i*i*i); (void) time(&t2); printf(`` n Time to do 300 squares and cubes= %d seconds n'', (int) t2-t1); } . ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node21.html -- 8.0 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node21.html -- 8.0 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node21.html -- 8.0 Кб -- 02.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>1054) - jet.sao.ru/ )

6. Values, Variables, and Literals
... This chapter discusses values that JavaScript recognizes and describes the fundamental building blocks of JavaScript expressions: variables and literals. ... So, for example, you could define a variable as follows: . var answer = 42 And later, you could assign the same variable a string value, for example, . ... These are fixed values, not variables, that you literally provide in your script. ... A string literal is zero or more characters enclosed in double ( " ) or single ( ' ) quotation marks. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/Guide/ident.htm -- 11.1 Кб -- 12.12.1997
Похожие документы

7. ADASS Conference Series
ADASS Home . ... e-Proceedings . ... Papers that are presented at ADASS conferences are required to conform to the following policies. ... Authors may request a presentation type of: oral, display, or demonstration. ... Submission Deadline . ... Authors of all presentation types are encouraged to submit their papers for inclusion in the conference proceedings. ... All presentation types (oral, display, demonstration), as well as BoF summaries, are eligible to be included in the conference proceedings. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/paperpolicy.html -- 9.8 Кб -- 23.11.2012
Похожие документы

8. Tsearch2 in Japanese
... Argument: C-Type: (char *) (IN) Desc: Pointer to the text which we parse 2. ... Argument: C-Type: (char **) (OUT) Desc: token text 3. ... LexDescr * descr = (LexDescr *) palloc(sizeof(LexDescr) * (2+1)); /* there are only two types in this parser */ descr [0].lexid = 3; descr [0].alias = pstrdup( word ); descr [0]. descr = pstrdup( Word ); descr [1].lexid = 12; descr [1].alias = pstrdup( blank ); descr [1]. descr = pstrdup( Space symbols ); descr [2].lexid = 0; PG_RETURN_POINTER( ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/docs/HOWTO-parser-tsearch2.html -- 12.8 Кб -- 22.12.2007
Похожие документы

9. vxWorksPrograms
... aosock_Cmd Converting rpc routines on vxWorks to use daemons : . ... pnt_Cmd: interfaces to the telescope pointing, tiedowns,turret. aosock_Cmd: lets you do regular socket i/o from a tcl script. ... If TCL_ERROR is returned then then command will be aborted (or any function it is called from). ... Errors will usually return with an error message included in the return value. aosock (cl)ose $sockFd . ... TCL_OK with n telling of the bytes returned: . n >0 bytes return. ... sockFd is socket number . ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/software/datataking/vxWorks.html -- 15.8 Кб -- 04.03.2013
Похожие документы

10. LOC Information (I)
... now - return the registration form . May 10 - deadline for conference registration and accommodation form . ... July 1 - final information to participants . ... RETURN] . ... Please send the abstracts to LOC. E-mail address: astro@te.net.ua . ... All participants are requested to fill in the enclosed Registration Form and send it to us before May 10, 1999 (via electronic mail to astro@te.net.ua ) . ... Please complete and return this form (even if you sent the pre-registration form) . ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/gmic100/archives/gmic99/loc_o.htm -- 23.4 Кб -- 25.08.2003
Похожие документы

11. lsst.coordConv: coordConv::OtherCoordSys Class Reference
lsst.coordConv љ unknown . ... Classes . ... coordConv::OtherCoordSys Class Reference . ... OtherCoordSys (std::string const &name, double date=0, DateTypeEnum dateType= DateType_None , bool isMean =false) . ... virtual Coord љ . ... CoordSys (std::string const &name, double date, DateTypeEnum dateType, bool isMean , bool canConvert ) . ... convertFrom ( CoordSys const &fromCoordSys, Coord const &fromCoord, Site const &site, double tai=0) const . ... virtual Coord coordConv::OtherCoordSys::removePM . ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/coordConv/html/classcoord_conv_1_1_other_coord_sys.html -- 47.5 Кб -- 07.05.2015
Похожие документы

12. Special Characters
This section contains information of how user agents should treat control characters and other special characters. ... There are 256 character positions in the Latin-1 encoding. ... It consists of the space character, 186 characters that form a subset of the graphic characters in ISO 6937/2 (1983), and four additional characters that are intended for inclusion in ISO 6937/2. ... Certain characters are taken to have special meaning within the context of an HTML document. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/webdesign/html-3.0/specialchars.html -- 6.7 Кб -- 19.12.1996
Похожие документы
Еще в разделе: (Показать все результаты (>379) - comet.sai.msu.ru/ )

13. http://crydee.sai.msu.ru/ftproot/pub/comp/os/os2/hobbes/os2/info/tcpip121.txt
There still seems to be some confusion about how one upgrades to the 1.2.1 release of TCP/IP. ... TCP/IP 1.2.1 PRODUCT REPLACEMENT PROCEDURE TCP/IP 1.2 customers of record may have their products replaced, FREE OF CHARGE, by using the following procedure: The customer is requested to return, with a complete return address, the PROOF OF LICENSE (ORIGINAL COPY) for all TCP/IP 1.2 for OS/2 products to the IBM Fulfillment Center (address below). ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/ftproot/pub/comp/os/os2/hobbes/os2/info/tcpip121.txt -- 3.8 Кб -- 29.01.1995
Похожие документы

14. AMI-Planck Follow-up Observation Database
. Search for a cluster by name: . Otherwise, search within a radius: . RA: . Dec: . Radius (arcmin): . Download the catalogue of AMI results (FITS format)
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/surveys/ami_planck/ami_planck.php -- 3.0 Кб -- 10.04.2016
Похожие документы

15. Date conversion functions
... All inputs for these functions and procedures can be arrays! . julian ( year _integer , month _integer , day _real ) Function; returns Julian day including fraction. Day can be fractional. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~chummel/oyster/manual/node184.html -- 5.2 Кб -- 28.04.2015
Похожие документы

16. Leonids 2002
Go to Armagh Observatory main Leonid page (including Leonid links) . ... In 2002 November the Earth will pass near the trails released at the 1866 and 1767 returns, i.e. 4 revolutions and 7 revolutions of the comet ago. The Earth's passage right through the centre of trails is associated with the most spectacular meteor displays (studies show that, as well as how close to the centre of the trail you are, the strength of the display also depends on how far along a trail's length you are). ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/leonid/info2002.html -- 7.2 Кб -- 08.11.2002
Похожие документы

17. [sas-uploads] SPAM:********** Returned mail: see transcript for details
Mail Administrator MAILER-DAEMON@xmm.vilspa.esa.es . ... Previous message: [sas-uploads] rgslib-1.30.2.tgz . ... NextPart_000_0010_7BEF277C.248D10E9 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit ------------------------------------------------------------------------ Subject: the ESA antivirus detected a virus in a e-mail sent to you. The ESA Mail Gateway detected a virus in a e-mail sent to you. ... Please note that the e-mail you received is incomplete. ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/pipermail/sas-uploads/2007-January/009369.html -- 5.0 Кб -- 26.01.2007
Похожие документы

18. Astronaut Bio: Mark C. Lee 10/2006
... Mark C. Lee (Colonel, USAF, Ret.) NASA Astronaut (former) . ... EDUCATION: Graduated from Viroqua High School, Viroqua, Wisconsin, in 1970; received a bachelor of science degree in civil engineering from the U.S. Air Force Academy in 1974, and a master of science degree in mechanical engineering from Massachusetts Institute of Technology in 1980. ... NASA EXPERIENCE: Lee was selected as an astronaut candidate by NASA in May 1984. ... Lee retired from NASA and the Air Force effective July 1, 2001. ...
[ Сохраненная копия ]  Ссылки http://www.jsc.nasa.gov/Bios/htmlbios/lee.html -- 9.3 Кб -- 07.07.2015
Похожие документы

19. Uses of Class ij.io.FileInfo (ImageJ API)
... Class . Use . ... Packages that use FileInfo . ... ij.io . ... Methods in ij that return FileInfo . ... Returns a FileInfo object containing information, including the pixel array, needed to save this image. ... Returns the FileInfo object that was used to open this image. ... Displays the dialog and returns a FileInfo object that can be used to open the image. static FileInfo . ... Returns the FileInfo object used to import the last raw image, or null if a raw image has not been imported. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/io/class-use/FileInfo.html -- 16.9 Кб -- 02.12.2010
Похожие документы

20. America Returns to Space Flight
... America Returns to Space Flight . ... Credit: NASA Explanation: NASA 's launch of the massive Space Shuttle Discovery yesterday brought a nation known for its tremendous space program back to human space flight. ... The complex, powerful Space Shuttle Discovery lifted a crew of seven into an Earth orbit that will bring them to the International Space Station (ISS). ... Publications with keywords: space shuttle . Publications with words: space shuttle . ... An Earth Ornament . ...
[ Сохраненная копия ]  Ссылки http://www.astronet.ru/db/xware/msg/apod/2005-07-27 -- 14.1 Кб -- 27.07.2005
Похожие документы

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


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

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

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