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

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

Показаны документы, содержащие фрагменты текста из документа
http://xmm.vilspa.esa.es/calibration/documentation/CALHB/node218.html.

1. Calling Parameters
. Next: Input Up: CAL_mosCTIcorrection Previous: Procedure Contents . Subsections . Input . Output . Michael Smith 2011-09-20
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/calibration/documentation/CALHB/node97.html -- 3.2 Кб -- 20.09.2011
Похожие документы
Еще в разделе: (Показать все результаты (>17314) - xmm.vilspa.esa.es/ )

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

3. http://www.naic.edu/~tghosh/software/parcheck.pro
Viewing contents of file '/net/www/deutsch/idl/idllib/ghrs/pro/ parcheck .pro' ;********************************************************************* ;+ ; ;*name: ; parcheck (general idl library 01) 30-mar-1987 ; ;*class: ; error checking ; ;*category: ; ;*purpose: ; to check that a procedure has been called with the minimum of allowed ; number of parameters . ; ;*calling sequence: ; parcheck , nparm , minparms , callingpro ; ;* parameters : ; ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~tghosh/software/parcheck.pro -- 4.4 Кб -- 24.01.2003
Похожие документы

4. ADASS 2002 Conference Proceedings
... The Chandra Data Archive team at the Chandra X-ray Center has developed middle tier services that are used by both our search and retrieval applications to uniformly access our data repository. ... Programs can call the services to retrieve observation data such as a single FITS file, a proposal abstract or a detailed report of observation parameters. ... Given an observation ID, filetype and data-processing level, this service returns the content of a single file from the Data Archive. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass02/P7-3/ -- 13.2 Кб -- 13.03.2003
Похожие документы

5. VLBI Wiki | PmWiki / CustomMarkup
... PmWiki . ... Go to new wiki . ... PmWiki 's markup translation engine is handled by a set of rules; each rule searches for a specific pattern in the markup text and replaces it with some replacement text. ... For example, here's the code that creates the rule for ''emphasized text'' (in scripts/stdmarkup.php ): . ... In general PmWiki uses the markup itself to name the rule (i.e., PmWiki uses " '' " instead of " em "), but to keep this example easier to read later on we'll use a mnemonic name for...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/vlbi/wiki/index.php?n=PmWiki.CustomMarkup -- 19.9 Кб -- 12.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>26145) - www.atnf.csiro.au/ )

6. Memory
... This chapter describes the Plug-in API functions that allocate and free memory as needed by the plug-in. Because plug-ins share memory space with Communicator, they can take advantage of any customized memory-allocation scheme the browser has. ... NPN_MemAlloc allocates memory from Communicator's memory space. ... NPN_MemFlush requests Communicator to free up a specified amount of memory if not enough is currently available for the plug-in's requirements. ... Allocating and Freeing Memory . ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/JS/plugin/mem.htm -- 8.7 Кб -- 15.01.1997
Похожие документы

7. Linux I/O port programming mini-HOWTO: Troubleshooting
... I get segmentation faults when accessing ports. ... Check the return value of ioperm() . Also, check that you're actually accessing the ports that you enabled with ioperm() (see Q3). If you're using the delaying macros ( inb_p() , outb_p() , and so on), remember to call ioperm() to get access to port 0x80 too. ... Check the order of the parameters; it should be outb(value, port) , not outportb(port, value) as is common in MS-DOS. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/doc/io-portprog/IO-Port-Programming-8.html -- 3.3 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/doc/io-portprog/IO-Port-Programming-8.html -- 3.3 Кб -- 11.09.2010
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/doc/io-portprog/IO-Port-Programming-8.html -- 3.3 Кб -- 02.10.2012
Похожие документы

8. Working with
Next: In case of trouble Up: Using Previous: What to do next? ... procedures are called from within the IDL environment. This is done from either the IDL command line by typing in the appropriate commands, or by invoking a widget, which provides buttons to click on for specific action. ... Note that widget buttons which bring up another widget are labeled in all caps, whereas the other type either displays a sub-menu (indicated by the arrow) or executes a procedure upon selection. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~chummel/oyster/manual/node14.html -- 6.4 Кб -- 28.04.2015
Похожие документы

