1. GAMMADIST
... Prev . Next . ... GAMMADIST(x,alpha,beta,cum) . ... @x < 0 @alpha <= 0 @beta <= 0, GAMMADIST #NUM!. Excel. GAMMADIST(1,2,3,0) 0.07961459. GAMMAINV . ... G_PRODUCT . ...
[
]
http://uneex.mithril.cs.msu.su/static/GnumericDoc_ru/r4365.html -- 4.0 -- 26.09.2011
[
]
http://uneex.lorien.cs.msu.su/static/GnumericDoc_ru/r4365.html -- 4.0 -- 26.09.2011
:
(
(>1395) - uneex.lorien.cs.msu.su/ )
2. unset
... destroy a single variable unset ($foo); // destroy a single element of an array unset ($bar['quux']); // destroy more than one variable unset ($foo1, $foo2, $foo3); . The behavior of unset() inside of a function can vary depending on what type of variable you are attempting to destroy. ... The variable in the calling environment will retain the same value as before unset() was called. function destroy_foo() { global $foo; unset($foo); } $foo = 'bar'; destroy_foo(); echo $foo; . ... bar . ...
[
]
http://old.hcs.cmc.msu.ru/php/function.unset.html -- 7.4 -- 03.02.2002
[
]
http://old.master.cmc.msu.ru/php/function.unset.html -- 7.4 -- 03.02.2002
[
]
http://oit.cmc.msu.ru/php/function.unset.html -- 7.4 -- 03.02.2002
:
(
(>3036) - oit.cmc.msu.ru/ )
3. ExtensionFileFilter
... public class ExtensionFileFilter . ... A convenience implementation of FileFilter that filters out all files except for those type extensions that it knows about. ... Extension - create a new filter that filerts out all files but gif and jpg image files: JFileChooser chooser = new JFileChooser(); ExtensionFileFilter filter = new ExtensionFileFilter( new String{"gif", "jpg"}, "JPEG GIF Images") chooser.addChoosableFileFilter(filter); chooser.showOpenDialog(this); . ... private java.lang.String . ...
[
]
http://angel.cs.msu.su/projects/system/javadoc/client/ExtensionFileFilter.html -- 24.0 -- 20.12.2004
:
(
(>225) - angel.cs.msu.su/ )
4. Long description for example showing how structurally overlapping cells are
This example shows a difference between CSS's table model for HTML and for other document formats. The first, HTML, example is defined by HTML to be illegal, as it would lead to overlapping cells if HTML's rules for layout are followed. ... The diagram depicts how the two examples, the HTML one and the almost identical non-HTML one, might be rendered. ... The rendering of the non-HTML example is on the right, it follows the CSS rules and thus has no overlapping cells. ...
[
]
http://crydee.sai.msu.ru/~vab/html.doc/css2/images/longdesc/table-overlap-desc.html -- 3.1 -- 04.05.1998
:
(
(>43027) - crydee.sai.msu.ru/ )
5. allpy: a9d4a06ed103 repeats/test.py
... line source . ... 4 from repeat_joiner import Interval , RepeatJoiner . ... 7 for line in open ( sys . ... 8 line = line . ... 9 if line : . 10 c1 , c2 , from1 , to1 , from2 , to2 , ori1 , ori2 = line . ... 12 continue # first line . 13 ori1 = True if int ( ori1 ) == 1 else False . ... 15 from1 = int ( from1 ) . ... 17 from2 = int ( from2 ) . ... 20 r1 = Interval ( rj , c1 , from1 , to1 , ori1 ) . 21 r2 = Interval ( rj , c2 , from2 , to2 , ori2 ) . ... 32 for interval in interval_group : . ...
[
]
http://kodomo.fbb.msu.ru/hg/allpy/file/a9d4a06ed103/repeats/test.py -- 13.3 -- 04.02.2013
:
(
(>23015) - kodomo.fbb.msu.ru/ )
6. MySQL Reference Manual for version 3.23.10-alpha. - H Description of MySQL
... A regular expression (regex) is a powerful way of specifying a complex search. MySQL uses regular Henry Spencer's inplementation of regular expressions. ... MySQL uses the extended version. This is a simplistic reference that skips the details. To get more exact information, see Henry Spencer's regex(7) manual page that is included in the source distribution. ... A regular expression describes a set of strings. The simplest regexp is one that has no special characters in it. ...
[
]
http://itpm.msu.su/mysql/Manual_chapter/manual_Regexp.html -- 9.7 -- 15.02.2000
:
(
(>522) - itpm.msu.su/ )
7. Mejlbro L. - Calculus 2c-2, Examples of Description of Surfaces Partial
... Mejlbro L. - Calculus 2c-2, Examples of Description of Surfaces Partial Derivatives, Gradient, Directional Derivative and Taylor's Formula . ... : Calculus 2c-2, Examples of Description of Surfaces Partial Derivatives, Gradient, Directional Derivative and Taylor's Formula . : Mejlbro L. : . ...
[
]
http://lib.mexmat.ru/books/52492 -- 14.9 -- 10.04.2016
:
(
(>9983) - lib.mexmat.ru/ )
8. Change-points at different levels of the hierarchy of EEG segmental...
Brain Research Group >> Research >> Change-point analysis ... << previous next >> . ... When detection of the change-points in alpha band power was performed as in the previous subsection, more than one change-point per second was obtained in average. ... The hypothesis of the hierarchy of EEG segmental descriptions (Kaplan 1998) (see subsection 7.3.2) is a theoretical reason for introducing the adjustment of the change-point detection probability. ...
[
]
http://brain.bio.msu.ru/papers/chp2000/8.htm -- 10.2 -- 03.06.2005
:
(
(>62) - brain.bio.msu.ru/ )
9. Qt Toolkit - QRegExp Class
The QRegExp class provides pattern matching using regular expressions and wildcards. ... QRegExp (constchar*, boolcaseSensitive=TRUE, boolwildcard=FALSE) . ... QRegExp& operator= (constchar*pattern) . bool operator== (constQRegExp&)const . ... bool wildcard ()const . ... QRegExp knows these regexp primitives: . ... Returns TRUE if this regexp is equal to r. Two regexp objects are equal if they have equal pattern strings, case sensitivity options and wildcard options. ...
[
]
http://rtm-cs.sinp.msu.ru/manual/qt/qregexp.html -- 10.5 -- 11.07.1998
:
(
(>716) - rtm-cs.sinp.msu.ru/ )
10. Examples of using the man command
To get an overview of section 1 (one) of the manual: man 1 intro . ... This displays a one line synopsis of each command that has this keyword in its description. To search the online manual for a command with the phrase "copy files": man -k 'copy files' . ... To check what a command does: whatis more more, page (1) - browse or page through a text file . ... To display the manual page for the cp (copy files) command: man cp . ... To print the manual page for the man command: man -t man . ...
[
]
http://comet.sai.msu.ru/UNIXhelp/examples/man.html -- 3.0 -- 17.01.1997
:
(
(>501) - comet.sai.msu.ru/ )
11. FlexWebListPlugin - TWiki - TWiki - (printable)
... It is extended to improve the display of hierarchical web structures, a feature added to TWiki4 and adds more flexibility when used in TWikiApplications. ... This tag iterates over all specified webs and all of their subwebs recursively while using the specified format strings to produce the output. ... subfooter : format string following the output of any subweb; subheader and subfooter are only added if the list of subwebs of the current web is not empty (defaults to footer ) . ... format . ...
[
]
http://dualopt1.cmm.msu.ru/bin/view/TWiki/FlexWebListPlugin?cover=print.nat -- 24.7 -- 28.02.2014
:
(
(>41222) - dualopt1.cmm.msu.ru/ )
12. Fortran DVM language description
Fortran-DVM . ... Language description . ... 2.2 Syntax of FDVM directives . ... 4.2 Distribution of dynamic arrays . ... 6 Remote data specification . ... 6.2 SHADOW type references . ... 6.2.2 Synchronous specification of independent references of SHADOW type for single loop . ... 6.2.5 Asynchronous specification of independent references of SHADOW type . ... 6.3.3 Asynchronous specification of REMOTE type references . ... 6.4.2 Asynchronous specification of REDUCTION type references . ...
[
]
http://sp.cs.msu.ru/dvm/dvmhtm1107/eng/usr/fdvm/fdvmLDe.html -- 13.2 -- 13.02.2006
:
(
(>186) - sp.cs.msu.ru/ )
13. http://mirror.msu.net/pub/gentoo-portage/eclass/mozcoreconf-v3.eclass
... MOZCORECONF_V3} ]]; then PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_ USE ='ncurses,sqlite,ssl,threads' inherit multilib flag-o-matic python-any-r1 versionator IUSE= ${IUSE} custom- cflags custom-optimization DEPEND= virtual/pkgconfig ${PYTHON_DEPS} # @FUNCTION: mozconfig_annotate # @DESCRIPTION: # add an annotated line to . mozconfig # # Example: # mozconfig_annotate building on ultrasparc --enable-js-ultrasparc # = ...
[
]
http://mirror.msu.net/pub/gentoo-portage/eclass/mozcoreconf-v3.eclass -- 8.8 -- 24.03.2016
:
(
(>46816) - mirror.msu.net/ )
14. CDFE => Online Services => Nuclear Reaction Threshold and Energy Values
Online Services | ... This program give to one the possibility to calculate REACTION THRESHOLD and REACTION ENERGY values for any nuclear reaction: . ... Equation for REACTION ENERGY : E react = ( M 1 + M 2 - SUM ) * c 2 , . ... Format of ENERGY value: Energy value energy error . Nucleon Separation Energy Graph Engine is universal program for plotting graph of nucleon separation energies. ... 3) Type and number of nucleon separated (namefield "Reaction") (multiselect field), . ...
[
]
http://cdfe.sinp.msu.ru/services/calc_thr/calc_thr_help.html -- 13.2 -- 21.11.2006
:
(
(>57) - cdfe.sinp.msu.ru/ )
15. rfbr:rest:taskschema [THEP]
... rfbr:rest:taskschema ]] . THEP . ... : . ... . ... . ... 2. description, , , . executable, . ... rfbr/rest/taskschema.1291809812.txt.gz Last modified: 08/122010 15:03 by demichev . ...
[
]
http://theory.sinp.msu.ru/dokuwiki/doku.php?id=rfbr:rest:taskschema&rev=1291809812 -- 29.3 -- 12.04.2016
:
(
(>1085) - theory.sinp.msu.ru/ )
16.
... Linguistic expeditions . ... Logical and stylistic aspects of lexical semantics . ... Linguistic phenomena can be approached and described from various perspectives. ... The approach proposed here is distinctive in that it is based on logic and stylistics, which are usually considered marginal to the description of linguistic phenomena. ... A special focus in the present approach on parallel texts is directly connected with translation . ...
[
]
http://www.lcl.srcc.msu.ru/ENGLISH_VERSHION/mainstream_pages/3_mainstream.htm -- 14.1 -- 24.04.2013
[
]
http://lcl.srcc.msu.ru/ENGLISH_VERSHION/mainstream_pages/3_mainstream.htm -- 14.1 -- 24.04.2013
:
(
(>18) - lcl.srcc.msu.ru/ )
17. :: ChemEl 1.0
... Enter here your expression: Process as chemical reaction (not as a phase composition). ... Preview: . ... "Remove redundant tags" sup sub. ... In the second textbox will appear HTML-code and after the word "Preview" - chemical formula. You can also edit HTML-code in it's textbox and update Preview by "Update preview" button. Button "Copy" is more comfortable than Ctrl+C. "Remove redundant tags" button will delete redundant sup and sub tags. ... HTML-code . ...
[
]
http://geo.web.ru/db/calc/ChemEl.html -- 13.5 -- 10.04.2016
:
(
(>330) - geo.web.ru/ )
18. PLANdbAffy: probe-level annotation database for Affymetrix expression
Database: . ... Affymetrix official site . ... Clone/Gene ID converter . ... Probe set search: . Affymetrix probe set identifier example: "238900_at" . ... Search . Text search: . Gene official symbol (*-wildcard) example: "c1orf*" . Word or phrase in gene official name example: "receptor" . ... Gene search: . ENSEMBL gene identifier example: "ENSG00000026508" . NCBI Entrez Gene identifier example: 7503 . HUGO gene identifier example: 1681 . ...
[
]
http://mouse.belozersky.msu.ru/~ramil/PLANdbAffy_human/ -- 6.1 -- 14.12.2010
:
(
(>401) - mouse.belozersky.msu.ru/ )
19. 3d Map Description
DESCRIPTION OF THE 3d SOLAR EVENT MAP . ... This date coincides with central day of the map marked by solid vertical line (in the present example - 13 July, 2000). ... The following phenomena are presented on the map: coronal holes, filaments, solar flares and the distribution of the solar magnetic field on the source surface (2.5 solar radii). The coronal holes are drawn by irregular solid curves with colors according to the day of observation (light blue, orange and violet). ...
[
]
http://dbserv.sinp.msu.ru/apev/mapdescr.htm -- 4.0 -- 13.03.2008
:
(
(>27) - dbserv.sinp.msu.ru/ )
20. SCOP famyli: C-terminal domain of RNA polymerase alpha subunit
Histone-like proteins from archaea beta-Glucosyltransferase (DNA-modifying) C-terminal domain of RNA polymerase alpha subunit CAP C-terminal domain -like DNA repair glycosylase, 2 C-terminal domains DNA repair protein MutS, domain I DNA-binding protein LAG-1 (CSL) DNA-binding protein LAG-1 (CSL) Endonuclease III Group I mobile intron endonuclease Intein ( protein splicing ... All alpha proteins . ... C-terminal domain of RNA polymerase alpha subunit . ...
[
]
http://mouse.belozersky.msu.ru/npidb/cgi-bin/scop_fa.pl?id=47790 -- 6.4 -- 24.11.2009
[
]
http://monkey.belozersky.msu.ru/npidb/cgi-bin/scop_fa.pl?id=47790 -- 6.4 -- 11.04.2016
:
(
(>4128) - monkey.belozersky.msu.ru/ )