Найдено документов: 304159 (137 сайтов) ---- Время поиска: 0.73сек. |
Показаны документы, содержащие фрагменты текста из документа
http://www.mrao.cam.ac.uk/~rachael/compphys/examples/tripos1.f90.
http://www.mrao.cam.ac.uk/~rachael/compphys/examples/tripos1.f90.
1. rtftohtml Users Guide - 2 How it works
... In doing so, the filter also reads all of the RTF markup that specifies the destination, paragraph and text styles of the next character. ... If the text was not SPECIAL, process the paragraph style . ... Using the HTML paragraph" markup name, the filter (using the .PTag table) knows what tags to generate for the text. ... For each matched entry in the .TMatch table, the filter uses the HTML "text" markup name, the filter (using the .TTag table, see 5.1.2 ) knows what tags to generate for the text...
[
Сохраненная копия
]
Ссылки http://comet.sai.msu.ru/docs/rtftohtml/rtftohtml-2.html -- 4.2 Кб -- 23.08.1996
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>417) - comet.sai.msu.ru/ )
2. Overview
... SCHED is a program for scheduling Very Long Baseline Interferometer (VLBI) Observations. ... To use SCHED, one normally creates an input file, using any text editor, that describes the schedule. ... The various output files, especially the summary file and the optional plots , provide a lot of information about the schedule that can be used to help the user with optimization. ... The section on Input and Output files gives an overview of the information that SCHED requires. ...
[
Сохраненная копия
]
Ссылки http://www.atnf.csiro.au/people/Tasso.Tzioumis/sched/Overview.html -- 10.8 Кб -- 10.04.2016
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>29575) - www.atnf.csiro.au/ )
3. The buffer cache
... This is called disk buffering , and the memory used for the purpose is called the buffer cache . Since memory is, unfortunately, a finite, nay, scarce resource, the buffer cache usually cannot be big enough (it can't hold all the data one ever wants to use). ... On the one hand, data that is written is often soon read again (e.g., a source code file is saved to a file, then read by the compiler), so putting data that is written in the cache is a good idea. ...
[
Сохраненная копия
]
Ссылки http://star.arm.ac.uk/sag-0.4/node65.html -- 8.4 Кб -- 04.05.1997
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>2969) - star.arm.ac.uk/ )
4. ASP's 2012 Annual Meeting
... Annual Meeting . ... Other Workshops, Conferences and Events . ... Galileo Teacher Training Program Workshop . ... Submit an abstract (please read guidelines below first). ... Please fill out the abstract form carefully since the program committee will be rating the proposals based only on the information you provide. ... For the conference, you may be the lead author on one poster paper, and one oral session: a ten-minute oral paper presentation or an hour-long workshop or a special interest group....
[
Сохраненная копия
]
Ссылки http://www.astrosociety.org/events/2012mtg/abstracts.html -- 20.3 Кб -- 12.06.2012
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>1483) - www.astrosociety.org/ )
5. What is a Device Driver?
... Instead of putting code in each application you write to control each device, you share the code between applications. ... Within the kernel, there are a set of functions, registered with the filesystem, which are called to handle requests to do I/O on ``device special files,'' which are those which represent devices. ... This chapter explains how to write any type of Linux device driver that you might need to, including character, block, SCSI, and network drivers. ...
[
Сохраненная копия
]
Ссылки http://www.arcetri.astro.it/irlab/doc/library/linux/khg/HyperNews/get/devices/whatis.html -- 5.4 Кб -- 23.03.2000
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>8219) - www.arcetri.astro.it/ )
6. http://www.mrao.cam.ac.uk/~rachael/compphys/Lecture%201.pdf
Computational Physics 2007 Rachael Padman rp10001@cam.ac.uk 4-Oct-2007 Computational Physics 2007 1 Structure of the course · General advice about the course, introduction to programming · Introduction to Fortran (~1 lecture) · Numerical methods 5 topics, relating to the five problems (~6 lectures) · Advanced topics (only if time) PLUS · Self study (in PWF or connect to server) 4-Oct-2007 Computational Physics 2007 2 Why... bother? ... 4-Oct-2007 program table implicit none ! ...
[
Текст
]
Ссылки http://www.mrao.cam.ac.uk/~rachael/compphys/Lecture%201.pdf -- 912.2 Кб -- 30.10.2007
Похожие документы
Похожие документы
7. Tony Hallasт?? Cosmic Imaging: Working with RegiStar | Astronomy.com
... Tonight's Sky . ... Observing . ... Sky this Month . ... Tony Hallas . ... Observing Podcasts . ... Astronomy for Kids . ... Imaging Basics . ... Observing springtime deep-sky objects with a large telescope . ... Cosmic Adventures . ... Tony Hallas' Cosmic Imaging . Tony Hallasт?? Cosmic Imaging: Working with RegiStar . ... Get instant access to subscriber content on Astronomy.com! ... Receive news, sky-event information, observing tips, and more from Astronomy's weekly email newsletter. ...
[
Сохраненная копия
]
Ссылки http://www.astronomy.com/magazine/tony-hallas/2011/03/tony-hallas-cosmic-imaging---working-with-registar -- 63.2 Кб -- 10.04.2016
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>5842) - www.astronomy.com/ )
8. http://star.arm.ac.uk/f77to90/code/test_dyn.f90
MODULE DYNA IMPLICIT NONE REAL, DIMENSION(:), ALLOCATABLE, SAVE :: WORK END MODULE DYNA PROGRAM TEST_OF_DYNA USE DYNA IMPLICIT NONE PRINT *, 'MAIN' CALL SUB1 CALL SUB2 PRINT *, 'MAIN' END PROGRAM TEST_OF_DYNA SUBROUTINE SUB1 USE DYNA IMPLICIT NONE ! ... The array WORK is used here REAL :: B REAL, DIMENSION(:), ALLOCATABLE :: A PRINT *, 'SUB2' ALLOCATE ( A(SIZE(WORK)) ) A = 2.* WORK B = SUM(WORK) WORK = A WRITE(*,*) A WRITE(*,*) B WRITE(*,*) WORK END SUBROUTINE SUB2 ...
[
Сохраненная копия
]
Ссылки http://star.arm.ac.uk/f77to90/code/test_dyn.f90 -- 1.8 Кб -- 09.01.1996
[ Сохраненная копия ] Ссылки http://crydee.sai.msu.ru/f90/code/test_dyn.f90 -- 1.8 Кб -- 09.01.1996
Похожие документы
[ Сохраненная копия ] Ссылки http://crydee.sai.msu.ru/f90/code/test_dyn.f90 -- 1.8 Кб -- 09.01.1996
Похожие документы
Еще в разделе:
(Показать все результаты (>6652) - crydee.sai.msu.ru/ )
9. How Ceilidh works, Ceilidh Course Notes, User Guides etc.
. Next: References Up: Ceilidh - On Line C Tutoring System Previous: Conclusions . Ceilidh Licence Details . Ceilidh papers --- How Ceilidh works, marks etc. Ceilidh C Course Notes --- Alternative to what you have been reading. Ceilidh User Guides . Dave.Marshall@cm.cf.ac.uk . Wed Sep 14 10:06:31 BST 1994
[
Сохраненная копия
]
Ссылки http://mavr.sao.ru/hq/sts/linux/book/c_marshall/section2_19_6.html -- 2.3 Кб -- 28.12.2007
[ Сохраненная копия ] Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/section2_19_6.html -- 2.3 Кб -- 11.09.2010
[ Сохраненная копия ] Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/section2_19_6.html -- 2.3 Кб -- 02.10.2012
Похожие документы
[ Сохраненная копия ] Ссылки http://www.sao.ru/hq/sts/linux/book/c_marshall/section2_19_6.html -- 2.3 Кб -- 11.09.2010
[ Сохраненная копия ] Ссылки http://jet.sao.ru/hq/sts/linux/book/c_marshall/section2_19_6.html -- 2.3 Кб -- 02.10.2012
Похожие документы
Еще в разделе:
(Показать все результаты (>1213) - jet.sao.ru/ )
10. Space Shuttle | Astronotes
... Space Flight . ... Earth Satellites . ... 2 Comments The space programmes of the USA and USSR began in a spirit of bitter Cold War rivalry but by the early 1970s internation tensions had eased a little into a [ ] . Continue Reading.. Posted on June 20, 2014 | ... 1 Comment It is almost three years since NASAтАЩs Space Shuttle program flew its last mission in July 2011, after providing a mode of transport into space for various crews over a [ ] . ... Posted on December 18, 2013 | ...
[
Сохраненная копия
]
Ссылки http://www.armaghplanet.com/blog/tag/space-shuttle -- 58.3 Кб -- 09.04.2016
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>2811) - www.armaghplanet.com/ )
11. The AstroStat Slog light curve
... Posts tagged ?light curve? ... Posted by hlee . ... Tags: book , Brieman , cigar , Clinton , data mining , Friedman , Hastie , KDD , light curve , machine learning , SCMA , shaking hands , SN , statistical learning , Supernova , Tibshirani . Category: Algorithms , Cross-Cultural , High-Energy , Jargon , Methods , Quotes , Stat , Uncertainty | Comment . ... Click for what was appeared in arXiv this week. ... Category: arXiv , Data Processing , gamma-ray , Objects , Spectral , Timing , X-ray | ...
[
Сохраненная копия
]
Ссылки http://hea-www.harvard.edu/AstroStat/slog/groundtruth.info/AstroStat/slog/tag/light-curve/index.html -- 34.2 Кб -- 01.03.2014
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>3426) - hea-www.harvard.edu/ )
12. Phil Plait's Bad Astronomy: Info
... Bad Astronomy . ... Mad Science . ... Site Info . ... Public Talks . ... Keep Bad Astronomy close to your heart, and help make me filthy rich. ... Who is this guy who calls himself "The Bad Astronomer?" ... First, yes, I am a real live astronomer (when people ask me what astronomers do, I tell them "They astronom !" ... These are emitted by powerful objects like black holes, exploding stars, and super-dense neutrons stars. ... Finally, am I really a bad astronomer? ... 2008 Phil Plait. ...
[
Сохраненная копия
]
Ссылки http://www.badastronomy.com/info/whois.html -- 22.3 Кб -- 09.04.2016
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>367) - www.badastronomy.com/ )
13. The IRAF Client Display Library (CDL)
... IRAF Group , NOAO , PO Box 26732, Tucson, AZ 85726 . The Client Display Library is a new interface that allows host (non-IRAF) C or FORTRAN programs to display images or draw into the graphics overlay using the XImtool image server and image viewers which emulate the XImtool client protocol such as SAOtng, SAOimage, and IPAC Skyview. ... Image cursor read/write . ... The CDL currently uses a modified IIS Model 70 protocol to communicate with IRAF display servers such as XImtool. ... IRAF.. ...
[
Сохраненная копия
]
Ссылки http://www.stecf.org/conferences/adass/adassVII/fitzpatrickm.html -- 11.6 Кб -- 12.06.2006
[ Сохраненная копия ] Ссылки http://www.adass.org/adass/proceedings/adass97/fitzpatrickm.html -- 11.6 Кб -- 15.05.1998
Похожие документы
[ Сохраненная копия ] Ссылки http://www.adass.org/adass/proceedings/adass97/fitzpatrickm.html -- 11.6 Кб -- 15.05.1998
Похожие документы
Еще в разделе:
(Показать все результаты (>1773) - www.adass.org/ )
14. pyQC: script structure
... overview of pyQC . ... output used by . ... All pyQC scripts and modules share a similar structure. Python offers to group functions, classes, etc. into modules which can be imported by different scripts. ... In order to avoid confusion if names are used by different (especially external) modules, the QC scripts use the 'from' statement only for pyQC modules, i.e.: . ... For other modules, the simple 'import' statement is used: . ... Python modules are also used for keeping script configuration. ...
[
Сохраненная копия
]
Ссылки http://www.eso.org/~qc/tqs/pyqc/script_struct.html -- 12.3 Кб -- 20.05.2014
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>16346) - www.eso.org/ )
15. http://hea.iki.rssi.ru/conf/hea2007/bp-0.2.97/README
This is bp, a Perl Bibliography Package, by Dana Jacobsen (dana@acm.org). ... The package will let you write programs that handle bibliography parsing in a generic fashion for multiple bibliography types. ... It also allows conversion between formats and character sets. It is extendable, meaning that you can write your own routines, so to recognize your format "foo" all you have to do is write your "foo" code that reads, writes, and converts to and from the package's canonical format. ...
[
Сохраненная копия
]
Ссылки http://hea.iki.rssi.ru/conf/hea2007/bp-0.2.97/README -- 4.8 Кб -- 08.12.1996
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>872) - hea.iki.rssi.ru/ )
16. 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
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>284) - www.astro.spbu.ru/ )
17. Stellarium: core/modules/GridLinesMgr.hpp Source File
Stellarium 0.12.3 . ... FileљStructure . ... core . ... 233 љ void azimuthalGridDisplayedChanged( const bool ) const ; . 234 љ void azimuthalGridColorChanged( const Vec3f & newColor) const ; . 235 љ void equatorGridDisplayedChanged( const bool displayed) const ; . 236 љ void equatorGridColorChanged( const Vec3f & newColor) const ; . 237 љ void equatorJ2000GridDisplayedChanged( const bool displayed) const ; . 238 љ void equatorJ2000GridColorChanged( const Vec3f & newColor) const ; . ...
[
Сохраненная копия
]
Ссылки http://astro.uni-altai.ru/~aw/stellarium/api/GridLinesMgr_8hpp_source.html -- 51.7 Кб -- 28.02.2014
Похожие документы
Похожие документы
18. http://lnfm1.sai.msu.ru/grav/english/lecture/filtering/Lab1.doc
... 1 lab at http://lnfm1.sai.msu.ru/grav/english/lecture/filtering/ %--------------------------------------------------- clear; N_ signal =1024; % generating two-sin signal for (k=1:1:N_ signal ) signal (k)=sin(2*pi/10*(k-1))+sin(2*pi/100*(k-1)); end; plot ( signal ); %fast Fourier transform calculation Ftrns_ signal =fft( signal ); %amplitude spectrum calculation apl_ spectrum =abs(Ftrns_ signal ); plot (apl_ ...
[
Текст
]
Ссылки http://lnfm1.sai.msu.ru/grav/english/lecture/filtering/Lab1.doc -- 36.0 Кб -- 13.01.2009
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>307) - lnfm1.sai.msu.ru/ )
19. Astronaut Bio: Mark C. Lee 10/2006
... Mark C. Lee (Colonel, USAF, Ret.) NASA Astronaut (former) . ... EDUCATION: Graduated from Viroqua High School, Viroqua, Wisconsin, in 1970; received a bachelor of science degree in civil engineering from the U.S. Air Force Academy in 1974, and a master of science degree in mechanical engineering from Massachusetts Institute of Technology in 1980. ... NASA EXPERIENCE: Lee was selected as an astronaut candidate by NASA in May 1984. ... Lee retired from NASA and the Air Force effective July 1, 2001. ...
[
Сохраненная копия
]
Ссылки http://www.jsc.nasa.gov/Bios/htmlbios/lee.html -- 9.3 Кб -- 07.07.2015
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>2362) - www.jsc.nasa.gov/ )
20. Descriptors and Apache
A descriptor , also commonly called a file handle is an object that a program uses to read or write an open file, or open network socket, or a variety of other devices. ... The operating system enforces a limit on the number of descriptors that a program can have open at a time. ... One is a kernel limitation, depending on your operating system you will either be able to tune the number of descriptors available to higher numbers (this is frequently called FD_SETSIZE ). ...
[
Сохраненная копия
]
Ссылки http://neptun.sai.msu.su/manual/misc/descriptors.html -- 10.3 Кб -- 01.08.2003
Похожие документы
Похожие документы
Еще в разделе:
(Показать все результаты (>118) - neptun.sai.msu.ru/ )
Астронет | Научная сеть | ГАИШ МГУ | Поиск по МГУ | О проекте | Авторам
Комментарии, вопросы? Пишите: info@astronet.ru или сюда