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

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

Показаны документы, содержащие фрагменты текста из документа
http://star.arm.ac.uk/f77to90/a7.html.

1. Number input
This document describes how number input can be given to tasks which request numbers from Hermes. ... list selection The following constants are implemented: pi 3.14159.... c speed of light (SI) h Planck (SI) k Boltzmann (SI) g gravitation (SI) s Stefan-Boltzman (SI) m mass of sun (SI) p parsec (SI) BLANK Universal undefined value The following mathematical functions are implemented: abs(x) absolute value of x sqrt(x) square root of x sin(x) sine of x asin(x) inverse sine ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/hermes/numbers.html -- 8.2 Кб -- 16.01.2009
Похожие документы

2. Conditional Statements, Branching
Next: Special Functions Up: MIDAS Command Language Previous: Local Keywords . As in FORTRAN 77 any of the following forms of the IF statement may be used: IF log_exp command ! ... If we do WRITE/KEYWORD INPUTC beer . ... N "Enter number: " . ... WRITE/KEYWORD INPUTC NONE ! ... WRITE/KEYWORD INPUTC YES !indicate, that INPUTI holds a valid number . ... Since, in the ELSE branch we know that parameter P6 is given, the default value " + " itself is never tested against the interval [22,1024]. ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/precise/Midas_doc/doc/94NOV/vol1/node43.html -- 9.8 Кб -- 23.02.1996
Похожие документы

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

4. CSPICE Routines: REPMD_C
... Abstract Replace a marker with a double precision number. ... 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. 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. ... Index_Entries replace marker with d.p. number . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/cspice/repmd_c.html -- 10.7 Кб -- 17.12.2005
Похожие документы

5. Procedure for Part Numbering Convention: Larry Carey, 2005
Numbering Procedures for APO 2.5m and 3.5m Drawings and Engineering/Drafting Documents . ... Document part numbers are to consist of a 7 character long "base numbe,r" which is coded to provide information about the part's intended first use. The part number becomes complete and unique only with the addition of a revision number. ... Example of a "base number": 25CSA01 . ... PART NUMBER CONVENTION . ... For Example: . ... R = "Revision" . ... Questions contact Larry Carey/University of Washington ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Telescopes/06APODrawNumConv.htm -- 8.3 Кб -- 22.03.2006
Похожие документы
Еще в разделе: (Показать все результаты (>646) - www.apo.nmsu.edu/ )

6. The historical development of Fortran
... Fortran . ... The final example shows the program in the new programming language F. program tpk(input,output); (* Pascal program for Unix *) var i : integer; y : real; a : array [0..10] of real; function f (t : real) : real; begin f := sqrt(abs(t)) + 5*t*t*t end; begin for i := 0 to 10 do read(a[i]); for i := 10 downto 0 do begin y := f(a[i]); if y > 400 then writeln(i,' TOO LARGE') else writeln(i,y); end end. ... C THE TPK ALGORITHM C FORTRAN IV STYLE DIMENSION A(11) FUN(T) = SQRT(ABS(T)) + 5.) ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/a7.html -- 14.1 Кб -- 05.09.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/a7.html -- 14.1 Кб -- 05.09.1996
Похожие документы

7. Character Device Drivers
... int major . ... Here is an example of foo_write() : static int foo_write(struct inode * inode, struct file * file, char * buf, int count) { unsigned int minor = MINOR(inode->i_rdev); char ret; while (count > 0) { ret = foo_write_byte(minor); if (ret < 0) { foo_handle_error(WRITE, ret, minor); continue; } buf++ = ret; count-- } return count; } foo_write_byte() and foo_handle_error() are either functions defined elsewhere in foo.c or pseudocode. ... 2. return value of foo_write(...) by My name here . ...
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/devices/char.html -- 8.3 Кб -- 23.03.2000
Похожие документы

8. Examples of using the for statement
... To go through each file in the current directory and compare it with the same filename in another directory: #!/bin/sh # compare files to same file in directory "old" for i in * do echo $i: cmp $i old/$i echo done . ... Some examples of command substitution in for loops: #!/bin/sh # do something for all files in current # directory according to time modified for i in `ls -t` do ... done # do something for all non-fred files. for i in `cat filelist | ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/UNIXhelp/scrpt/scrpt2.6.2.1.html -- 3.2 Кб -- 17.01.1997
Похожие документы

9. Number of accreting X-ray binaries of selected types
... The numbers of three types of compact binaries containing accreting NSs and BHs, which are most interesting from the point of view of their observational appearances, have been calculated as a function of time: i) X-ray transient source containing a NS in an eccentric orbit around a main sequence Be-star (the observed prototype: A0535+26), ii) BH The evolution of the selected types of X-ray binaries during the first 10 million years after the starburst onset is presented in Fig. ...
[ Сохраненная копия ]  Ссылки http://xray.sai.msu.ru/~polar/html/publications/apj/node8.html -- 5.9 Кб -- 21.06.1996
Похожие документы
Еще в разделе: (Показать все результаты (>599) - xray.sai.msu.ru/ )

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

11. BRIZ: a vizualization program for Brillouin zone ? Fermi sphere
... Another significant contribution to the crystal energy of metals is the electron-ion interaction or the electron bandstructure energy (E BS ) which is defined by the interaction of valence electrons and the Brillouin zone (BZ) planes. ... The program BRIZ has been developed for 3D visualization of Brillouin zone configurations and intersections of BZ planes with a Fermi sphere[4]. ... 1.75 (electrons/atom). ... 4] Degtyareva V.F., Smirnova I.S.: BRIZ: a vizualization program for Brillouin zone ? ...
[ Сохраненная копия ]  Ссылки http://www.issp.ac.ru/lsr/briz.html -- 14.0 Кб -- 07.11.2013
Похожие документы

