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

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

Показаны документы, содержащие фрагменты текста из документа
http://www.sai.msu.su/~megera/gimp/mjhammel/gdp/plug-ins/sparkle-3.html.

1. Charge Transfer Efficiency
... The WFPC2 CCDs have a small b ut significant charge transfer efficiency (CTE) problem which causes some signal to be lost when charge is transferred down the chip during readout. This has the effect of making objects at higher row numbers (more charge transfers) appear fainter than they would if they were at low row numbers. The effect depends on the temperature of the CCDs. ... It is also possible that proportional losses for fainter stars, at least with no background, may be larger. ...
[ Сохраненная копия ]  Ссылки http://www.stsci.edu/instrument-news/handbooks/wfpc2/W2_43.html -- 6.5 Кб -- 24.07.1996
Похожие документы
Еще в разделе: (Показать все результаты (>14997) - www.stsci.edu/ )

2. An example logo using various plug-ins
Here are a set of pictures which progress from the original through a couple intermediary images to the final, rather 60ish looking final image. This is the original image, created using some PD fonts and some mucking around with the BCG plug-in. The original logo has been extruded a bit using the displace plug-in. A web is created by using the wave plug-in, duplicating it and rotating it 180 degrees, and adding the two pieces together. The original logo is then placed over that. ...
[ Сохраненная копия ]  Ссылки http://www.sai.msu.su/~megera/gimp/mjhammel/general-logo.html -- 3.6 Кб -- 22.12.2007
Похожие документы

3. Example rc file
... GTK's rc Files . ... pixmap_path "<dir 1>:<dir 2>:<dir 3>:..." # pixmap_path "/usr/include/X11R6/pixmaps:/home/imain/pixmaps" # # style <name> [= <name>] # { # <option> # } # # widget <widget_set> style <style_name> # widget_class <widget_class_set> style <style_name> # Here is a list of all the possible states. ... NORMAL - The normal state of a widget, without the mouse over top of # it, and not being pressed, etc. ... This sets a style called "button". ... GtkButton*" style "main_button" . ...
[ Сохраненная копия ]  Ссылки http://www.sao.ru/cats/~satr/GTK2/sec-examplercfile.html -- 6.7 Кб -- 19.07.2002
Похожие документы

4. Spatial Structure of NGC 6822: An Example for Statistical Modeling of
... Next: Cheating Poisson: A Up: Statistical Analysis Previous: Spatial Models and . ... The spatial distribution of stars in the Local Group dwarf irregular galaxy NGC 6822 has been studied, using recent positions and deep photometry for about 15,000 stars in the galaxy. Based on photometrical data, OB stars and red stars could be studied separately. Spatial statistical tools have been applied to the analysis of the spatial structure. ... Figure: Model selection by the aid of CAIC . ...
[ Сохраненная копия ]  Ссылки http://www.adass.org/adass/proceedings/adass94/pasztorl2.html -- 11.0 Кб -- 03.11.2000
Похожие документы

5. PPEUC Programme - Cosmic Microwave Background Workshop
... Primordial theory review : Dick Bond . Defects and the CMB review : Andy Albrecht . ... Gravitational wave contribution to CMB anisotropies : V.B. Lukash and E.V. Mikheeva . C_l from cosmic strings : Lloyd Knox . Some aspects of CMB anisotropies induced from topological defects : Mairi Sakellariadou . ... CMB anisotropies from scaling sources : Ruth Durrer . ... SZ observations I : Sarah Church . ... Holes in the microwave sky? ... Detecting cosmic strings in the CMB : James Robinson . ...
[ Сохраненная копия ]  Ссылки http://www.mrao.cam.ac.uk/ppeuc/proceedings/cmb_prog.html -- 9.9 Кб -- 24.02.1998
Похожие документы

6. SM - Overloading Keywords
... It is possible to change the meaning of keywords (to `overload' them), but it can be confusing, primarily because your new commands may not behave the same way that this manual claims. ... If you said box in your macro, then overloaded the keyword, you'd have a macro that called itself. ... Another example is that (when overloaded) lines saves the line numbers used, so that you can write a macro to print the top 10 lines of a file (it's called head ). ...
[ Сохраненная копия ]  Ссылки http://www.atnf.csiro.au/computing/software/smongo/sm_16.html -- 5.7 Кб -- 02.10.2012
Похожие документы

7. Worked Example 01
Imagine that you are doing particle physics experiments. You fire a beam of sub-atomic particles of mass 4.0x10 -24 kg into your detector at a speed of 100 m/s. Most pass straight through undeflected, but one of them came out with its mass reduced to 3.0x10 -24 kg, its speed reduced to 80 m/s, and in a direction which was deflected by 2.4 degrees from its original path. You think that it must have ejected a particle of mass 1.0x10 -24 kg. ...
[ Сохраненная копия ]  Ссылки http://www.mso.anu.edu.au/pfrancis/phys1101/questions/Week5Web/Q01/index.html -- 2.1 Кб -- 02.10.2012
Похожие документы

8. Long description of example illustrating floating without clear
This diagram illustrates the effects of floating a box ("inner") and how its "sibling" flows alongside it. ... Since the "inner" box has been floated to the right, all other text flows around it, including that of the "sibling" box (on lines 1 through 5). ... Vertical bars represent the left edge of the floated box. The lines, as they appear in the image, contain: 1 Beginning of body contents. ... Inner 3 Sibling contents. ... contents. 4 of outer contents. ... Inner contents" is blue. ...
[ Сохраненная копия ]  Ссылки http://crydee.sai.msu.ru/~vab/html.doc/css2/images/longdesc/flow-clear-desc.html -- 2.3 Кб -- 01.05.1998
Похожие документы

9. 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
Похожие документы
Еще в разделе: (Показать все результаты (>3163) - hea-www.harvard.edu/ )