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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.mrao.cam.ac.uk/~rachael/compphys/examples/shm.f90.

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

2. (Untitled)
To proceed to drawing tracks of some objects select Tracks item in menu bar and then select Input Data in drop-down menu. Enter initial and final dates of time interval in corresponding data fields of the Input Data dialog box Input Data . ... The frame with horizontal and vertical scales corresponding to the right ascension and declination axes appears on screen. ... Depending on specifications introduced in the Input Data dialog box the picture represents tracks up to three different objects. ...
[ Сохраненная копия ]  Ссылки http://www.ipa.nw.ru/PAGE/FUNDAMENTAL/LSBSS/winample_guide/user2pnr.htm -- 3.1 Кб -- 10.04.2016
Похожие документы
Еще в разделе: (Показать все результаты (>475) - www.ipa.nw.ru/ )

3. http://www.mrao.cam.ac.uk/~rachael/compphys/examples/minimize.f90
this module contains a subroutine which evaluates the function ! x*exp(-x) which we wish to minimize module x_ex_mod contains subroutine x_ex(x,f) real(kind(1.0d0)) :: x,f f = -x*exp(-x) end subroutine end module ! this program controls the minimization program minimize use nag_f77_e_chapter use x_ex_mod implicit none integer :: ifail,maxcal real(kind(1.0d0)) :: e1,e2,a,b,x,f ! ... allow at most 50 calls to x_ex ifail = 0 ! call NAG call e04abf(x_ex,e1,e2,a,b,maxcal,x,f,ifail) ! ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/~rachael/compphys/examples/minimize.f90 -- 1.9 Кб -- 14.09.2005
Похожие документы

4. http://www.eso.org/~chummel/iau/ESO_VLTI_calibrator_program.txt
Subject: ESO VLTI calibrator program Ladies and gentlemen-- With the coming of the ATs, and the slow movement of MIDI and AMBER into routine operation I think the time has come to improve the general level of interferometric calibrators at the VLTI and their accessibility to users. ... Define database formats to contain information on each calibrator. ... Observing programs be set up with MIDI, AMBER, and possibly VISIR and ISAAC to establish a consistent set of spectrophotometric and visibility data. ...
[ Сохраненная копия ]  Ссылки http://www.eso.org/~chummel/iau/ESO_VLTI_calibrator_program.txt -- 5.2 Кб -- 21.02.2008
Похожие документы

5. Database of Optical Constants -- Level: welcome
The database contains references to the papers, data files and links to the Internet resources related to measurements and calculations of the optical constants in the wavelength interval from X-rays to radio domain. ... References to some useful books and reviews on the subject (e.g. the classical handbooks edited by E.D.Palik) and links to Internet collections of optical constants and personal WWW pages with related software were also placed in the database. You have arrived at our welcome page. ...
[ Сохраненная копия ]  Ссылки http://www.astro.spbu.ru/JPDOC/ -- 10.8 Кб -- 19.11.2010
Похожие документы
Еще в разделе: (Показать все результаты (>326) - www.astro.spbu.ru/ )

6. IDL Program Help Pages
... CCD2FITS: CONVERSION OF CCD FILES TO FITS FORMAT . ... OFILE:Name of output file . ... CCD12BIT: LYNXX IMAGE READER . ... IMAGECUBE: name of output image vector . MEDIAN: IMAGE MEDIANS . ... M: name of output image . ... APPHO,image,rad,cts,nbins,x,y or . APPHO,image,rad,counts,xvec,yvec,col=col,resize=resize . ... APPHOT,image,rad,cts,nbins,x,y . APPHOT,image,rad,counts,xvec,yvec,col=col,resize=resize . ... IMAGE3: output image . ... FILEOUT: name of output image without .gif . ...
[ Сохраненная копия ]  Ссылки http://hea-www.harvard.edu/~swolk/thesis/node85.html -- 6.6 Кб -- 01.10.2012
Похожие документы

7. Summary of Fortran 77 statements
... Executable GOTO statements . ... Input/output statements . ... GOTO statement_number_variable, (snr1, snr2, snr3) - an assigned GOTO statement, jumps to the statement number that equals the statement number variable (an arbitrary number of statement numbers snr are permitted). GOTO statement_number_variable - this is an assigned ordinary GOTO statement, it is a combination of the first one, GOTO snr1, and previous one, GOTO statement_number_variable without a list of permitted alternatives. ...
[ Сохраненная копия ]  Ссылки http://star.arm.ac.uk/f77to90/a2.html -- 15.9 Кб -- 23.03.1996
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/f90/a2.html -- 15.9 Кб -- 23.03.1996
Похожие документы

8. Getting Started in Actor Prolog. Analyzing Web Sites.
In this chapter we will consider two very simple but useful Web agents that I have written on Actor Prolog for my own needs. ... Let us start the Web agent. Fig. ... Start of the Web agent. The Context diagram consists of three blocks: "Logic Programming Sites", "Edit", and "Check". ... Some Web sites that are linked with the logic programming and Prolog are listed in the pulldown list (these addresses are transferred to the "Edit" block from the "Logic Programming Sites" block). ...
[ Сохраненная копия ]  Ссылки http://www.cplire.ru/Lab144/start/e_scan.html -- 13.7 Кб -- 24.09.2007
Похожие документы

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

10. A Program Complex Equipped With a GUI for Investigation of 3D Structure of
... A program packet is developed for the detailed research into the 3D structure of the magnetic fields of solar active regions as well as the overall solar magnetic field. ... Solar activity is the result of motion and interaction of the coronal magnetic fields, so their study is of primary interest of solar physicists. We have developed a program packet for the detailed research into the 3D structure of the magnetic fields of solar active regions as well as the overall solar magnetic field. ...