12. Apache module mod_vhost_alias
This module provides support for dynamically configured mass virtual hosting . ... Source File: mod_vhost_alias.c . ... For simple name-based virtual hosts you might use the following directives in your server configuration file: UseCanonicalName Off VirtualDocumentRoot /usr/local/apache/vhosts/%0 . A request for http://www.example.com/directory/file.html will be satisfied by the file /usr/local/apache/vhosts/www.example.com/directory/file.html . ... Module: mod_vhost_alias . ...
[ Сохраненная копия ]  Ссылки http://neptun.sai.msu.su/manual/mod/mod_vhost_alias.html -- 13.1 Кб -- 15.10.2001
Похожие документы

13. Example Programs
. XMM-Newton Science Analysis System . dal (dal-1.182.1) [xmmsas_20070708_1801-7.1.0] . Meta Index / Home Page This document contains a large number of example programs which also are available separately. They can be found in directory dal/doc/reference/examples. The programs are built with the command: make test. XMM-Newton SOC/SSC -- 2007-07-08
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/7.1.0/doc/dal/node8.html -- 3.2 Кб -- 08.07.2007
Похожие документы
Еще в разделе: (Показать все результаты (>15885) - xmm.vilspa.esa.es/ )

14. Algebraic Number Theory
We present the basics of number theory emphasizing the striking similarity between the properties of usual integers and those of polynomials over a finite field. This leads to understanding that number theory and algebraic geometry is in fact one and the same domain. The core of number theory being an elementary problem, we stick to concrete examples. ... P-adic numbers. ... Algebraic number fields. ... Geometry of numbers. ... S. Lang, Algebraic number theory, Springer, 1994. ...
[ Сохраненная копия ]  Ссылки http://www.mccme.ru/mathinmoscow/courses/view.php?name=Algebraic%20Number%20Theory.htm -- 4.7 Кб -- 10.04.2016
Похожие документы

15. Geomagnetic Indices Kp, ap, Ap, Cp and C9
This service contributes to the International Service of Geomagnetic Indices (ISGI) of the IAGA . ... The Kp numbers of the previous month are available in tabular format . ... There are available also historical and current Kp and derived indices per anonoymos FTP (see below). ... U.S.A. FTP server: ftp://ftp.ngdc.noaa.gov/STP/GEOMAGNETIC_DATA/INDICES/KP_AP/ . monthly update) . ... contains the monthly Kp / ap tables in a simple text format readable for both humans and computers (*.tab). ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/magbase/REFMAN/KP_INDEX/index.html -- 13.1 Кб -- 14.10.2001
Похожие документы
Еще в разделе: (Показать все результаты (>1275) - www.iki.rssi.ru/ )

16. 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
Похожие документы
Еще в разделе: (Показать все результаты (>3544) - www.sai.msu.su/ )

17. Formulas
... Formulas are very similar to equations. Consider for now only equations with one unknown variable , denoted by some letter, which can be x but can also be different. An equation is an equality between two mathematical expressions containing the unknown number (maybe in several places), as well as other numbers which are known. ... For instance--if you multiply two sides of a formula by the same number, the result is still a valid formula, even if what you multiply contains unknown numbers. ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/mirrors/stern/stargaze/Salgeb3.htm -- 12.3 Кб -- 28.02.2006
[ Сохраненная копия ]  Ссылки http://www.cosmos.ru/mirrors/stern/stargaze/Salgeb3.htm -- 12.3 Кб -- 22.12.2007
Похожие документы

18. IAJ: Past Issues
Past Issues This page contains links to our archive of past issues of the Irish Astronomical Journal. ... Each issue is abbreviated below with the volume (V) number and issue number (N). V22N1 - Contents and examples from IAJ Volume 22 Number 1 (January 1995) . V22N2 - Contents and examples from IAJ Volume 22 Number 2 (July 1995) . V23N1 - Contents and examples from IAJ Volume 23 Number 1 (January 1996) . V23N2 - Contents and examples from IAJ Volume 23 Number 2 (July 1996) . ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/iaj/online/past.html -- 2.8 Кб -- 06.07.1999
Похожие документы

19. telescope cycles by year
... The tension in members of the telescope changes as we move the dome, ch, azimuth, and tiedown tensions. The lifetime of a beam is counted in the number of times the change in tension goes through a cycle. ... Examples of telescope motion with corresponding unbalanced moment. ... The number of cycles were computed for : 5000, 10000, 15000, 20000 kipFeet momemnt change. ... The number of cycles on the telescope was computed using the change in the unbalanced moment (at a corner). ... cycles . ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/telescope/unbalanced_moment_cycles_by_yr.html -- 15.2 Кб -- 02.03.2011
Похожие документы

20. http://www.eso.org/projects/dfs/team/QA-code-review-form.doc
... Readability |Check number: 1 | Description: Header existence for each |Evaluation (always/often/sometimes/| |source file and for each method, class, |never) : | ... Description: Naming conventions existence |Evaluation (always/often/sometimes/| |(variables start with lowercase, then |never) : | ... limited and commented |(always/often/sometimes/ | ... Description: Error message are formated : when an|Evaluation | error or an exception is raised, report the |(always/often/sometimes/ | ...
[ Текст ]  Ссылки http://www.eso.org/projects/dfs/team/QA-code-review-form.doc -- 128.5 Кб -- 29.09.2003
Похожие документы

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


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

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

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