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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.eng.math.msu.su/download/Academic_English_part2.pdf.

1. CSPICE Routines: BODDEF_C
... Abstract Define a body name/ID code pair for later translation via bodn2c_c or bodc2n_c . ... Particulars boddef_c is one of three related subroutines, bodn2c_c Body name to code bodc2n_c Body code to name boddef_c Body name/code definition bodn2c_c and bodc2n_c perform translations between body names and their corresponding integer ID codes which are used in SPK and PCK files and routines. A set of name/code pairs are automatically defined during the first call to one of these subroutines. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/boddef_c.html -- 10.8 Кб -- 17.12.2005
Похожие документы

2. casacore: casa::UnitName Class Reference
... Classes . ... casa . casa::UnitName . ... handles physical units More... #include < UnitName.h > . ... UnitName (const UnitName &other) . ... UnitName (const String &tag, const UnitVal &kind, const String &name= EmptyString ) . ... UnitName (const Unit &tag, const String &name= EmptyString ) . ... Get definition value of the unit. const String & . ... String . ... String getName() const will return the unit name . ... Get the name tag of the defined unit. const UnitVal & casa::UnitName::getVal . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/casacore/casacore-1.2.0/doc/html/classcasa_1_1UnitName.html -- 26.6 Кб -- 14.02.2011
Похожие документы

3. Doug Burke's Perl/S-Lang pages: Datatype examples
... Doug's Home Page . ... In the examples below we show a number of ways that data can be moved back and forth between S-Lang and Perl . ... Source code typeof : "undef"; __END__ __SLang__ variable foo = Any_Type [3]; foo[0] = "a string"; foo[1] = 23; define getfoo(x) { return foo[x]; } message( "In S-Lang:" ); vmessage( "typeof(foo[0]) = %s", string(typeof(foo[0])) ); vmessage( "typeof(foo[1]) = %s", string(typeof(foo[1])) ); vmessage( "typeof(foo[2]) = %s", string(typeof(foo[2])) ); . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/perl-slang/examples_datatypes.html -- 12.1 Кб -- 02.10.2012
Похожие документы

4. Conformance: requirements and recommendations
... SGML . The text/html content type . In this section, we begin the specification of HTML 4.0, starting with the contract between authors, documents, users, and user agents. ... These recommendations are not normative and conformance with this specification does not depend on their realization. ... An HTML document is an SGML document that meets the constraints of this specification. ... A user is a person who interacts with a user agent to view, hear, or otherwise use a rendered HTML document. ...
[ Сохраненная копия ]  Ссылки http://xray.sai.msu.ru/~ustiansk/web/conform.html -- 12.1 Кб -- 24.04.1998
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/html40/conform.html -- 12.1 Кб -- 24.04.1998
Похожие документы

5. The C Preprocessor
... Preprocessor Compiler Control . ... This directive includes a file into code. ... include <file> or #include ``file'' . ... As another example if running program on MSDOS machine we want to include file msdos.h otherwise a default.h file. ... This is most often used with programs that translate other languages to C. For example, error messages produced by the C compiler can reference the file name and line numbers of the original source files instead of the intermediate C (translated) source files. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/node14.html -- 11.1 Кб -- 02.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>973) - jet.sao.ru/ )

6. Order Definition
... The first of the equations defines the position of the spectral orders, m , in the raw image, while the second equation gives, for each order, the dispersion relation in one dimension. ... where the coefficients are computed using least squares techniques on a grid , i.e. sample number and line number of points located within the spectral orders of the image. These points in the grid are found automatically by an order--following algorithm, normally using the FLAT or STD image. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/94NOV/vol2/node162.html -- 8.3 Кб -- 23.02.1996
Похожие документы

7. Defining the sort field
The first field of each line starts at 0 (zero); the second is 1 (one) and so on. To define which field to sort on you give the position of the field at which to start the sort followed by the position at which to end the sort. The position at which to start the sort is given as the number of fields to skip to get to this position. ... tells sort to skip the first two fields. The position at which to stop the sort is given as the number of the field at the end of which the sort stops. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/utilities2/sort3.2.html -- 2.5 Кб -- 17.01.1997
Похожие документы