9. Argument association
... Fortran . Storage rules Dummy argument is a quantity in the specification of a procedure, function or subroutine. Actual argument is a quantity in the call of a procedure, function or subroutine. ... Becomes 101 END PROGRAM EXAMPLE SUBROUTINE SUB(X, Y, Z) IMPLICIT NONE REAL, INTENT(IN) :: X REAL, INTENT(INOUT) :: Y REAL, INTENT(OUT) :: Z Y = Y**2 Z = X + Y END SUBROUTINE SUB In Fortran there is really only one kind of argument usage, called argument association. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/a10.html -- 9.0 Кб -- 17.02.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/a10.html -- 9.0 Кб -- 17.02.1996
Похожие документы

10. Internet Programming with Java
The objective of this course is to help you to understand some fundamental basic concepts behind the Java technology. The audience is assumed to have little or no prior exposure to Java and Object-Oriented programming. ... The topics will help you to understand how to use Java to create, access, and support Java applications and applets. ... Introduce object-oriented programming concepts and how they apply to Java programming. ... Extending A Class (Inheritance) . ... Hello World Applet . ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/hst/training/events/Java/SSD990329Java/Java3.html -- 10.9 Кб -- 23.12.2007
Похожие документы

11. Report on Cosmic Call 1999
... Report on Cosmic Call 1999 . ... Cosmic Call Sessions . ... This Report outlines methodology, hard- and software, which were developed to transmit first public Interstellar messages from Evpatoria Deep Space Center (EDSC), and describes four Cosmic Call Sessions, which were fulfilled in EDSC on May 24 and June 30 - July 1, 1999. ... Each Cosmic Call consists of two parts. ... Dutil Message, . ... The software for gathering all messages and creating the Cosmic Call stream, was written on C language. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/html/ra&sr/irm/report-1999.html -- 56.9 Кб -- 30.11.2002
Похожие документы
Еще в разделе: (Показать все результаты (>565) - www.cplire.ru/ )

12. Stellarium: StelQGLTextureBackend Class Reference
Stellarium 0.12.3 . ... Classes . ... Renderer . ... StelQGLTextureBackend Class Reference . ... constructFromImage (class StelQGLRenderer *renderer, const QString & path , const TextureParams &params, QImage &image) . Construct a StelQGLTextureBackend from an image. ... constructFromPVR (class StelQGLRenderer *renderer, const QString & path , const TextureParams &params) . ... constructAsynchronous (class StelQGLRenderer *renderer, const QString & path , const TextureParams &params) . ... path . ...
[ Сохраненная копия ]  Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/classStelQGLTextureBackend.html -- 37.6 Кб -- 28.02.2014
Похожие документы

13. OptInt PmWiki : Available Actions
OptInt PmWiki . Pm Wiki / . Edit Page | ... Available Actions . ... Cookbook actions . Page actions are applied to wiki pages, as a query string appended to the URL . ... edit the specified page, see basic editing PmWiki's basic edit syntax . ... action= dc . ... To see more than what ?action=ruleset gives you, apply the Cookbook:MarkupRulesetDebugging recipe: it can also show the pattern and the replacement strings. doesn't make use of PmWiki's authorization mechanisms. ?action= phpinfo . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/AvailableActions -- 38.1 Кб -- 28.02.2014
Похожие документы

14. MaximumFinder (ImageJ API)
... FIELD | ... METHOD . ... java.lang.Object ij.plugin.filter.MaximumFinder . ... public class MaximumFinder . ... 32768 pixels in width or height version 01-Nov-2009 Bugfix: extra lines in segmented output eliminated; watershed is also faster now Maximum points encoded in long array for sorting instead of separete objects that need gc New output type 'List' . ... static int . ... The plugin is inferred from ImageJ by this method . ... int . ... Field Detail public static final int SINGLE_POINTS . ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/plugin/filter/MaximumFinder.html -- 29.1 Кб -- 02.12.2010
Похожие документы

