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

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

Показаны документы, содержащие фрагменты текста из документа
http://xmm.vilspa.esa.es/sas/8.0.0/doc/ssclib/node61.html.

1. readArrayData
... The following interface covers just about every combination I could think of. interface readArrayData subroutine readArrayDataName1dReal32( imageSetName , vector) character(*), intent (in) :: imageSetName real (single), pointer :: vector(:) end subroutine readArrayDataName1dReal32 subroutine readArrayDataName2dReal32( imageSetName , image ) character(*), intent (in) :: imageSetName real (single), ... image(1,:) . cube(1,1,:) . ... arrayDataReal32 => real32Array2Data(inArray) . ...
[ Сохраненная копия ]  Ссылки http://xmm.vilspa.esa.es/sas/7.0.0/doc/ssclib/node61.html -- 10.0 Кб -- 28.06.2006
Похожие документы
Еще в разделе: (Показать все результаты (>5854) - xmm.vilspa.esa.es/ )

2. User interface
GIPSY programs do not interact with the user directly, but do this through the GIPSY user interface, Hermes . If for instance a program needs some input from the user, it will send a request to Hermes which will then prompt the user for the required parameters. ... If a program wants to inform the user that the integrated flux density of a source is x Janskys, it will not do this with an ordinary WRITE statement, but via a library routine which sends a request to Hermes. ... The default level . ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/gipsy/srvreq/programmers.html -- 7.2 Кб -- 17.01.2009
Похожие документы

3. Pulse-per-second (PPS) Signal Interfacing
Some radio clocks and related timekeeping gear have a pulse-per- second (PPS) signal that can be used to discipline the local clock oscillator to a high degree of precision, typically to the order less than 50 us in time and 0.1 PPM in frequency. ... Either way requires conversion of the PPS signal, usually at TTL levels, to RS232 levels, which can be done using a circuit such as described in the Gadget Box PPS Level Converter and CHU Modem page. ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~er/xntp/pps.html -- 5.3 Кб -- 21.12.2007
Похожие документы

4. OptInt PmWiki : Special Characters
OptInt PmWiki . Pm Wiki / . Edit Page | ... MROI Delay Line Design Contract . ... MROI Fast Tip-Tilt Contract . ... Special Characters . ... PmWiki supports the HTML special character listings by the w3c. W3C Page of Special Character codes ISO standard. ... For a nice table of the same codes that show the codes with the output go to the Noble Desktop special character page. ... Find an instance of a special character in an online document; copy and paste the character to your wiki page: © . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/projects/OAS/pmwiki/pmwiki.php/PmWiki/SpecialCharacters -- 22.4 Кб -- 28.02.2014
Похожие документы