8. Finding definitions in the source
The HyperNews Linux KHG Discussion Pages . Forum: The Linux Kernel Hackers' Guide . Re : Linux SMP Scheduling (Angela) . Date: Mon, 16 Mar 1998 16:34:54 GMT . From: Felix Rauch < rauch@inf.ethz.ch > . The definition of NO_PROC_ID can be fount by, e.g., the following command: . find . -name "*.[ch]" -print | xargs grep NO_PROC_ID | grep #define . (assuming you are in the Linux-source-directory). This will show that NO_PROC_ID is defined as follows: . #define NO_PROC_ID 0xFF .
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/khg/220/2.html -- 2.5 Кб -- 23.03.2000
Похожие документы

9. Spectrum v1 - Examples
In order to calculate the line profile of a given absorption line for atomic species Z with a wavelength LAMBDA (in Angstroms) and a microturbulent velocity VT (in km/s). ... mode . ... 1) The input model may contain more than one model (i.e. it may be an entire grid of models). Spectrum will cycle through this grid NMOD times, omitting NSKIP-1 models from the . ... However, the input data following MODE must be repeated NMOD times in order to obtain equivalent results for each model in the grid. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/~csj/software_store/guide/spectrum_v1_examples.html -- 7.6 Кб -- 02.06.2003
Похожие документы

10. OptInt PmWiki : PmWiki / Wiki Style Examples
OptInt PmWiki : Pm Wiki / Wiki Style Examples . Wiki styles | ... PmWiki uses WikiStyles for styling text with color and other attributes. PmWiki 2.0 introduced the ability to control the styling further and to even place styles on blocks. ... In addition, an author can define a style "shortcut" by using the define= property. For example, to define a style of %red% , one can use: . define=mystyle color=red% Here is some %mystyle% red text created using a style shortcut. ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/WikiStyleExamples?action=print -- 19.5 Кб -- 01.03.2014
Похожие документы

11. Need All Claims Be Tentative? - an Astronomy Net Exploration Forum Message
Astronomy Discussion Forums . ... Need All Claims Be Tentative? ... Here is an issue: does a particular representation correctly match the pattern it is claimed to represent went viewed by method 'x', within the limits of precision given by the definitions of the original pattern, the representation, and the method of viewing (x)? ... www.astronomy.net . ... Forum posts are Copyright their authors as specified in the heading above the post. "dbHTML," "AstroGuide," "ASTRONOMY.NET" & "VA.NET" . ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/forums/exploration/messages/83.shtml -- 17.9 Кб -- 09.04.2016
Похожие документы

12. http://zebu.uoregon.edu/1998/es202/distribution.html
[ Сохраненная копия ]  Ссылки http://zebu.uoregon.edu/1998/es202/distribution.html -- 4.8 Кб -- 27.01.1998
Похожие документы
Еще в разделе: (Показать все результаты (>362) - zebu.uoregon.edu/ )

13. Stellarium: core/StelTranslator.hpp File Reference
Stellarium 0.12.3 . ... FileљStructure . FileљList . FileљMembers . core . ... StelTranslator.hpp File Reference . Define some translation macros. More... #include <QMap> . ... q_ (str)љљљ StelTranslator::globalTranslator.qtranslate (str) . ... qc_ (str, ctxt)љљљ StelTranslator::globalTranslator.qtranslate (str, ctxt) . ... Definition in file StelTranslator.hpp . ... Definition at line 47 of file StelTranslator.hpp . ... StelTranslator::globalTranslator.qtranslate (str, ctxt) . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/StelTranslator_8hpp.html -- 10.1 Кб -- 28.02.2014
Похожие документы

14. Spatial coordinate systems
Next: Time coordinate system (TIMCOORD) Up: Coordinate Definitions used by Previous: Coordinate Definitions used by Contents . The CAL makes use of the following spatial coordinate systems . PIXCOORD0: Telemetry-related CCD pixel coordinate system . ... PIXCOORD1: Node-oriented CCD pixel coordinate system . ... The pixel coordinate system is, thus, node-oriented . ... CAMCOORD1/CAMCOORD2: Camera reference systems . ... Camera unit(s) . alignment of CAMCOORD1/2 axes in PIXCOORD1 frame . ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/calibration/documentation/CALHB/node7.html -- 20.9 Кб -- 20.09.2011
Похожие документы

