canonical basis(【求助】安装并且配置好apache+php+mysql之后该咋办捏)
本文目录
【求助】安装并且配置好apache+php+mysql之后该咋办捏
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file. It contains the
# configuration directives that give the server its instructi***.
# See 《URL:http://www.apache.org/docs/》 for detailed information about
# the directives.
#
# Do NOT simply read the instructi*** in here without understanding
# what they do. They’re here only as hints or reminders. If you are unsure
# c***ult the online docs. You have been warned.
#
# After this file is processed, the server will look for and process
# C:/Apache/Apache/conf/srm.conf and then C:/Apache/Apache/conf/access.conf
# unless you have overridden these with ResourceConfig and/or
# AccessConfig directives here.
#
# The configuration directives are grouped into three basic secti***:
# 1. Directives that control the operation of the Apache server process as a
# whole (the ’global environment’).
# 2. Directives that define the parameters of the ’main’ or ’default’ server,
# which responds to requests that aren’t handled by a virtual host.
# These directives also provide default values for the settings
# of all virtual hosts.
# 3. Settings for virtual hosts, which allow Web requests to be sent to
# different IP addresses or hostnames and have them handled by the
# same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server’s control files begin with “/“ (or “drive:/“ for Win32), the
# server will use that explicit path. If the filenames do *not* begin
# with “/“, the value of ServerRoot is prepended -- so “logs/foo.log“
# with ServerRoot set to “/usr/local/apache“ will be interpreted by the
# server as “/usr/local/apache/logs/foo.log“.
#
# NOTE: Where filenames are specified, you must use forward slashes
# instead of backslashes (e.g., “c:/apache“ instead of “c:\apache“).
# If a drive letter is omitted, the drive on which Apache**** is located
# will be used by default. It is recommended that you always supply
# an explicit drive letter in absolute paths, however, to avoid
# confusion.
#
### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#
#
# ServerType is either inetd, or standalone. Inetd mode is only supported on
# Unix platforms.
#
ServerType standalone
#
# ServerRoot: The top of the directory tree under which the server’s
# configuration, error, and log files are kept.
#
ServerRoot “C:/Apache/Apache“
#
# PidFile: The file in which the server should record its process
# identification number when it starts.
#
PidFile logs/httpd.pid
#
# ScoreBoardFile: File used to store internal server process information.
# Not all architectures require this. But if yours does (you’ll know because
# this file will be created when you run Apache) then you *must* ensure that
# no two invocati*** of Apache share the same scoreboard file.
#
ScoreBoardFile logs/apache_runtime_status
#
# In the standard configuration, the server will process httpd.conf (this
# file, specified by the -f command line option), srm.conf, and access.conf
# in that order. The latter two files are now distributed empty, as it is
# recommended that all directives be kept in a single file for simplicity.
# The commented-out values below are the built-in defaults. You can have the
# server ignore these files altogether by using “/dev/null“ (for Unix) or
# “nul“ (for Win32) for the arguments to the directives.
#
#ResourceConfig conf/srm.conf
#AccessConfig conf/access.conf
#
# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300
#
# KeepAlive: Whether or not to allow persistent connecti*** (more than
# one request per connection). Set to “Off“ to deactivate.
#
KeepAlive On
#
# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100
#
# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 15
#
# Apache on Win32 always creates one child process to handle requests. If it
# dies, another child process is created automatically. Within the child
# process multiple threads handle incoming requests. The next two
# directives control the behaviour of the threads and processes.
#
#
# MaxRequestsPerChild: the number of requests each child process is
# allowed to process before the child dies. The child will exit so
# as to avoid problems after prolonged use when Apache (and maybe the
# libraries it uses) leak memory or other resources. On most systems, this
# isn’t really needed, but a few (such as Solaris) do have notable leaks
# in the libraries. For Win32, set this value to zero (unlimited)
# unless advised otherwise.
#
# NOTE: This value does not include keepalive requests after the initial
# request per connection. For example, if a child process handles
# an initial request and 10 subsequent “keptalive“ requests, it
# would only count as 1 request towards this limit.
#
MaxRequestsPerChild 0
#
# Number of concurrent threads (i.e., requests) the server will allow.
# Set this value according to the resp***iveness of the server (more
# requests active at once means they’re all handled more slowly) and
# the amount of system resources you’ll allow the server to c***ume.
#
ThreadsPerChild 50
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the 《VirtualHost》
# directive.
#
#Listen 3000
#Listen 12.34.56.78:80
#
# BindAddress: You can support virtual hosts with this option. This directive
# is used to tell the server which IP address to listen to. It can either
# contain “*“, an IP address, or a fully qualified Internet domain name.
# See also the 《VirtualHost》 and Listen directives.
#
#BindAddress *
#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule’ lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Please read the file README.DSO in the Apache 1.3 distribution for more
# details about the DSO mechani** and run `apache -l’ for the list of already
# built-in (statically linked and thus always available) modules in your Apache
# binary.
#
# Note: The order in which modules are loaded is important. Don’t change
# the order below without expert advice.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
#LoadModule mime_magic_module modules/mod_mime_magic.so
#LoadModule status_module modules/mod_status.so
#LoadModule info_module modules/mod_info.so
#LoadModule speling_module modules/mod_speling.so
#LoadModule rewrite_module modules/mod_rewrite.so
#LoadModule anon_auth_module modules/mod_auth_anon.so
#LoadModule dbm_auth_module modules/mod_auth_dbm.so
#LoadModule digest_auth_module modules/mod_auth_digest.so
#LoadModule digest_module modules/mod_digest.so
#LoadModule proxy_module modules/mod_proxy.so
#LoadModule cern_meta_module modules/mod_cern_meta.so
#LoadModule expires_module modules/mod_expires.so
#LoadModule headers_module modules/mod_headers.so
#LoadModule usertrack_module modules/mod_usertrack.so
#LoadModule unique_id_module modules/mod_unique_id.so
#
# Rec***truction of the complete module list from all available modules
# (static and shared ones) to achieve correct module execution order.
#
# The modules listed below, without a corresponding LoadModule directive,
# are static bound into the standard Apache binary distribution for Windows.
#
# Note: The order in which modules are loaded is important. Don’t change
# the order below without expert advice.
#
#
ClearModuleList
#AddModule mod_vhost_alias.c
AddModule mod_env.c
AddModule mod_log_config.c
#AddModule mod_mime_magic.c
AddModule mod_mime.c
AddModule mod_negotiation.c
#AddModule mod_status.c
#AddModule mod_info.c
AddModule mod_include.c
AddModule mod_autoindex.c
AddModule mod_dir.c
AddModule mod_isapi.c
AddModule mod_cgi.c
AddModule mod_asis.c
AddModule mod_imap.c
AddModule mod_acti***.c
#AddModule mod_speling.c
AddModule mod_userdir.c
AddModule mod_alias.c
#AddModule mod_rewrite.c
AddModule mod_access.c
AddModule mod_auth.c
#AddModule mod_auth_anon.c
#AddModule mod_auth_dbm.c
#AddModule mod_auth_digest.c
#AddModule mod_digest.c
#AddModule mod_proxy.c
#AddModule mod_cern_meta.c
#AddModule mod_expires.c
#AddModule mod_headers.c
#AddModule mod_usertrack.c
#AddModule mod_unique_id.c
AddModule mod_so.c
AddModule mod_setenvif.c
#
# ExtendedStatus controls whether Apache will generate “full“ status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the “server-status“ handler is called. The default is Off.
#
#ExtendedStatus On
### Section 2: ’Main’ server configuration
#
# The directives in this section set up the values used by the ’main’
# server, which responds to any requests that aren’t handled by a
# 《VirtualHost》 definition. These values also provide defaults for
# any 《VirtualHost》 containers you may define later in the file.
#
# All of these directives may appear inside 《VirtualHost》 containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#
#
# Port: The port to which the standalone server listens. Certain firewall
# products must be configured before Apache can listen to a specific port.
# Other running httpd servers will also interfere with this port. Disable
# all firewall, security, and other services if you encounter problems.
# To help diagnose problems use the Windows NT command NETSTAT -a
#
Port 80
#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents.
#
ServerAdmin lindagloria@126.com
#
# ServerName allows you to set a host name which is sent back to clients for
# your server if it’s different than the one the program would get (i.e., use
# “www“ instead of the host’s real name).
#
# Note: You cannot just invent host names and hope they work. The name you
# define here must be a valid DNS name for your host. If you don’t understand
# this, ask your network administrator.
# If your host doesn’t have a registered DNS name, enter its IP address here.
# You will have to access it by its address (e.g., http://123.45.67.89/)
# anyway, and this will make redirecti*** work in a sensible way.
#
# 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your
# machine always knows itself by this address. If you use Apache strictly for
# local testing and development, you may use 127.0.0.1 as the server name.
#
ServerName localhost
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locati***.
#
DocumentRoot “C:/Apache/Apache/htdocs“
#
# Each directory to which Apache has access, can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the “default“ to be a very restrictive set of
# permissi***.
#
《Directory /》
Opti*** FollowSymLinks
AllowOverride None
《/Directory》
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something’s not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
《Directory “C:/Apache/Apache/htdocs“》
#
# This may also be “None“, “All“, or any combination of “Indexes“,
# “Includes“, “FollowSymLinks“, “ExecCGI“, or “MultiViews“.
#
# Note that “MultiViews“ must be named *explicitly* --- “Opti*** All“
# doesn’t give it to you.
#
Opti*** Indexes FollowSymLinks MultiViews
#
# This controls which opti*** the .htaccess files in directories can
# override. Can also be “All“, or any combination of “Opti***“, “FileInfo“,
# “AuthConfig“, and “Limit“
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
《/Directory》
#
# UserDir: The name of the directory which is appended onto a user’s home
# directory if a ~user request is received.
#
# Under Win32, we do not currently try to determine the home directory of
# a Windows login, so a format such as that below needs to be used. See
# the UserDir documentation for details.
#
《IfModule mod_userdir.c》
UserDir “C:/Apache/Apache/users/“
《/IfModule》
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
#《Directory “C:/Apache/Apache/users“》
# AllowOverride FileInfo AuthConfig Limit
# Opti*** MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# 《Limit GET POST OPTIONS PROPFIND》
# Order allow,deny
# Allow from all
# 《/Limit》
# 《LimitExcept GET POST OPTIONS PROPFIND》
# Order deny,allow
# Deny from all
# 《/LimitExcept》
#《/Directory》
#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index. Separate multiple entries with spaces.
#
《IfModule mod_dir.c》
DirectoryIndex index.html
《/IfModule》
#
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess
#
# The following lines prevent .htaccess files from being viewed by
# Web clients. Since .htaccess files often contain authorization
# information, access is disallowed for security reas***. Comment
# these lines out if you want Web visitors to see the contents of
# .htaccess files. If you change the AccessFileName directive above,
# be sure to make the corresponding changes here.
#
# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
#
《Files ~ “^\.ht“》
Order allow,deny
Deny from all
Satisfy All
《/Files》
#
# CacheNegotiatedDocs: By default, Apache sends “Pragma: no-cache“ with each
# document that was negotiated on the basis of content. This asks proxy
# servers not to cache the document. Uncommenting the following line disables
# this behavior, and proxies will be allowed to cache the documents.
#
#CacheNegotiatedDocs
#
# UseCanonicalName: (new for 1.3) With this setting turned on, whenever
# Apache needs to c***truct a self-referencing URL (a URL that refers back
# to the server the resp***e is coming from) it will use ServerName and
# Port to form a “canonical“ name. With this setting off, Apache will
# use the hostname:port that the client supplied, when possible. This
# also affects SERVER_NAME and SERVER_PORT in CGI scripts.
#
UseCanonicalName On
#
# TypesConfig describes where the mime.types file (or equivalent) is
# to be found.
#
《IfModule mod_mime.c》
TypesConfig conf/mime.types
《/IfModule》
#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensi***.
# If your server contains mostly text or HTML documents, “text/plain“ is
# a good value. If most of your content is binary, such as applicati***
# or images, you may want to use “application/octet-stream“ instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain
#
# The mod_mime_magic module allows the server to use various hints from the
# contents of the file itself to determine its type. The MIMEMagicFile
# directive tells the module where the hint definiti*** are located.
# mod_mime_magic is not part of the default server (you have to add
# it yourself with a LoadModule [see the DSO paragraph in the ’Global
# Environment’ section], or recompile the server and include mod_mime_magic
# as part of the configuration), so it’s enclosed in an 《IfModule》 container.
# This means that the MIMEMagicFile directive will only be processed if the
# module is part of the server.
#
《IfModule mod_mime_magic.c》
MIMEMagicFile conf/magic
《/IfModule》
#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it’d be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off
#
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a 《VirtualHost》
# container, error messages relating to that virtual host will be
# logged here. If you *do* define an error logfile for a 《VirtualHost》
# container, that host’s errors will be logged there and not here.
#
ErrorLog logs/error.log
#
# LogLevel: Control the number of messages logged to the error.log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat “%h %l %u %t \“%r\“ %》s %b \“%{Referer}i\“ \“%{User-Agent}i\““ combined
LogFormat “%h %l %u %t \“%r\“ %》s %b“ common
LogFormat “%{Referer}i -》 %U“ referer
LogFormat “%{User-agent}i“ agent
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a 《VirtualHost》
# container, they will be logged here. Contrariwise, if you *do*
# define per-《VirtualHost》 access logfiles, transacti*** will be
# logged therein and *not* in this file.
#
CustomLog logs/access.log common
#
# If you would like to have agent and referer logfiles, uncomment the
# following directives.
#
#CustomLog logs/referer.log referer
#CustomLog logs/agent.log agent
#
# If you prefer a single logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog logs/access.log combined
#
# Optionally add a line containing the server version and virtual host
# name to server-generated pages (error documents, FTP directory listings,
# mod_status and mod_info output etc., but not CGI generated documents).
# Set to “EMail“ to also include a mailto: link to the ServerAdmin.
# Set to one of: On | Off | EMail
#
ServerSignature On
#
# Apache parses all CGI scripts for the shebang line by default.
# This comment line, the first line of the script, c***ists of the symbols
# pound (#) and exc****tion (!) followed by the path of the program that
# can execute this specific script. For a perl script, with perl**** in
# the C:\Program Files\Perl directory, the shebang line should be:
#!c:/program files/perl/perl
# Note you _must_not_ indent the actual shebang line, and it must be the
# first line of the file. Of course, CGI processing must be enabled by
# the appropriate ScriptAlias or Opti*** ExecCGI directives for the files
# or directory in question.
#
# However, Apa
Matrix的中文翻译是什么
matrix
n.
矩阵
matrix
ma.trix
AHD:
D.J.
K.K.
n.(名词)
【复数】 ma.tri.ces 或 ma.trix.es
A situation or surrounding substance within which something else originates, develops, or is contained:
母体,发源地:可产生、发展或包含其它物的地点或环境:
“Freedom of expression is the matrix, the indispensable condition, of nearly every form of ****dom”(Benjamin N. Cardozo)
“****几乎是任何一种自由形式的母体和不可缺少的条件”(本杰明N.卡多佐)
The womb.
子宫
Anatomy
【解剖学】
The formative cells or tissue of a fingernail, toenail, or tooth.
(指甲或牙齿的)床:手指甲、脚指甲和牙齿的形成细胞或组织
See ground substance
参见 ground substance
Geology
【地质学】
The solid matter in which a fossil or crystal is embedded.
基质,脉石:嵌有化石或水晶的固体物质
Groundmass.
板块
A mold or die.
模型或模具
The principal metal in an alloy, as the iron in steel.
合金中的主要金属,例如钢中的铁
A binding substance, as cement in concrete.
粘合物质,如混凝土中的水泥
Mathematics A rectangular array of numeric or algebraic quantities subject to mathematical operati***.
【数学】 矩阵:用于数学运算的数值量和代数量的矩形阵列
Something resembling such an array, as in the regular formation of elements into columns and rows.
矩阵元素:类似矩形的事物,如元素有规则地形成列或行
Computer Science The network of intersecti*** between input and output leads in a computer, functioning as an encoder or a decoder.
【计算机科学】 模型,压模:计算机中输入和输出之间的交叉网,用作编码器和译码器
Printing
【印刷术】
A mold used in stereotyping and designed to receive positive impressi*** of type or illustrati*** from which metal plates can be cast.Also called mat 2
字模:一种用以铅版印刷并设计以收到符号或图案的良好效果的模子,金属板据此铸成也作 mat2
A metal plate used for casting typefaces.
金属版:浇铸铅字字面的金属版
An electroplated impression of a phonograph record used to make duplicate records.
唱片模版:用于复制唱片的电镀留声机唱片
Middle English matrice
中古英语 matrice
from Old French
源自 古法语
from Late Latin m³ºx} m³trºc-
源自 后期拉丁语 m³ºx} m³trºc-
from Latin
源自 拉丁语
from m³r m³tr- * see m³ter-
源自 m³r m³tr- *参见 m³ter-
matrix
n.
matrices 或 matrixes
〈印〉字模;纸型;
唱片模具
〈数〉矩阵
matrix
n.
(pl. matrixes, -trices ①(生物形成生长的)母体, 母体组织;【解】子宫 ②发源地, 策源地 ③【生】细胞间质, 基质 ④【矿】母岩, 杂矿石, 基岩;【地质】脉石, 填质; (岩石中化石等的)痕印 ⑤【冶】(合金的)基体 ⑥【刷】纸型, 字模 ⑦唱片模子 ⑧【数】阵, 矩阵, 真值表, 母式;【无】矩阵变换电路; 【语】主句、独立句
matrix number
(唱片)复制模版编号
matrix sentence
(转换语法中的)主句, 母句
Rome was the matrix of Western civilization.
罗马是西方文明之母。
absorption matrix
【经济】投入矩阵
accounting matrix
会计矩阵1-
adic matrix 1
进 (矩) 阵
adjacency matrix
邻接矩阵
adjoint matrix
伴随 (矩) 阵
admit-tance matrix
导纳矩阵
aggregation matrix
集结矩阵
almost triangular matrix
准三角形矩阵
alpha matrix of the sum of squares
α平方和矩阵
alternate matrix
交错 (矩) 阵
amplification matrix
放大矩阵
anti-Hermitian matrix
反埃尔米特矩阵
anti-symmetric matrix
反对称 (矩) 阵
associate matrix
【数】共轭转置 (矩) 阵
associated matrix
相伴 (矩) 阵
augmented matrix
增广矩阵
autocorrelation matrix
自相关矩阵
auxiliary matrix
辅助矩阵
band matrix
带状矩阵
basic generated matrix
基本生成矩阵
basis matrix
基矩阵
behavioural matrix
行为矩阵
bidiagonal matrix
两对角线矩阵
binary matrix
二元矩阵
binder matrix
结合混合料 “
black matrix“
黑色矩阵, 黑底
block circulant matrix
分组循环矩阵
bone matrix
骨基质
bordered symmetric matrix
加边对称矩阵
bounded matrix
有界矩阵
branch elastance matrix
分支倒电容矩阵
branch inductance matrix
分支电感矩阵
branch operator matrix
分支算子矩阵brief-
value matrix
【心理】信念价值方阵
canonical matrix
典型矩阵, 正则矩阵, 典型阵, 正则阵
casting matrix
浇铸基体
cell matrix
细胞基质
channel matrix
信道矩阵
characteristic matrix
特征矩阵, 本征矩阵
check matrix
复核表
chroma-key matrix
色度键矩阵
chromosome matrix
染色体基质
circuit matrix
环道阵
circulant matrix
轮换矩阵
citation matrix
(图书)引文源
classical canonical matrix
经典标准矩阵
clay matrix
(出版)泥版
cocycle matrix
余圈矩阵
coefficient matrix
系数矩阵
coherence matrix
相干矩阵
cold plastic matrix
冷塑性基料(常温溶解型基料)
collision matrix
碰撞矩阵
colour matrix
彩色矩阵
column matrix
列矩阵
community matrix
社团(与当地学校)协作型式
commutator matrix
换位矩阵
companion matrix
相伴(矩)阵, 友(矩)阵
completely unimodular matrix
完全幺模矩阵
complex matrix
复矩阵
complex conjugate matrix
复共轭(矩)阵
complex orthogonal matrix
复正交矩阵
composing machine matrix
铸排机字模
composite matrix
合成(矩)阵
compound matrix
复合矩阵
computing matrix
计算矩阵
conformable matrix
可相乘矩阵
congruent matrix
相合矩阵
connection matrix
联络矩阵
c***istently ordered matrix
相容次序 (矩) 阵c***tant-
sum matrix
【统计】常数总额矩阵
c***traint matrix
约束矩阵
control matrix
控制矩阵
controllability matrix
可控性矩阵
copper-rich matrix
富铜基体
core matrix
磁心矩阵
correlation matrix
相关系数矩阵, 相关矩阵
cost matrix
价值矩阵
coupled matrix
耦合矩阵
covarian matrix
协度矩阵
covariance matrix
协方差矩阵
cross-bar addressed dot matrix
正交线寻址点矩阵
cross-products matrix
交叉乘积矩阵
current steering diode matrix
电流导引二极管矩阵
cut matrix
雕刻字模
cut set matrix
割集矩阵
cycle matrix
圈矩阵
cyclic matrix
循环(矩)阵
cytopla**ic matrix
细胞质基质
damping matrix
阻尼矩阵data·
resp***ibility matrix
【信息】数据可靠性真值表
decision matrix
抉择矩阵
decoder matrix
译码矩阵
deformation matrix
形变矩阵
degenerate matrix
退化矩阵
dense matrix
稠密矩阵
density matrix
密度矩阵
derivative matrix
导数矩阵
derogatory matrix
减次(矩)阵
design matrix
设计矩阵
detour matrix
迂回矩阵
diagonal matrix
对角矩阵
diagonally dominant matrix
对角占优矩阵
diamond matrix
镶金刚石基体
difference matrix
差分矩阵
differential matrix
微分矩阵
diode matrix
二极管矩阵
displacement transformation matrix
位移变换矩阵
distance matrix
距离矩阵
distinctive feature matrix
区别性特征矩阵
distribution matrix
分布矩阵
dither matrix
抖动显示阵
divergent matrix
发散矩阵
dot matrix
点矩阵
doubly stochastic matrix
双随机矩阵
dyadic matrix
并矢矩阵
dyadic transfer matrix
并矢传递矩阵
dynamic feedback matrix
动态反馈矩阵
echelon matrix
梯(矩)阵
elastic matrix
弹性矩阵
element stiffness matrix
单元刚度矩阵
elementary matrix
初等(矩)阵
encoder matrix
编码矩阵
energy-impulse matrix
能量-动量矩阵
equivalent matrix
等价矩阵
error matrix
误差矩阵
essentially positive matrix
本性正(矩)阵
fabric matrix
织构结合料
factor matrix
因素方阵
feature matrix
特征矩阵
ferrite core matrix
铁氧体磁心矩阵
ferroelectric memory matrix
铁电存储矩阵
finite matrix
有限矩阵
first order reduced density matrix
一阶约化密度矩阵
first-moment matrix
一阶矩矩阵
function matrix
功能阵; 函数(矩)阵
fundamental matrix
基本矩阵
fuzzy matrix
模糊矩阵
gain matrix
【经济】收益矩阵
game pay-off matrix
【经济】博奕支付矩阵
gamma matrix
γ矩阵
gating matrix
门控矩阵
generalized inverse matrix
广义逆矩阵
generalized stochastic matrix
广义随机矩阵
generator matrix
生成矩阵
glass matrix
玻璃母体, 玻璃基体
gradient matrix
梯度矩阵
gross substitute matrix
毛代替矩阵
gyroscopic matrix
陀螺矩阵
Hi-Lite Matrix
黑底高亮度矩阵
hybrid matrix
混合矩阵
idempotent matrix
幂等矩阵
identity matrix
恒等矩阵
ill-conditioned matrix
病态(矩)阵
image covariance matrix
图象协方差矩阵
impedance matrix
阻抗矩阵
imprimitive matrix
非本原(矩)阵, 非素矩阵
improper orthogonal matrix
非正常正交阵
impulse resp***e matrix
脉冲响应矩阵, 冲击响应阵
incidence matrix
【数】关联矩阵
indefinite matrix
不定(矩)阵
inertial matrix
【力】惯性矩阵
infinite matrix
无限(矩)阵
influence matrix
影响线矩阵
information matrix
信息矩阵
initial displacement matrix
初位移矩阵
input matrix
输入矩阵
input-output matrix
产量模型; 投入产出矩阵
intensity matrix
强度矩阵
invariant factor matrix
不变商矩阵
inverse matrix
逆矩阵, 反矩阵
inverter matrix
反演器矩阵
involutory matrix
对合矩阵
irreducible matrix
不可约矩阵
irreducible system matrix
不可约系统矩阵
kinematic matrix
运动矩阵
labour flow matrix
劳动力流动矩阵
lambda matrix
λ矩阵
large matrix
大矩阵
learning matrix
学习矩阵
lexical matrix
词汇矩阵
light absorbing matrix
光吸收矩阵
light accessible transistor matrix
光可达到的晶体管矩阵
limit matrix
极限(矩)阵
linear matrix
线性矩阵
logic matrix
逻辑矩阵
magnetic-core matrix
磁心矩阵
master matrix
主盘模型
mean matrix
平均矩阵
mean ergodic matrix
平均遍历矩阵, 平均各态历经矩阵
measurement matrix
测量矩阵
memory matrix dzxbn
存储矩阵, 矩阵式存储
metal matrix
金属模版
metallic matrix
金属基体
mirror matrix
镜面矩阵
modal matrix
模态(矩)阵
module matrix
组件矩阵
moment matrix
动差矩阵
monodromy matrix
单值矩阵
monomial matrix
单项(矩)阵
monotone matrix
单调矩阵
mother matrix
母版
multimillion-fibre matrix
多束纤维组合
negative matrix
底板, 底片
阴模
负定矩阵
Niggli matrix
尼格利矩阵
nilpotent matrix
幂零(矩)阵
noncentrality matrix
非中心矩阵
nondecomposable matrix
不可分解矩阵
nonnegative matrix
非负 (矩) 阵
n***ingular matrix
【数】非奇异矩阵
non-square matrix
非方形矩阵
normal matrix
正规 (矩) 阵, 范真值表
nuclear matrix
核矩阵
nucleo-cytopla**ic matrix
核质基质
null matrix
零矩阵
observable matrix
可观测性矩阵
opal matrix
蛋白石矿(基岩)
operational system matrix
运算系统矩阵
operator matrix
算子矩阵
orientation matrix
取向矩阵
original matrix
原矩阵
orthogonal matrix
正交矩阵
output matrix
输出矩阵
***** matrix
纸模
parastrophic matrix
格点矩阵
parent matrix
母体
parity check matrix
均等核对矩阵, 奇偶检查矩阵
partial matrix
子(矩)阵
partitioned matrix
分块矩阵
payoff matrix
支付(矩)阵
pectic matrix
果胶基质
period matrix
周期矩阵
permutation matrix
置换矩阵
phonetic matrix
语音矩阵, 语音格式
photodevice matrix
光电器件阵列
porous matrix
多孔基体
positive matrix
正(矩)阵
positively definite matrix
正定(矩)阵
precedence matrix
上位矩阵, 优先矩阵
predecessor matrix
前趋矩阵
preview matrix
预看混合, 预看矩阵
price matrix
价格矩阵
primary rational matrix
准素有理矩阵
prime matrix
素(矩)阵
primitive connection matrix
原始联络矩阵
principal matrix
主矩阵
product matrix
积(矩)阵
program matrix
程序矩阵
program switching matrix
节目切换矩阵
program timing matrix
定时脉冲发生器, 时标脉冲发生器
progressive matrix
渐进式矩阵
projection matrix
射影矩阵
proper orthogonal matrix
正常正交(矩)阵
proper rational matrix
正常有理矩阵
propogator matrix
传播矩阵
punched matrix
冲压字模
pyramid matrix
锥形矩阵
quasi-diagonal matrix
拟对角线矩阵
quasi-disjunctive equality matrix
拟析取等值母式
quasi-inverse matrix
拟逆阵
radiation matrix
辐射矩阵
random matrix
随机矩阵
rank criterion matrix
秩标准矩阵
rational canonical matrix
有理标准矩阵
real matrix
实(矩)阵
receiver matrix
(电视)接收机矩阵
recovery diode matrix
再生式二极管矩阵
rectangular matrix
矩形(矩)阵, 长方(形矩)阵
reduced adjoint matrix
简化伴随矩阵
reduced cocycle matrix
缩减余圈矩阵
reduced correlation matrix
约化相关矩阵
reduced incidence matrix
约化关联矩阵, 缩减关联矩阵
reducible matrix
可约(矩)阵
reflection matrix
反射矩阵
regression matrix
回归(矩)阵
regular matrix
正则矩阵
regular polynomial matrix
正则多项式矩阵
relational matrix
联系矩阵, 关系矩阵
relatively prime polynomial matrix
互素多项式矩阵
relay matrix
继电器矩阵
representing matrix
表示矩阵
resistor matrix
电阻矩阵
resolvent matrix
预解矩阵
resp***e matrix
反应矩阵
resultant matrix
结式矩阵
return difference matrix
(返)回差矩阵
return ratio matrix
(返)回比矩阵
rotated factor matrix
旋转因子矩阵
row matrix
行矩阵
rubber matrix
橡胶基质; 胶体; 胶料
S matrix of magic tee T
形波导的S矩阵
sample variance matrix
样本方差矩阵
saturable core magnetic matrix
(可)饱和铁芯磁模
scalar matrix
纯量(矩)阵
scattering matrix
散射矩阵, S矩阵
scrambling matrix
密码矩阵
second order reduced density matrix
二阶约化密度矩阵
select matrix
字选矩阵
semi-definite matrix
半定(矩)阵
semi****** matrix
半单矩阵
sensor matrix
读出矩阵
shift matrix
移位矩阵
similar matrix
相似矩阵
single-valued holomorphic matrix
单值全纯矩阵
singular matrix
退化(矩)阵, 降秩(矩)阵
skew Hermitian matrix
【数】斜厄密矩阵
skew symmetric matrix
斜对称矩阵
social matrix
社会母体
soil matrix
土壤基质
sparse matrix
稀疏(矩)阵
spectral density matrix
谱密度矩阵
spin matrix
旋量矩阵
spindle matrix
纺锤体基质
square matrix
方矩阵, 矩形矩阵
stability matrix
【力】稳定矩阵
standard prime matrix
标准素矩阵
state space system matrix
状态空间系统矩阵
state transition matrix
状态转移矩阵
station counting matrix
计站矩阵
step matrix
阶跃矩阵
stiffness matrix
【力】劲度矩阵
stochastic matrix
随机矩阵
storage matrix
存储矩阵
strain matrix
应变矩阵
stress matrix
应力矩阵
strip matrix
带形矩阵
switch matrix
开关矩阵
symmetric matrix
对称矩阵
symplectic matrix
辛(矩)阵
syndrome matrix
伴随式矩阵
system matrix
系数矩阵
technology matrix
技术矩阵
test matrix
试验矩阵
time-domainmatrix
时域矩阵
thin-film switching matrix
薄膜转换矩阵
trade matrix
贸易比例矩阵
transfer matrix
转移矩阵, 转换矩阵
transfer function matrix
转移函数矩阵
transformation matrix
【电】变换矩阵
transition matrix
跃迁矩阵
transition probability matrix
转移概率矩阵
tran**ission matrix
透射矩阵
transposed matrix
换位矩阵, 移项矩阵, 转置矩阵
tree matrix
树矩阵
triangular matrix
三角阵, 三角形矩阵
triple diagonal matrix
三对角线矩阵
triple-coincidence matrix
三重符合矩阵
trunking matrix
二极管开关输出矩阵
two-cyclic matrix
二循环矩阵
two-variable matrix
双变量矩阵
typpe matrix
铜模
unimodular matrix
幺模(矩)阵
unipotent matrix
幂幺矩阵, 幂单矩阵
unit matrix
单位矩阵
unitary matrix
酉(矩)阵
unreduced matrix
不可约矩阵
upper triangular matrix
上三角矩阵
variance matrix
方差矩阵
variance-covariance matrix
方差协方差矩阵
video matrix
视频(信号分配)矩阵
vision switching matrix
图象切换矩阵
wafer matrix
晶片矩阵
wax matrix
蜡模
weakly cyclic matrix
弱循环阵
weight matrix
(加)权矩阵
wire matrix
磁线存储矩阵
zero matrix
零(矩)阵
matrix of a nail
指甲床
matrix of gates
门矩阵
matrix of reachability
可达性矩阵
matrix of scalar product
纯量积的(矩)阵
matrix of self-linking numbers
自环绕数矩阵
matrix of semi-linear transformation
半线性变换的(矩)阵
求统计专业英语词汇
Absolutedeviation,绝对离差
Absolutenumber,绝对数
Absoluteresiduals,绝对残差
Accelerationarray,加速度立体阵
Accelerationinanarbitrarydirection,任意方向上的加速度
Accelerationnormal,法向加速度
Accelerati***pacedimension,加速度空间的维数
Accelerationtangential,切向加速度
Accelerationvector,加速度向量
Acceptablehypothesis,可接受假设
Accumulation,累积
Accuracy,准确度
Actualfrequency,实际频数
Adaptiveestimator,自适应估计量
Addition,相加
Additiontheorem,加法定理
Additivity,可加性
Adjustedrate,调整率
Adjustedvalue,校正值
Admissibleerror,容许误差
Aggregation,聚集性
Alternativehypothesis,备择假设
Amonggroups,组间
Amounts,总量
Analysisofcorrelation,相关分析
Analysisofcovariance,协方差分析
Analysisofregression,回归分析
Analysisoftimeseries,时间序列分析
Analysisofvariance,方差分析
Angulartransformation,角转换
ANOVA(****ysisofvariance),方差分析
ANOVAModels,方差分析模型
Arcing,弧/弧旋
Arcsinetransformation,反正弦变换
Areaunderthecurve,曲线面积
AREG,评估从一个时间点到下一个时间点回归相关时的误差
ARIMA,季节和非季节性单变量模型的极大似然估计
Arithmeticgrid*****,算术格纸
Arithmeticmean,算术平均数
Arrheniusrelation,艾恩尼斯关系
Assessingfit,拟合的评估
Associativelaws,结合律
Asymmetricdistribution,非对称分布
Asymptoticbias,渐近偏倚
Asymptoticefficiency,渐近效率
Asymptoticvariance,渐近方差
Attributablerisk,归因危险度
Attributedata,属性资料
Attribution,属性
Autocorrelation,自相关
Autocorrelationofresiduals,残差的自相关
Average,平均数
Averageconfidenceintervallength,平均置信区间长度
Averagegrowthrate,平均增长率
Barchart,条形图
Bargraph,条形图
Baseperiod,基期
Bayes’theorem,Bayes定理
Bell-shapedcurve,钟形曲线
Bernoullidistribution,伯努力分布
Best-trimestimator,最好切尾估计量
Bias,偏性
Binarylogisticregression,二元逻辑斯蒂回归
Binomialdistribution,二项分布
Bisquare,双平方
BivariateCorrelate,二变量相关
Bivariatenormaldistribution,双变量正态分布
Bivariatenormalpopulation,双变量正态总体
Biweightinterval,双权区间
BiweightM-estimator,双权M估计量
Block,区组/配伍组
BMDP(Biomedicalcomputerprograms),BMDP统计软件包
Boxplots,箱线图/箱尾图
Breakdownbound,崩溃界/崩溃点
Canonicalcorrelation,典型相关
Caption,纵标目
Case-controlstudy,病例对照研究
Categoricalvariable,分类变量
Catenary,悬链线
Cauchydistribution,柯西分布
Cause-and-effectrelati***hip,因果关系
Cell,单元
Censoring,终检
Centerofsymmetry,对称中心
Centeringandscaling,中心化和定标
Centraltendency,集中趋势
Centralvalue,中心值
CHAID-χ2AutomaticInteractionDetector,卡方自动交互检测
Chance,机遇
Chanceerror,随机误差
Chancevariable,随机变量
Characteristicequation,特征方程
Characteristicroot,特征根
Characteristicvector,特征向量
Chebshevcriterionoffit,拟合的切比雪夫准则
Chernofffaces,切尔诺夫脸谱图
Chi-squaretest,卡方检验/χ2检验
Choleskeydecomposition,乔洛斯基分解
Circlechart,圆图
Classinterval,组距
Clas**id-value,组中值
Classupperlimit,组上限
Classifiedvariable,分类变量
Cluster****ysis,聚类分析
Clustersampling,整群抽样
Code,代码
Codeddata,编码数据
Coding,编码
Coefficientofcontingency,列联系数
Coefficientofdetermination,决定系数
Coefficientofmultiplecorrelation,多重相关系数
Coefficientofpartialcorrelation,偏相关系数
Coefficientofproduction-momentcorrelation,积差相关系数
Coefficientofrankcorrelation,等级相关系数
Coefficientofregression,回归系数
Coefficientofskewness,偏度系数
Coefficientofvariation,变异系数
Cohortstudy,队列研究
Column,列
Columneffect,列效应
Columnfactor,列因素
Combinationpool,合并
Combinativetable,组合表
Commonfactor,共性因子
Commonregressioncoefficient,公共回归系数
Commonvalue,共同值
Commonvariance,公共方差
Commonvariation,公共变异
Communalityvariance,共性方差
Comparability,可比性
Comparisonofbathes,批比较
Comparisonvalue,比较值
Compartmentmodel,分部模型
Compassion,伸缩
Complementofanevent,补事件
Completeassociation,完全正相关
Completedissociation,完全不相关
Completestatistics,完备统计量
Completelyrandomizeddesign,完全随机化设计
Compositeevent,联合事件
Compositeevents,复合事件
Concavity,凹性
Conditionalexpectation,条件期望
Conditionallikelihood,条件似然
Conditionalprobability,条件概率
Conditionallylinear,依条件线性
Confidenceinterval,置信区间
Confidencelimit,置信限
Confidencelowerlimit,置信下限
Confidenceupperlimit,置信上限
ConfirmatoryFactorAnalysis,验证性因子分析
Confirmatoryresearch,证实性实验研究
Confoundingfactor,混杂因素
Conjoint,联合分析
C***istency,相合性
C***istencycheck,一致性检验
C***istentasymptoticallynormalestimate,相合渐近正态估计
C***istentestimate,相合估计
C***trainednonlinearregression,受约束非线性回归
C***traint,约束
Contaminateddistribution,污染分布
ContaminatedGausssian,污染高斯分布
Contaminatednormaldistribution,污染正态分布
Contamination,污染
Contaminationmodel,污染模型
Contingencytable,列联表
Contour,边界线
Contributionrate,贡献率
Control,对照
Controlledexperiments,对照实验
Conventionaldepth,常规深度
Convolution,卷积
Correctedfactor,校正因子
Correctedmean,校正均值
Correctioncoefficient,校正系数
Correctness,正确性
Correlationcoefficient,相关系数
Correlationindex,相关指数
Correspondence,对应
Counting,计数
Counts,计数/频数
Covariance,协方差
Covariant,共变
CoxRegression,Cox回归
Criteriaforfitting,拟合准则
Criteriaofleastsquares,最小二乘准则
Criticalratio,临界比
Criticalregion,拒绝域
Criticalvalue,临界值
Cross-overdesign,交叉设计
Cross-section****ysis,横断面分析
Cross-secti***urvey,横断面调查
Crosstabs,交叉表
Cross-tabulationtable,复合表
Cuberoot,立方根
Cumulativedistributionfunction,分布函数
Cumulativeprobability,累计概率
Curvature,曲率/弯曲
Curvature,曲率
Curvefit,曲线拟和
Curvefitting,曲线拟合
Curvilinearregression,曲线回归
Curvilinearrelation,曲线关系
Cut-and-trymethod,尝试法
Cycle,周期
Cyclist,周期性
Dtest,D检验
Dataacquisition,资料收集
Databank,数据库
Datacapacity,数据容量
Datadeficiencies,数据缺乏
Datahandling,数据处理
Datamanipulation,数据处理
Dataprocessing,数据处理
Datareduction,数据缩减
Dataset,数据集
Datasources,数据来源
Datatransformation,数据变换
Datavalidity,数据有效性
Data-in,数据输入
Data-out,数据输出
Deadtime,停滞期
Degreeof****dom,自由度
Degreeofprecision,精密度
Degreeofreliability,可靠性程度
Degression,递减
Densityfunction,密度函数
Densityofdatapoints,数据点的密度
Dependentvariable,应变量/依变量/因变量
Dependentvariable,因变量
Depth,深度
Derivativematrix,导数矩阵
Derivative-****methods,无导数方法
Design,设计
Determinacy,确定性
Determinant,行列式
Determinant,决定因素
Deviation,离差
Deviationfromaverage,离均差
Diagnosticplot,诊断图
Dichotomousvariable,二分变量
Differentialequation,微分方程
Directstandardization,直接标准化法
Discretevariable,离散型变量
DISCRIMINANT,判断
Discriminant****ysis,判别分析
Discriminantcoefficient,判别系数
Discriminantfunction,判别值
Dispersion,散布/分散度
Disproportional,不成比例的
Disproportionatesub-classnumbers,不成比例次级组含量
Distribution****,分布无关性/免分布
Distributi***hape,分布形状
Distribution-****method,任意分布法
Distributivelaws,分配律
Disturbance,随机扰动项
Doseresp***ecurve,剂量反应曲线
Doubleblindmethod,双盲法
Doubleblindtrial,双盲试验
Doubleexponentialdistribution,双指数分布
Doublelogarithmic,双对数
Downwardrank,降秩
Dual-spaceplot,对偶空间图
DUD,无导数方法
Duncan’snewmultiplerangemethod,新复极差法/Duncan新法
Effect,实验效应
Eigenvalue,特征值
Eigenvector,特征向量
Ellipse,椭圆
Empiricaldistribution,经验分布
Empiricalprobability,经验概率单位
Enumerationdata,计数资料
Equalsun-classnumber,相等次级组含量
Equallylikely,等可能
Equivariance,同变性
Error,误差/错误
Errorofestimate,估计误差
ErrortypeI,第一类错误
ErrortypeII,第二类错误
Estimand,被估量
Estimatederrormeansquares,估计误差均方
Estimatederrorsumofsquares,估计误差平方和
Euclideandistance,欧式距离
Event,事件
Event,事件
Exceptionaldatapoint,异常数据点
Expectationplane,期望平面
Expectati***u***ce,期望曲面
Expectedvalues,期望值
Experiment,实验
Experimentalsampling,试验抽样
Experimentalunit,试验单位
Explanatoryvariable,说明变量
Exploratorydata****ysis,探索性数据分析
ExploreSummarize,探索-摘要
Exponentialcurve,指数曲线
Exponentialgrowth,指数式增长
EXSMOOTH,指数平滑方法
Extendedfit,扩充拟合
Extraparameter,附加参数
Extrapolation,外推法
Extremeobservation,末端观测值
Extremes,极端值/极值
Fdistribution,F分布
Ftest,F检验
Factor,因素/因子
Factor****ysis,因子分析
FactorAnalysis,因子分析
Factorscore,因子得分
Factorial,阶乘
Factorialdesign,析因试验设计
Falsenegative,假阴性
Falsenegativeerror,假阴性错误
Familyofdistributi***,分布族
Familyofestimators,估计量族
Fanning,扇面
Fatalityrate,病死率
Fieldinvestigation,现场调查
Fieldsurvey,现场调查
Finitepopulation,有限总体
Finite-sample,有限样本
Firstderivative,一阶导数
Firstprincipalcomponent,第一主成分
Firstquartile,第一四分位数
Fisherinformation,费雪信息量
Fittedvalue,拟合值
Fittingacurve,曲线拟合
Fixedbase,定基
Fluctuation,随机起伏
Forecast,预测
Fourfoldtable,四格表
Fourth,四分点
Fractionblow,左侧比率
Fractionalerror,相对误差
Frequency,频率
Frequencypolygon,频数多边图
Frontierpoint,界限点
Functionrelati***hip,泛函关系
Gammadistribution,伽玛分布
Gaussincrement,高斯增量
Gaussiandistribution,高斯分布/正态分布
Gauss-Newtonincrement,高斯-牛顿增量
Generalcensus,全面普查
GENLOG(Generalizedlinermodels),广义线性模型
Geometricmean,几何平均数
Gini’**eandifference,基尼均差
GLM(Generallinermodels),通用线性模型
Goodnessoffit,拟和优度/配合度
Gradientofdeterminant,行列式的梯度
Graeco-Latinsquare,希腊拉丁方
Grandmean,总均值
Grosserrors,重大错误
Gross-errorsensitivity,大错敏感度
Groupaverages,分组平均
Groupeddata,分组资料
Guessedmean,假定平均数
Half-life,半衰期
HampelM-estimators,汉佩尔M估计量
Happenstance,偶然事件
Harmonicmean,调和均数
Hazardfunction,风险均数
Hazardrate,风险率
Heading,标目
Heavy-taileddistribution,重尾分布
Hessianarray,海森立体阵
Heterogeneity,不同质
Heterogeneityofvariance,方差不齐
Hierarchicalclassification,组内分组
Hierarchicalclusteringmethod,系统聚类法
High-leveragepoint,高**率点
HILOGLINEAR,**列联表的层次对数线性模型
Hinge,折叶点
Histogram,直方图
Historicalcohortstudy,历史性队列研究
Holes,空洞
HOMALS,多重响应分析
Homogeneityofvariance,方差齐性
Homogeneitytest,齐性检验
HuberM-estimators,休伯M估计量
Hyperbola,双曲线
Hypothesistesting,假设检验
Hypotheticaluniverse,假设总体
Impossibleevent,不可能事件
Independence,独立性
Independentvariable,自变量
Index,指标/指数
Indirectstandardization,间接标准化法
Individual,个体
Inferenceband,推断带
Infinitepopulation,无限总体
Infinitelygreat,无穷大
Infinitely**all,无穷小
Influencecurve,影响曲线
Informationcapacity,信息容量
Initialcondition,初始条件
Initialestimate,初始估计值
Initiallevel,最初水平
Interaction,交互作用
Interactionterms,交互作用项
Intercept,截距
Interpolation,内插法
Interquartilerange,四分位距
Intervalestimation,区间估计
Intervalsofequalprobability,等概率区间
Intrinsiccurvature,固有曲率
Invariance,不变性
Inversematrix,逆矩阵
Inverseprobability,逆概率
Inversesinetransformation,反正弦变换
Iteration,迭代
Jacobiandeterminant,雅可比行列式
Jointdistributionfunction,分布函数
Jointprobability,联合概率
Jointprobabilitydistribution,联合概率分布
Kmean**ethod,逐步聚类法
Kaplan-Meier,评估事件的时间长度
Kaplan-Merierchart,Kaplan-Merier图
Kendall’srankcorrelation,Kendall等级相关
Kinetic,动力学
Kolmogorov-Smirnovetest,柯尔莫哥洛夫-斯米尔诺夫检验
Kr***alandWallistest,Kr***al及Wallis检验/多样本的秩和检验/H检验
Kurtosis,峰度
Lackoffit,失拟
Ladderofpowers,幂阶梯
Lag,滞后
Largesample,大样本
Largesampletest,大样本检验
Latinsquare,拉丁方
Latinsquaredesign,拉丁方设计
Leakage,泄漏
Leastfavorableconfiguration,最不利构形
Leastfavorabledistribution,最不利分布
Leastsignificantdifference,最小显著差法
Leastsquaremethod,最小二乘法
Least-absolute-residualsestimates,最小绝对残差估计
Least-absolute-residualsfit,最小绝对残差拟合
Least-absolute-residualsline,最小绝对残差线
Legend,图例
L-estimator,L估计量
L-estimatoroflocation,位置L估计量
L-estimatorofscale,尺度L估计量
Level,水平
Lifeexpectance,预期期望寿命
Lifetable,寿命表
Lifetablemethod,生命表法
Light-taileddistribution,轻尾分布
Likelihoodfunction,似然函数
Likelihoodratio,似然比
linegraph,线图
Linearcorrelation,直线相关
Linearequation,线性方程
Linearprogramming,线性规划
Linearregression,直线回归
LinearRegression,线性回归
Lineartrend,线性趋势
Loading,载荷
Locationandscaleequivariance,位置尺度同变性
Locationequivariance,位置同变性
Locationinvariance,位置不变性
Locati***calefamily,位置尺度族
Logranktest,时序检验
Logarithmiccurve,对数曲线
Logarithmicnormaldistribution,对数正态分布
Logarithmicscale,对数尺度
Logarithmictransformation,对数变换
Logiccheck,逻辑检查
Logisticdistribution,逻辑斯特分布
Logittransformation,Logit转换
LOGLINEAR,**列联表通用模型
Lognormaldistribution,对数正态分布
Lostfunction,损失函数
Lowcorrelation,低度相关
Lowerlimit,下限
Lowest-attainedvariance,最小可达方差
***,最小显著差法的简称
Lurkingvariable,潜在变量
Main effect,主效应
Major heading,主辞标目
Marginal density function,边缘密度函数
Marginal probability,边缘概率
Marginal probability distribution,边缘概率分布
Matched data,配对资料
Matched distribution,匹配过分布
Matching of distribution,分布的匹配
Matching of transformation,变换的匹配
Mathematical expectation,数学期望
Mathematical model,数学模型
Maximum L-estimator,极大极小L 估计量
Maximum likelihood method,最大似然法
Mean,均数
Mean squares between groups,组间均方
Mean squares within group,组内均方
Means (Compare means),均值-均值比较
Median,中位数
Median effective dose,半数效量
Median lethal dose,半数致死量
Median polish,中位数平滑
Median test,中位数检验
Minimal sufficient statistic,最小充分统计量
Minimum distance estimation,最小距离估计
Minimum effective dose,最小有效量
Minimum lethal dose,最小致死量
Minimum variance estimator,最小方差估计量
MINITAB,统计软件包
Minor heading,宾词标目
Missing data,缺失值
Model specification,模型的确定
Modeling Statistics ,模型统计
Models for outliers,离群值模型
Modifying the model,模型的修正
Modulus of continuity,连续性模
Morbidity,发病率
Most favorable configuration,最有利构形
Multidimensional Scaling (ASCAL),**尺度/**标度
Multinomial Logistic Regression ,多项逻辑斯蒂回归
Multiple comparison,多重比较
Multiple correlation ,复相关
Multiple covariance,多元协方差
Multiple linear regression,多元线性回归
Multiple resp***e ,多重选项
Multiple soluti***,多解
Multiplication theorem,乘法定理
Multiresp***e,多元响应
Multi-stage sampling,多阶段抽样
Multivariate T distribution,多元T分布
Mutual exclusive,互不相容
Mutual independence,互相独立
Natural boundary,自然边界
Natural dead,自然死亡
Natural zero,自然零
Negative correlation,负相关
Negative linear correlation,负线性相关
Negatively skewed,负偏
Newman-Keuls method,q检验
NK method,q检验
No statistical significance,无统计意义
Nominal variable,名义变量
Nonc***tancy of variability,变异的非定常性
Nonlinear regression,非线性相关
Nonparametric statistics,非参数统计
Nonparametric test,非参数检验
Nonparametric tests,非参数检验
Normal deviate,正态离差
Normal distribution,正态分布
Normal equation,正规方程组
Normal ranges,正常范围
Normal value,正常值
Nuisance parameter,多余参数/讨厌参数
Null hypothesis,无效假设
Numerical variable,数值变量
Objective function,目标函数
Observation unit,观察单位
Observed value,观察值
One sided test,单侧检验
One-way ****ysis of variance,单因素方差分析
Oneway ANOVA ,单因素方差分析
Open sequential trial,开放型序贯设计
Optrim,优切尾
Optrim efficiency,优切尾效率
Order statistics,顺序统计量
Ordered categories,有序分类
Ordinal logistic regression ,序数逻辑斯蒂回归
Ordinal variable,有序变量
Orthogonal basis,正交基
Orthogonal design,正交试验设计
Orthogonality conditi***,正交条件
ORTHOPLAN,正交设计
Outlier cutoffs,离群值截断点
Outliers,极端值
OVERALS ,多组变量的非线性正规相关
Overshoot,迭代过度
Paired design,配对设计
Paired sample,配对样本
Pairwise slopes,成对斜率
Parabola,抛物线
Parallel tests,平行试验
Parameter,参数
Parametric statistics,参数统计
Parametric test,参数检验
Partial correlation,偏相关
Partial regression,偏回归
Partial sorting,偏排序
Partials residuals,偏残差
Pattern,模式
Pearson curves,皮尔逊曲线
Peeling,退层
Percent bar graph,百分条形图
Percentage,百分比
Percentile,百分位数
Percentile curves,百分位曲线
Periodicity,周期性
Permutation,排列
P-estimator,P估计量
Pie graph,饼图
Pitman estimator,皮特曼估计量
Pivot,枢轴量
Planar,平坦
Planar assumption,平面的假设
PLANCARDS,生成试验的计划卡
Point estimation,点估计
Poisson distribution,泊松分布
Polishing,平滑
Polled standard deviation,合并标准差
Polled variance,合并方差
Polygon,多边图
Polynomial,多项式
Polynomial curve,多项式曲线
Population,总体
Population attributable risk,人群归因危险度
Positive correlation,正相关
Positively skewed,正偏
Posterior distribution,后验分布
Power of a test,检验效能
Precision,精密度
Predicted value,预测值
Preliminary ****ysis,预备性分析
Principal component ****ysis,主成分分析
Prior distribution,先验分布
Prior probability,先验概率
Probabilistic model,概率模型
probability,概率
Probability density,概率密度
Product moment,乘积矩/协方差
Profile trace,截面迹图
Proportion,比/构成比
Proportion allocation in stratified random sampling,按比例分层随机抽样
Proportionate,成比例
Proportionate sub-class numbers,成比例次级组含量
Prospective study,前瞻性调查
Proximities,亲近性
Pseudo F test,近似F检验
Pseudo model,近似模型
Pseudosigma,伪标准差
Purposive sampling,有目的抽样
QR decomposition,QR分解
Quadratic approximation,二次近似
Qualitative classification,属性分类
Qualitative method,定性方法
Quantile-quantile plot,分位数-分位数图/Q-Q图
Quantitative ****ysis,定量分析
Quartile,四分位数
Quick Cluster,快速聚类
Radix sort,基数排序
Random allocation,随机化分组
Random blocks design,随机区组设计
Random event,随机事件
Randomization,随机化
Range,极差/全距
Rank correlation,等级相关
Rank sum test,秩和检验
Rank test,秩检验
Ranked data,等级资料
Rate,比率
Ratio,比例
Raw data,原始资料
Raw residual,原始残差
Rayleigh’s test,雷氏检验
Rayleigh’s Z,雷氏Z值
Reciprocal,倒数
Reciprocal transformation,倒数变换
Recording,记录
Redescending estimators,回降估计量
Reducing dimensi***,降维
Re-expression,重新表达
Reference set,标准组
Region of acceptance,接受域
Regression coefficient,回归系数
Regression sum of square,回归平方和
Rejection point,拒绝点
Relative dispersion,相对离散度
Relative number,相对数
Reliability,可靠性
Reparametrization,重新设置参数
Replication,重复
Report Summaries,报告摘要
Residual sum of square,剩余平方和
Resistance,耐抗性
Resistant line,耐抗线
Resistant technique,耐抗技术
R-estimator of location,位置R估计量
R-estimator of scale,尺度R估计量
Retrospective study,回顾性调查
Ridge trace,岭迹
Ridit ****ysis,Ridit分析
Rotation,旋转
Rounding,舍入
Row,行
Row effects,行效应
Row factor,行因素
RXC table,RXC表
Sample,样本
Sample regression coefficient,样本回归系数
Sample size,样本量
Sample standard deviation,样本标准差
Sampling error,抽样误差
SAS(Statistical ****ysis system ),SAS统计软件包
Scale,尺度/量表
Scatter diagram,散点图
Schematic plot,示意图/简图
Score test,计分检验
Screening,筛检
SEASON,季节分析
Second derivative,二阶导数
Second principal component,第二主成分
SEM (Structural equation modeling),结构化方程模型
Semi-logarithmic graph,半对数图
Semi-logarithmic *****,半对数格纸
Sensitivity curve,敏感度曲线
Sequential ****ysis,贯序分析
Sequential data set,顺序数据集
Sequential design,贯序设计
Sequential method,贯序法
Sequential test,贯序检验法
Serial tests,系列试验
Short-cut method,简捷法
Sigmoid curve,S形曲线
Sign function,正负号函数
Sign test,符号检验
Signed rank,符号秩
Significance test,显著性检验
Significant figure,有效数字
Simple cluster sampling,简单整群抽样
Simple correlation,简单相关
Simple random sampling,简单随机抽样
Simple regression,简单回归
****** table,简单表
Sine estimator,正弦
ubuntu可以商用么
可以****,不过不可以向用户收取Ubuntu的费用,以下是Ubuntu License中的原话:
Must not require royalty payments or any other fee for redistribution or modification.It’s important that you can exercise your rights to this software without having to pay for the privilege, and that you can pass these rights on to other people on exactly the same basis.
就是说重新发布或者修改后都不可以再收费。
全文:
canonical basis是什么意思
canonical basis
【数学】典范基
Tight monomials are the ******st elements in the canonical basis.
紧单项式是典范基中最简单的元素。
Basic的中文翻译
basic:
n. 基本,要素
a. 基本的,碱性的
BASIC语言, 基本高级语言
词形变化:
副词:basically 名词:basicity
例句与用法:
1. These requirements are absolutely basic to a good relati***hip.
这些条件是良好的关系必不可少的。
2. A knowledge of her upbringing is basic to an understanding of her books.
知道她成长的背景是理解她著作的基础。
3. The Church should give more of a lead on basic moral issues.
教会应当就基本道德问题多做出些榜样.
4. The c***titution enshrines the basic rights of all citizens.
宪法中神圣地记载著全体公民的基本权利.
5. Food, clothing and shelter are all basic necessities of life.
衣、 食、 住所是生活的基本必需品.
6. Just follow these few basic precepts and you won’t go far wrong in life.
只要按这几条格言行事,你一生就不会出大错。
7. BASIC is the language most programmers learn first.
BASIC是大多数程序编制者首先学习的语言.
8. In this course, students receive instruction in basic engineering.
在本课程中, 学生能学到基础工程学的知识.
英英解释:
名词basic:
1. a popular programming language that is relatively easy to learn; an acronym for beginner’s all-purpose symbolic instruction code; no longer in general use
2. (usually plural) a necessary commodity for which demand is c***tant
同义词:staple
形容词basic:
1. pertaining to or c***tituting a base or basis
2. reduced to the ******st and most significant form possible without loss of generality
同义词:canonic, canonical
3. serving as a base or starting point
同义词:introductory
4. of or denoting or of the nature of or containing a base
本文相关文章:
![s7200指令库下载官网([求助-西门子PLC200]s7200编程软件中的指令库帮助文件 例如scaling的使用帮助在哪里)](/static/images/nopic/17.jpg)
s7200指令库下载官网([求助-西门子PLC200]s7200编程软件中的指令库帮助文件 例如scaling的使用帮助在哪里)
2025年4月20日 00:00

汉王e920充电(今年想购买一台电纸书,挑来挑去在汉王E920和盛大锦书粉红佳人版中举棋不定,特来求助各位专家,谢谢!)
2025年3月13日 18:25

k650c拆机(求助,K500c I7 D1怎么拆机换固态硬盘)
2025年3月4日 16:30

moto z play缺点(求助大神moto z play花屏,换机还是退货)
2025年2月28日 21:30

htcm8w刷机(求助!!!HTC M8w刷机中途断线,无法开机、也不能进入hboot)
2025年2月25日 02:21

win7如何清理c盘空间(win7,C盘怎么清理,50G的空间,现在只有2G了,求助有用的可以追加分数)
2025年1月2日 09:10

松下tz30参数(求助,松下DMC-TZ30 中文说明书,)
2024年12月18日 02:21

小米线刷一直显示flashing(紧急求助 小米6 线刷miui9提示“flash system e)
2024年12月11日 16:50

佳能官网cameraconnect 安卓(求助!安卓手机安装佳能Canon Connect怎么全是英语有汉语版的吗求链接)
2024年12月3日 01:02

32l05hr通病不开机(创维液晶电视32L05HR红灯亮不开机求助)
2024年7月19日 05:49
更多文章:

安卓手机管家(安卓手机上的手机管家真的在清理手机么为什么每天都会产生垃圾呢)
2024年1月8日 07:01

长安s302是什么车型?s302省道,宿州到睢宁段,能走吗路况怎么样
2024年9月23日 21:10

小黑瓶、小棕瓶、小白瓶、小绿瓶分别是什么?发现60多岁的婆婆在用我兰蔻的小黑瓶,怎么解释她不适合用
2024年2月15日 07:20

怎么更新ios14系统(iphone11怎么升级到ios14)
2023年6月13日 17:20

xbox360体感套装(XBOX360买体感套装还需买摄像头吗)
2024年9月12日 05:00

录音笔什么牌子录音效果好(哪个牌子的录音笔比较好用我想录音乐用的)
2024年2月3日 20:00

佳能5d3相机按键说明(佳能5d3单反相机怎么用 最全使用说明方法)
2024年10月26日 23:10