15. Doug Burke's Perl/S-Lang pages: CIAO examples
... Doug's Home Page . ... The output was created using version 1.00 of the module, using the PDL support , together with the S-Lang library from CIAO 3.2 . ... Set up everything in S-Lang code and execute it from Perl # use strict; use Inline 'SLang'; # access the fit results from Perl # print Now in perl \n ; my $res = get_par ( ptest ); print Fit results:\n ; foreach my $par ( @{$res} ) { printf parameter : %-15s , $$par{name}; if ( $$par{ frozen } ) { printf [ ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~dburke/perl-slang/examples_ciao.html -- 12.9 Кб -- 01.10.2012
Похожие документы

16. http://www.stecf.org/software/ASTROsoft/DER_SNR/der_snr.pro
... In the median ; function of IDL, the higher of the two values is returned. ... Felix Stoehr, [ST-ECF] xxx = xx(sort(xx)) n = n_elements(xxx) if ((n mod 2) eq 0) then begin return , 0.5 * (max([0,xxx(n/2-1)])+xxx(n/2)) endif else begin return , xxx((n-1)/2) endelse end ;----------------------------------------------------------------------------------------- ; ;***************************************************************************************** function DER_SNR , ...
[ Сохраненная копия ]  Ссылки http://www.stecf.org/software/ASTROsoft/DER_SNR/der_snr.pro -- 4.6 Кб -- 01.10.2007
Похожие документы

17. MAO NASU :: Topic: Open access submissions and content now available (1/1)
... Recent Topics . ... MAO main . ... Open access submissions and content now available . ... Отправлено: Thu, 15 Oct 2015 07:50:43 +0300 (EEST) Тема: Open access submissions and content now available Planetary and Space Science Welcomes Open Access Submissions @media only screen and (max-device-width: 480px) { } p { margin-top: 1em; margin-bottom: 1em; margin-left: 0em; margin-right: 0em; color: #53565A; } img { display:block; -ms-interpolation-mode:bicubic; } Can't see this email properly? ...
[ Сохраненная копия ]  Ссылки http://www.mao.kiev.ua/index.php/ua/forum/info/444-open-access-submissions-and-content-now-available -- 25.0 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>959) - www.mao.kiev.ua/ )

18. SPICE Kernels Contents (briefly)
Spacecraft ephemeris , or more generally, location of an observer, given as a function of time. ... The ephemeris data for spacecraft and target bodies are normally combined in a single file called the SPICE SPK file. ... Attitude data is contained in the SPICE CK file. ... Several miscellaneous kernel files - spacecraft clock (SPICE SCLK file) and leapseconds (SPICE LSK file) - are also part of SPICE; these are used in converting time tags between various time measurement systems. ...
[ Сохраненная копия ]  Ссылки http://www.iki.rssi.ru/naif/spiceker.htm -- 3.2 Кб -- 08.11.1994
Похожие документы

19. Page contents
Next: Presentation of the results Up: World Wide Web version Previous: WWW access . On the main page, a very short description of the program may be found. ... The first link brings the user to a very friendly interface of the main code, where all parameters can be set and the calculations can be started. The second lonk provides a list of papers containing the results of the Scenario Machine calculations beginning from 1983 untill 1996 and a short description of the code. ...
[ Сохраненная копия ]  Ссылки http://xray.sai.msu.ru/~polar/sceintro/poster/be_inwww/node7.html -- 3.0 Кб -- 21.06.1996
Похожие документы

20. Understanding HTML and MIME
I have dropped the differentiation of HTML into a sequence of conformance levels. ... This (and upward compatible specifications) define the Internet Media Type (RFC 1590) and MIME Content Type (RFC 1521) called "text/html". The type "text/html" accepts the following parameters: . ... Character sets . The charset parameter (as defined in section 7.1.1 of RFC 1521) may be used with the text/html content type to specify the encoding used to represent the HTML document as a sequence of bytes. ...
[ Сохраненная копия ]  Ссылки http://comet.sai.msu.ru/webdesign/html-3.0/HTMLandMIME.html -- 3.3 Кб -- 19.12.1996
Похожие документы

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


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

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

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