15. XIII International Astronomy Olympiad: Personal data questionnaire
All teams have to inform the Olympic Advisory Committee (OAC) and the Local Organizing Committee (LOC) about their participation not later than the dates determined by the Acting Statutes/Regulations on the International Astronomy Olympiad . ... For the XIII IAO the procedure of the informing is the following: . ... The questionnaire is analogous to one of the last year . ... Family name(s) [full name expanding initials as in Passport] . ... To write all family names (as in passport). ...
[ Сохраненная копия ]  Ссылки http://www.issp.ac.ru/iao/2008/qi08_e.html -- 14.1 Кб -- 07.06.2008
Похожие документы

16. Actor Prolog. Example "D:\MOROZOV\Z\DEMO\EXE\EXAMPLES\SADT\JAM-E\JAM-E.A"
An example of visual expert system. The program is written on Actor Prolog. -- -- (c) Alexei A. Morozov, March 19, 1999. ... Actually I wrote this program to train myself -- -- in carrying out SADT interview. ... A logical description of the blocks of the SADT model. ... The main purpose of these classes is keeping lists of cooking -- -- battery corresponding to various blocks of the SADT model. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/Lab144/start/e_jam_a.html -- 33.0 Кб -- 24.09.2007
Похожие документы

17. Configuration Options
... In some cases where memory space is at a premium, it is possible to tailor the configuration to remove such features as reference clock driver support, debugging support, and so forth. ... The following lines are used in this file: . ... The DEFS_LOCAL line defines global flags that apply to all machines. Ordinarily, the only flags included are the -DDEBUG , which includes the debugging code, and -DREFCLOCK , which includes basic reference clock support. ... D_INCLUDE_BSD_SOURCE . ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~er/xntp/config.html -- 8.1 Кб -- 21.12.2007
Похожие документы

18. http://www.mccme.ru/ium/postscript/f00/notes/comb06.ps
S.Duzhin COMBINATORICS Lecture 6: Composition of combinatorial species Definition. Let F and G be two combinatorial species such that G[;] = ; (there are no G-structures on the empty set). ... Unlike the two previously introduced operations on species, partitional composition is literally compatible with only one generating series F (x). ... Recurrent points form several cycles, while non-recurrent ones form several trees flowing into these cycles. ...
[ Текст ]  Ссылки http://www.mccme.ru/ium/postscript/f00/notes/comb06.ps -- 54.2 Кб -- 23.01.2003
Похожие документы

19. Software Develpment: ST-ECF IRAF Package
Software Development: ST-ECF IRAF Package : Installation instructions . ST-ECF quit 2) Create a directory to contain the STECF external package files. ... 3) Log in as IRAF and edit the extern.pkg file in the hlib directory to define the package to the CL. From the IRAF account, outside the CL, you can move to this directory with the command: % cd $hlib Define the environment variable stecf to be the pathname to the stecf root directory. ... Maintained by Richard Hook Richard.Hook@eso.org ...
[ Сохраненная копия ]  Ссылки http://www.stecf.org/software/IRAFtools/stecf-iraf/install.html -- 8.9 Кб -- 06.06.2006
Похожие документы
Еще в разделе: (Показать все результаты (>263) - www.stecf.org/ )

20. Database of Optical Properties -- Level: subpage
This page will contain definitions (and basic references) of the following parameters: . cross-sections C ext , C sca , C abs , C bk ; . efficiencies Q ext , Q sca , Q abs , Q bk ; . ... TE/TM mode definitions for arbitrary shapes. Note that some parameters are defined in a quite different (specific) manner than for spherical scatterers, and some definitions in the book of Mishchenko et al. ...
[ Сохраненная копия ]  Ссылки http://www.astro.spbu.ru/staff/ilin2/DOP-old/2-11.html -- 2.3 Кб -- 19.11.2010
Похожие документы
Еще в разделе: (Показать все результаты (>267) - www.astro.spbu.ru/ )

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


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

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

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