Найдено документов: 122636 (143 сайтов) ---- Время поиска: 0.34сек. |
Показаны документы, содержащие фрагменты текста из документа
http://www.stsci.edu/~sontag/spicedocs/cspice/lparse_c.html.
http://www.stsci.edu/~sontag/spicedocs/cspice/lparse_c.html.
1. CSPICE Routines: ERRCH_C
... Abstract Substitute a character string for the first occurrence of a marker in the current long error message. ... Detailed_Input marker is a character string that marks a position in the long error message where a character string is to be substituted. ... Substitute the file name into the error message. Signal the error (causing output of error messages) using the CSPICE routine sigerr_c . ... After the call to errch_c , the long error message will contain the file name held in the string FILE. ...
[
Сохраненная копия
]
Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/errch_c.html -- 9.1 Кб -- 17.12.2005
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>14570) - www.stsci.edu/ )
2. http://www.atnf.csiro.au/computing/software/gipsy/tsk/getval.dc1
Program: GETVAL Purpose: Get image values at given positions in a set Category: UTILITY File: getval.c Author: M.G.R. Vogelaar Keywords: INSET= Give set (,subset): Maximum number of subsets is 1. ... The image values are formatted according the string entered in FORMAT= APPEND= Ok to append? ... The flag characters and their meanings are: - The result of the conversion is left- justified within the field. ... If the result of a conversion is longer than the field width, an asterisk is returned. ...
[
Сохраненная копия
]
Ссылки http://www.atnf.csiro.au/computing/software/gipsy/tsk/getval.dc1 -- 10.2 Кб -- 24.04.1998
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>14379) - www.atnf.csiro.au/ )
3. 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
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>2030) - www.sao.ru/ )
4. 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
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>483) - www.cplire.ru/ )
5. Examples of quoting special characters
... To prevent the shell from expanding an argument containing several special characters: $ sed -e 1,$s/V[0-9].*: //p /etc/motd sed: command garbled: 1,/V[0-9].*: $ sed -e '1,$s/V[0-9].*: //p' /etc/motd DYNIX/ptx(R) Tue Feb 25 12:04:15 GMT 1993 . ... To prevent the shell from expanding special characters but allow command substitution: echo 'My working directory is `pwd`' My working directory is`pwd` echo "My working directory is `pwd`" My working directory is /home/jane/docs . ...
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/UNIXhelp/commanz/cmd2.2.1.html -- 3.2 Кб -- 17.01.1997
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>584) - comet.sai.msu.ru/ )
6. OptInt PmWiki : Site / Search
... A search for more than one word will find pages that contain all of the words. ... To limit your search to a single group, enter the group name followed by a slash at the beginning of the search string (e.g., "PmWiki/" or "Site/"). ... apple pie . ... apple' in the PmWiki group of pages . ... the phrase 'pmwiki/apple' in all groups of pages . ... For advanced searches , page list parameters (count, name, group, fmt, link, list, order, and trail) can be entered together with the search string. ...
[
Сохраненная копия
]
Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/Site/Search?action=print -- 9.3 Кб -- 01.03.2014
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>1221) - www.mrao.cam.ac.uk/ )
7. 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
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>2106) - hea-www.harvard.edu/ )
8. 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
Похожие документы
[ Сохраненная копия ] Ссылки 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
Похожие документы
Еще в разделе:
(Показать все результаты (>760) - jet.sao.ru/ )
9. FTS Dictionary Example
... MAXLEN parameter specifies maximum length of the number considered as a 'good' integer. ... If REJECTLONG = FALSE (default), than dictionary returns prefixed part of integer number with length MAXLEN . ... This is a dict_tmpl.c file. # include postgres.h # include utils/builtins.h # include fmgr.h #ifdef PG_MODULE_MAGIC PG_MODULE_MAGIC; #endif # include utils/ts_locale.h # include utils/ts_public.h # include utils/ts_utils.h typedef struct { int maxlen ; bool rejectlong ; } ...
[
Сохраненная копия
]
Ссылки http://www.sai.msu.su/~megera/postgres/fts/doc/fts-intdict-xmp.html -- 9.6 Кб -- 13.04.2008
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>1858) - www.sai.msu.su/ )
10. mod_charset_lite - Apache HTTP Server
... Apache HTTP Server Version 2.4 . ... Specify character set translation or recoding . ... mod_charset_lite allows the server to change the character set of responses before sending them to the client. ... CharsetDefault . ... The character set name parameters of CharsetSourceEnc and CharsetDefault must be acceptable to the translation mechanism used by APR on the system where mod_charset_lite is deployed. ... Specifying the same charset for both CharsetSourceEnc and CharsetDefault disables...
[
Сохраненная копия
]
Ссылки http://www.arcetri.astro.it/manual/fr/mod/mod_charset_lite.html -- 15.6 Кб -- 19.11.2015
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>7955) - www.arcetri.astro.it/ )
11. 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
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>232) - www.astro.spbu.ru/ )
12. 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
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>380) - www.ipa.nw.ru/ )
13. Long description for example showing caption to the left of a table
This diagram shows the relationship between a table and a caption to its left and how they behave in the visual formatting model. The diagram shows a table with 3 columns, one row of headers, and six rows of data cells. The table is centered within its containing block, whose left and right edges are depicted by vertical lines and labeled "current margins". ... To the left of the left containing block edge, a right-justified paragraph of five lines is aligned with the bottom of the table. ...
[
Сохраненная копия
]
Ссылки http://crydee.sai.msu.ru/~vab/html.doc/css2/images/longdesc/left-caption-desc.html -- 2.0 Кб -- 02.05.1998
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>1939) - crydee.sai.msu.ru/ )
14. APO WWW Search
Search the public APO pages. To modify the search terms, see the 'Search Term Modifiers' below the search window. ... To perform a single character wildcard search use the "?" symbol. ... This search will find terms like foam and roams. ... For example to search for a "apache" and "jakarta" within 10 words of each other in a document use the search: "jakarta apache"~10 . ... To search for documents that contain either "jakarta apache" or just "jakarta" use the query: "jakarta apache" jakarta . ...
[
Сохраненная копия
]
Ссылки http://www.apo.nmsu.edu/cgi/search.py -- 8.8 Кб -- 09.04.2016
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>592) - www.apo.nmsu.edu/ )
15. gbsfile
... This file contains the information about INTERBALL Auroral Probe & EISCAT magnetic conjugations as a function of the Universal time. As a criteria of the magnetic conjugation is used the location of the satellite's magnetic footprint's trace inside of the polygon determined by the magnetic observatory. The version of the magnetic field model used during magnetic mapping is shown on the last column (MOD IOPT) of the file. ... GLONS (deg) . the satellite's geographical longitude . ...
[
Сохраненная копия
]
Ссылки http://www.iki.rssi.ru/vprokhor/descr/gbsfile.htm -- 3.6 Кб -- 12.05.1999
[ Сохраненная копия ] Ссылки http://www.cosmos.ru/vprokhor/descr/gbsfile.htm -- 3.6 Кб -- 12.05.1999
Похожие документы
[ Сохраненная копия ] Ссылки http://www.cosmos.ru/vprokhor/descr/gbsfile.htm -- 3.6 Кб -- 12.05.1999
Похожие документы
Еще в разделе:
(Показать все результаты (>727) - www.cosmos.ru/ )
16. Tools (ImageJ API)
... public class Tools . ... Tools () . ... static java.lang.String . ... Converts a Color to an 7 byte hex string starting with '#'. public static java.lang.String f2hex (float f) . Converts a float to an 9 byte hex string starting with '#'. public static double[] getMinMax (double[] a) . ... Converts the float array 'a' to a double array. public static float[] toFloat (double[] a) . Converts the double array 'a' to a float array. public static java.lang.String fixNewLines (java.lang.String s) . ...
[
Сохраненная копия
]
Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/util/Tools.html -- 19.2 Кб -- 02.12.2010
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>573) - www.astro.louisville.edu/ )
17. AstroAsciiData
... AstroAsciiData is a Python module to handle ASCII tables. ... The idea to develop this Python module emerged from the fact that ASCII tables continue to be one of the most popular and widely used data exchange formats in astronomy and probably science in general. ... To load this ASCII table, go into Python, load the AstroAsciiData module and read in the table with: . ... demo = asciidata.open('webexa.txt') . ... Users who only want to work with ASCII tables neeed no further python modules. ...
[
Сохраненная копия
]
Ссылки http://www.stecf.org/software/PYTHONtools/astroasciidata/ -- 13.6 Кб -- 09.04.2016
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>231) - www.stecf.org/ )
18. http://star.arm.ac.uk/~csj/idl/UCLES/ucles_read.pro
... Example: ; ucles_read ,'aat_fram_0001.dat',1024,46,w,f ; INPUT ; file : string variable containing file name ; file contains 2 columns of wl and fl ; and EXACTLY nw * no lines. ; nw : number of wavelengths ; no : number of orders ; OUTPUT ; w ; 2d real array (nw,no) containing wavelengths ; f : 2d real array (nw,no) containing fluxes ;- PRINT ,' UCLES_READ : Reading echelle spectrum:', file w = fltarr(nw,no) f = fltarr(nw,no) ...
[
Сохраненная копия
]
Ссылки http://star.arm.ac.uk/~csj/idl/UCLES/ucles_read.pro -- 2.2 Кб -- 22.08.2007
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>1923) - star.arm.ac.uk/ )
19. JavaScript Form Validator Documentation
The Form validation script is distributed free from JavaScript-Coder.com . ... When there are many fields in the form, the JavaScript validation becomes too complex. ... Each field in the form can have 0, 1, or more validations. ... Just after defining your form, Create a form validator object passing the name of the form . ... FORM> . ... You can add any number of validations.The list of validation descriptors are provided at the end of the documentation. ... option value="" selected>[choose yours] . ...
[
Сохраненная копия
]
Ссылки http://hea.iki.rssi.ru/Z-90/scripts/Documentation.html -- 15.5 Кб -- 03.08.2003
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>233) - hea.iki.rssi.ru/ )
20. Worked Example 01
You have been hired to design a safety system to protect drivers going down hills during an ice storm. ... In the scenario you are given, the car starts from rest at the top of a hill which makes an angle q with the horizontal. The distance that the car slides from the top of the hill until it is stopped by the spring is L. For the worst case scenario, assume that there is no frictional force between the car and road due to the ice. ...
[
Сохраненная копия
]
Ссылки http://www.mso.anu.edu.au/pfrancis/phys1101/questions/Q01/index.html -- 2.1 Кб -- 02.10.2012
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>422) - www.mso.anu.edu.au/ )
Астронет | Научная сеть | ГАИШ МГУ | Поиск по МГУ | О проекте | Авторам
Комментарии, вопросы? Пишите: info@astronet.ru или сюда