英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

surround    音标拼音: [sɚ'ɑʊnd]
vt. 包围,环绕,围绕
n. 围绕物

包围,环绕,围绕围绕物

surround
n 1: the area in which something exists or lives; "the country--
the flat agricultural surround" [synonym: {environment},
{environs}, {surroundings}, {surround}]
v 1: extend on all sides of simultaneously; encircle; "The
forest surrounds my property" [synonym: {surround}, {environ},
{ring}, {skirt}, {border}]
2: envelop completely; "smother the meat in gravy" [synonym:
{smother}, {surround}]
3: surround so as to force to give up; "The Turks besieged
Vienna" [synonym: {besiege}, {beleaguer}, {surround}, {hem in},
{circumvent}]
4: surround with a wall in order to fortify [synonym: {wall},
{palisade}, {fence}, {fence in}, {surround}]

Surround \Sur*round"\, n.
A method of hunting some animals, as the buffalo, by
surrounding a herd, and driving them over a precipice, into a
ravine, etc. [U.S.] --Baird.
[1913 Webster]


Surround \Sur*round"\, v. t. [imp. & p. p. {Surrounded}; p. pr.
& vb. n. {Surrounding}.] [OF. suronder to overflow, LL.
superundare; fr. L. super over undare to rise in waves,
overflow, fr. unda wave. The English sense is due to the
influence of E. round. See {Super-}, and {Undulate}, and cf.
{Abound}.]
1. To inclose on all sides; to encompass; to environ.
[1913 Webster]

2. To lie or be on all sides of; to encircle; as, a wall
surrounds the city.
[1913 Webster]

But could instead, and ever-during dark
Surrounds me. --Milton.
[1913 Webster]

3. To pass around; to travel about; to circumnavigate; as, to
surround the world. [Obs.] --Fuller.
[1913 Webster]

4. (Mil.) To inclose, as a body of troops, between hostile
forces, so as to cut off means of communication or
retreat; to invest, as a city.
[1913 Webster]

Syn: To encompass; encircle; environ; invest; hem in; fence
about.
[1913 Webster]

184 Moby Thesaurus words for "surround":
ambiance, ambience, atmosphere, begird, beleaguer, beset, besiege,
blockade, bound, box, box in, cage, carry, case, chamber, circle,
circle in, circuit, circuiteer, circulate, circumambulate,
circummigrate, circumnavigate, circumscribe, circumvent, close,
close in, close the circle, come full circle, compass,
compass about, comprise, confine, consume, contain, coop, coop in,
coop up, cordon, cordon off, corral, cover, crate, cycle, define,
delimit, delimitate, demarcate, describe a circle, determine,
devour, dispatch, dispose of, divide, down, eat up, edge, embay,
embed, embosom, embox, embrace, encapsulate, encase, encircle,
enclasp, enclave, enclose, encompass, enfold, enshrine, enshroud,
envelop, environ, environment, environs, enwrap, extend, fence in,
fix, flank, fringe, get away with, get down, gird, girdle,
girdle the globe, go, go about, go around, go out, go round,
go the round, gyre, harass, harry, hedge in, hem, hem in, hold,
house in, impound, imprison, incarcerate, include, ingest,
internalize, invest, involve, jail, keep within, kennel, lap,
lay off, lay siege to, leaguer, lie, limit, loop, make a circuit,
margin, mark boundaries, mark off, mark out, mark the periphery,
mew, mew up, orbit, outline, pack, package, pen, pen in, pocket,
put away, put in, quarantine, rail in, range, reach, reach out,
revolve, rim, ring, rope off, round, run, separate, set the limit,
setting, sheathe, shrine, shroud, shut in, shut up, skirt, smother,
soften up, span, specify, spiral, spread, stable, stake out,
straddle, stretch, stretch out, surroundings, swaddle, swallow,
swathe, sweep, take down, take in, thrust out, tuck in, verge,
wall in, wheel, wrap, wrap about, wrap up, yard, yard up


请选择你想看的字典辞典:
单词字典翻译
surround查看 surround 在百度字典中的解释百度英翻中〔查看〕
surround查看 surround 在Google字典中的解释Google英翻中〔查看〕
surround查看 surround 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • 标准误(standard error)和标准差(standard deviation)有区别吗?
    在日常的科研数据处理中,我们经常会接触到方差 (variance deviation Var)、标准差 (Standard Deviation)、标准误 (Standard Error)和抽样方差 (Sampling Variance)等概念。 在遇到它们时,我总是会疑惑为什么样本方差是除以 n-1 而非 n 、 n-2 、 n-3 等?
  • standard deviation 和standard error的区别,能讲的通俗些吗?
    但是同理,如果你想知道中国人的身高标准差(population standard deviation),可以每次采样1000人,采样了100次。 每次采样得出的“身高标准差”是不一样的,这100次不一样的“身高标准差”本身组成了一个标准差的样本分布(sampling distribution of the standard deviation)。
  • SQL - STDEVP or STDEV and how to use it? - Stack Overflow
    The population standard deviation, generally notated by the Greek letter lower case sigma, is used when the data constitutes the complete population It is difficult to answer your question directly -- sample or population -- because it is difficult to tell what you are working with: a sample or a population It often depends on context
  • standard deviation - What’s the difference between sx and σx in the . . .
    In other words, σx is the exact standard deviation of the data given (with n in the denominator), and sx is an unbiased estimation of the standard deviation of a larger population assuming that the data given is only a sample of that population (i e with n-1 in the denominator)
  • python - Pandas : compute mean or std (standard deviation) over entire . . .
    Unlike pandas, numpy will give the standard deviation of the entire array by default, so there is no need to reshape before taking the standard deviation A couple of additional notes: The numpy approach here is a bit faster than the pandas one, which is generally true when you have the option to accomplish the same thing with either numpy or
  • python - How to get Mean and Standard deviation from a Frequency . . .
    I need to get measures of central tendencies (mean, median ) and measures of deviation (variance , std) for the above data I would also like to plot a boxplot for the values I see that numpy arrays have direct methods for getting mean median and standard deviation (or variance) from list of values
  • python - Standard deviation of a list - Stack Overflow
    In Python 2 7 1, you may calculate standard deviation using numpy std() for: Population std: Just use numpy std() with no additional arguments besides to your data list Sample std: You need to pass ddof (i e Delta Degrees of Freedom) set to 1, as in the following example: numpy std (< your-list >, ddof=1) The divisor used in calculations is N - ddof, where N represents the number of elements
  • python - Standard deviation in numpy - Stack Overflow
    Contrary to the article about Standard deviation, the article about Bessel correction says "This correction is so common that the term "sample variance" and "sample standard deviation" are frequently used to mean the corrected estimators (unbiased sample variation, less biased sample standard deviation), using n − 1 "
  • How to calculate a standard deviation [array] [duplicate]
    3 You already have some good answers on calculating standard deviation, but I'd like to add Knuth's algorithm for calculating variance to the list Knuth's algo performs the calculation in a single pass over the data Standard deviation is then just the square root of variance, as pointed out above
  • Excel: Standard deviation, ignoring #NA and blanks in the range
    I want to calculate the standard deviation with STDDEV P for a range, but I want to ignore #NA and blank cells #NA and blanks should NOT be included in the calculation as 0 I've reached this solu





中文字典-英文字典  2005-2009