5. Note on FORTRAN and C Versions
This document covers the FORTRAN version of the interfaces of this subsystem. ... Fortran offers a single intrinsic function for locating substrings within a string: INDEX. ... begin a search at any location within the string. -- search in two directions: forward (left to right), and reverse (right to left). -- search for a multi-character substring; or for any character contained in an arbitrary collection; or for any character NOT contained in an arbitrary collection. ... IF ( LEN ( STRING ) .LE. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/~sontag/spicedocs/req/scanning.html -- 9.0 Кб -- 17.12.2005
Похожие документы

6. radar interface
The Radar Interface (RI) is an A/D system built at the observatory. ... The device interfaces with the VME bus in the da vme crate. ... 1970's miguel feyjoo build the first ri with 1 MHz samplers. 1989 (?) edwin torres built the first ri that interfaced to the harris computers. 1994 bill sisk rebuilds the ri, now runs off the vme bus first ri was build by edwin torres and jon hagen around 1989is workhorse has been in operation since the early 1990's . ... Ch 1-8 : general info (.pdf) . ...
[ Сохраненная копия ]  Ссылки http://www.naic.edu/~phil/hardware/ri/ri.html -- 3.5 Кб -- 18.04.2013
Похожие документы

7. Converter (ImageJ API)
... Class . ... SUMMARY: NESTED | FIELD | ... METHOD . DETAIL: FIELD | ... java.lang.Object ij.plugin.Converter . ... PlugIn . public class Converter . ... Field Summary . ... Method Summary . ... Field Detail public static boolean newWindowCreated . ... Constructor Detail public Converter () . Method Detail public void run (java.lang.String arg) . ... This method is called when the plugin is loaded. 'arg', which may be blank, is the argument specified for this plugin in IJ_Props.txt. ...
[ Сохраненная копия ]  Ссылки http://www.astro.louisville.edu/software/astroimagej/imagej/api/ij/plugin/Converter.html -- 13.1 Кб -- 02.12.2010
Похожие документы

8. HwB: CD32 Keyboard to Serial Interface 1 (Offline)
... CD32 Keyboard-Port level-converter TTL->RS232 RS232 Pin4 +5V -------------Pin16 Pin3 GND -------------Pin15--------------------------GND Pin7 Pin2 TxD ------------>Pin10 (---|> ... Pin2 (**) shielding-----------------------------------------| |-shielding connect the shielding of all cables to each other - but only connect it to only ONE interface port connector (i used the keyboard plug). ... I suggest the serial signals are passed through directly to the PAULA chip - so they are slightly sensitive....
[ Сохраненная копия ]  Ссылки http://www.arcetri.astro.it/irlab/doc/library/hwbook/circuit/serial/CD32KeyboardToSerial1.html -- 4.4 Кб -- 06.07.2001
Похожие документы

9. Generic routines
... We now also have the possibility to write our own generic functions or subroutines. ... PROGRAM SWAP _MAIN IMPLICIT NONE INTEGER :: I, J, K, L REAL :: A, B, X, Y CHARACTER :: C, D, E, F INTERFACE SWAP SUBROUTINE SWAP _R(A, B) REAL, INTENT ( INOUT ) :: A, B END SUBROUTINE SWAP _R SUBROUTINE SWAP _I(A, B) INTEGER, INTENT ( INOUT ) :: A, B END SUBROUTINE SWAP _I SUBROUTINE SWAP _C(A, B) CHARACTER, INTENT ( INOUT ) :: A, B END SUBROUTINE SWAP _C ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/c10.html -- 6.2 Кб -- 11.02.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/c10.html -- 6.2 Кб -- 11.02.1996
Похожие документы

10. Project 8 - RFBR - Novel Nanoscale Devices based on functional Oxide Interfaces
... The extended project as the existing one aims to investigate, control and exploit the properties of interfaces between isostructural functional oxides for the realization of new nanosized electronic and optoelectronic devices. New participants will contribute to the characterization and understanding of physical properties of interfaces made of perovskite materials. In particular high frequency dynamical properties, fluctuation phenomena and dielectric spectrum will be carefully studied. ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/html/oxide233/proj11.html -- 4.3 Кб -- 24.01.2008
Похожие документы

11. LWN: Driver porting: the workqueue interface.
... LWN.net FAQ . ... This article is part of the LWN Porting Drivers to 2.6 series . The longstanding task queue interface was removed in 2.5.41; in its place is a new "workqueue" mechanism. ... Tasks to be run out of a workqueue need to be packaged in a struct work_struct structure. ... INIT_WORK must be used at least once before queueing the work_struct structure, but should not be used if the work_struct might already be in a workqueue. ... Driver porting: the workqueue interface. ...
[ Сохраненная копия ]  Ссылки http://mavr.sao.ru/hq/sts/linux/doc/porting_to_26/23634.html -- 16.5 Кб -- 28.12.2007
[ Сохраненная копия ]  Ссылки http://www.sao.ru/hq/sts/linux/doc/porting_to_26/23634.html -- 16.5 Кб -- 02.10.2012
[ Сохраненная копия ]  Ссылки http://jet.sao.ru/hq/sts/linux/doc/porting_to_26/23634.html -- 16.5 Кб -- 02.10.2012
Похожие документы

12. BTA TCS Online
. This page uses frames, but your browser doesn't support them.
[ Сохраненная копия ]  Ссылки http://www.sao.ru/tb/tcs/ -- 1.8 Кб -- 01.10.2012
Похожие документы

13. CFITSIO, v2.0: A New Full-Featured Data Interface
... Version 2.0 of the CFITSIO subroutine interface for reading and writing FITS format data files is now available from the HEASARC web site. Some of the major new features in this version are the ability to read FITS files over the network, support for reading IRAF format images, and options for filtering the input file at run time. CFITSIO is a software library that contains both C and Fortran-callable interface routines for reading and writing data files in FITS format. ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass98/pencewd/ -- 10.6 Кб -- 16.07.1999
Похожие документы

14. ESO - VLT/Instrument Interfaces
... Science . ... Science Users Information > Observing Facilities > Instrumentation Development > VLT/Instrument Interfaces . ... APEX Visitor Instrument . ... The interfaces between the VLT Unit Telescopes and the scientific instruments to be operated at the VLT Cassegrain, Nasmyth and Coudц© foci are well defined. ... Interface and numerous other relevant information for instrument builders is available in the "Requirements for Scientific Instruments on the VLT Unit Telescopes" , ESO doc. no. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/sci/facilities/develop/interfacesvlt.html -- 31.4 Кб -- 10.04.2016
Похожие документы

15. Graphical user interface
... UNIX and Linux don't incorporate the user interface into the kernel; instead, they let it be implemented by user level programs. ... This arrangement makes the system more flexible, but has the disadvantage that it is simple to implement a different user interface for each program, making the system harder to learn. ... X also does not implement a user interface; it only implements a window system, i.e., tools with which a graphical user interface can be implemented. ... Sun May 4 14:08:43 EEST 1997...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/sag-0.4/node13.html -- 3.3 Кб -- 04.05.1997
Похожие документы

16. Spectrograph Interface Control
Slithead identification (which slithead is installed?) will be sensed and reported by the on-board spectrograph computer. ... Observer's software to handle spectrographic observations will be written by JHU and installed on the Fermilab supplied observatory workstation. ... UW will be responsible for the slithead latch-down control. ... Database computer at APO: The observer's software will query the observatory database for information on the currently installed fiber cartridge. ...
[ Сохраненная копия ]  Ссылки http://www.apo.nmsu.edu/Instruments/SDSS/Spectrographs/Interfaces.html -- 8.6 Кб -- 26.08.2008
Похожие документы

17. The AstroStat Slog interface
... People . Posts tagged ?interface? ... The brackets could be filled with other languages but two are introduced today: Perl ( perl.org ) and Python ( python.org ). ... Continue reading ?R-[{Perl,Python}] Interface? Tags: interface , Perl , Python , R . ... 1 Comment . ... Entries RSS . Comments RSS . ... vlk on [MADS] Parallel Coordinates . upvc windows on [MADS] Parallel Coordinates . ... Alfred Inselberg on [MADS] Parallel Coordinates . ... Entries (RSS) and Comments (RSS) . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/AstroStat/slog/groundtruth.info/AstroStat/slog/tag/interface/index.html -- 18.8 Кб -- 01.03.2014
Похожие документы

18. RSAA Local Versions of Gemini Interface Control Documents
Note that these are 'General' ICDs giving information about protocols, not specific ICDs giving details of the full interfaces between specific Gemini systems. ... Document . ... The System Command Interface (PS) . ... The Baseline Attribute/Value Interface (PS) . ... Baseline DHS interface (PS) . ... System Status and Alarms Interface (PS) . ... Wavefront Sensing Information Interface (PS) . ... ICS/TCS Direct Control Interface (PS) . ... Telescope Tube Mass Balance f/16 IR Top End Config. ...
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/nifs/gemini/icds.html -- 5.6 Кб -- 01.10.2012
Похожие документы
Еще в разделе: (Показать все результаты (>2142) - www.mso.anu.edu.au/ )

19. SAI CAS: ConeSearch interface
SAI VO . ... SAI CAS . ... ConeSearch . ... Catalogs . ... main [?] . ... Object name or coordinates (degrees or HH MM SS or HH:MM:SS): . Center: Radius: deg arcmin arcsec . ... No tables selected. Click on the table name to select/unselect it. ... Click Catalog name to view the catalog Info . Click Table name to select / unselect it for the search . Click [?] to view the table Structure . Click [ New Table ] to upload New Table into your personal catalog . ... SAI MSU | ...
[ Сохраненная копия ]  Ссылки http://vo.astronet.ru/cas/conesearch.php -- 25.3 Кб -- 09.04.2016
Похожие документы

20. Ouranos Interface, AstroGuide Listing
The AstroGuide . ... AstroGuide | ... AstroGuide Listing . Login . See many more Astronomy Listings by: Category or Alphabet . The Ouranos interface is not in production anymore. ... Listed Since July 15, 1998 . ... 508) 224-6062 . ... 508) 224-6224 . Web Site . ... Web . ... Unless otherwise specified, web site content Copyright 1994-2016 John Huggins All Rights Reserved . dbHTML," "AstroGuide," "ASTRONOMY.NET" & "VA.NET" . are trademarks of John Huggins ...
[ Сохраненная копия ]  Ссылки http://www.astronomy.net/astroguide/ag341.html -- 12.7 Кб -- 09.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>103) - www.astronomy.net/ )

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


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

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

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