英文字典中文字典


英文字典中文字典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       







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

equation    音标拼音: [ɪkw'eʒən]
n. 相等,等式,平衡

相等,等式,平衡

equation
方程式 EQ

equation
方程 方程式

equation
n 1: a mathematical statement that two expressions are equal
2: a state of being essentially equal or equivalent; equally
balanced; "on a par with the best" [synonym: {equality},
{equivalence}, {equation}, {par}]
3: the act of regarding as equal [synonym: {equation}, {equating}]

Equation \E*qua"tion\, n. [L. aequatio an equalizing: cf. F.
['e]quation equation. See {Equate}.]
1. A making equal; equal division; equality; equilibrium.
[1913 Webster]

Again the golden day resumed its right,
And ruled in just equation with the night. --Rowe.
[1913 Webster]

2. (Math.) An expression of the condition of equality between
two algebraic quantities or sets of quantities, the sign =
being placed between them; as, a binomial equation; a
quadratic equation; an algebraic equation; a
transcendental equation; an exponential equation; a
logarithmic equation; a differential equation, etc.
[1913 Webster]

3. (Astron.) A quantity to be applied in computing the mean
place or other element of a celestial body; that is, any
one of the several quantities to be added to, or taken
from, its position as calculated on the hypothesis of a
mean uniform motion, in order to find its true position as
resulting from its actual and unequal motion.
[1913 Webster]

{Absolute equation}. See under {Absolute}.

{Equation box}, or {Equational box}, a system of differential
gearing used in spinning machines for regulating the twist
of the yarn. It resembles gearing used in equation clocks
for showing apparent time.

{Equation of the center} (Astron.), the difference between
the place of a planet as supposed to move uniformly in a
circle, and its place as moving in an ellipse.

{Equations of condition} (Math.), equations formed for
deducing the true values of certain quantities from others
on which they depend, when different sets of the latter,
as given by observation, would yield different values of
the quantities sought, and the number of equations that
may be found is greater than the number of unknown
quantities.

{Equation of a curve} (Math.), an equation which expresses
the relation between the co["o]rdinates of every point in
the curve.

{Equation of equinoxes} (Astron.), the difference between the
mean and apparent places of the equinox.

{Equation of payments} (Arith.), the process of finding the
mean time of payment of several sums due at different
times.

{Equation of time} (Astron.), the difference between mean and
apparent time, or between the time of day indicated by the
sun, and that by a perfect clock going uniformly all the
year round.

{Equation clock} or {Equation watch}, a timepiece made to
exhibit the differences between mean solar and apparent
solar time. --Knight.

{Normal equation}. See under {Normal}.

{Personal equation} (Astron.), the difference between an
observed result and the true qualities or peculiarities in
the observer; particularly the difference, in an average
of a large number of observation, between the instant when
an observer notes a phenomenon, as the transit of a star,
and the assumed instant of its actual occurrence; or,
relatively, the difference between these instants as noted
by two observers. It is usually only a fraction of a
second; -- sometimes applied loosely to differences of
judgment or method occasioned by temperamental qualities
of individuals.

{Theory of equations} (Math.), the branch of algebra that
treats of the properties of a single algebraic equation of
any degree containing one unknown quantity.
[1913 Webster]

93 Moby Thesaurus words for "equation":
accommodation, addend, adjustment, antilogarithm, argument,
balance, base, binomial, characteristic, coefficient, coequality,
coextension, combination, complement, congruence, constant,
coordination, correspondence, cosine, cotangent, cube, decimal,
denominator, derivative, determinant, difference, differential,
discriminate, dividend, divisor, e, equality, equalization,
equalizing, equating, equilibration, equilibrium, equipoise,
equipollence, equiponderance, equity, equivalence, equivalency,
evening, evening up, evenness, exponent, exponential, factor,
formula, function, i, identity, increment, index, integral,
integration, justice, levelness, likeness, matrix, minuend,
multiple, multiplier, norm, numerator, par, parallelism, parameter,
parity, permutation, pi, poise, polynomial, power, proportion,
quaternion, quotient, radical, radix, reciprocal, remainder, root,
secant, sine, submultiple, subtrahend, symmetry, tangent, tensor,
variable, vector, versine


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





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


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

































































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


  • How to create a Save Load function on Scratch? - Stack Overflow
    The technique you mentioned is used in many scratch games but there is two option for you when making the save load system You can either do it the simpler way which makes the code SUPER long (not joking) The other way is most scratchers use, encoding the data into a string as short as possible so it's easy to transfer If you want to do the second way, you can have a look at griffpatch's
  • How to create gravity in Scratch? - Stack Overflow
    For people looking to advance their skills in Scratch and add gravity and jumping to your 2D game Simple to use and easily optimizable This can work for platformers or other fun-skilled games
  • Why is my Scratch Cloud Variable not Updating? - Stack Overflow
    0 Cloud variables have limitations, for example, you cannot store letters and symbols in cloud variables Also cloud variables always would take an eternity to reload, like I tried in my scratch game It is better used for keeping track of a WR instead of an encrypted account variable Also fun fact: griffpatch's multiplayer games don't work
  • Cannot save project in Scratch - Stack Overflow
    My project no longer saves in Scratch 3 0 I tried refreshing and going to My Stuff but that did not help The project does not contain any large files, but there are large blocks of code To try t
  • How to change the resolution of the stage in MIT Scratch
    The default resolution of the Stage in MIT Scratch is 480x360 in a 4:3 aspect ratio I want to change it to a 16:9 aspect ratio, with a 720p resolution Is there any source file or script that has
  • What is dockers scratch image? - Stack Overflow
    The scratch image is the most minimal image in Docker This is the base ancestor for all other images The scratch image is actually empty It doesn't contain any folders files The scratch image is mostly used for building other base images For instance, the debian image is built from scratch as such: FROM scratch ADD rootfs tar xz CMD ["bash"] The rootfs tar xz contains all the files
  • Attaching to a docker container with base image scratch?
    You need to add a shell to your empty base image (SCRATCH) in order to attach to it Right now, your image only include an executable, which is not enough As mentioned in issue 17896 FROM scratch literally is an empty, zero-byte image filesystem, where you add everything yourself See for example, the hello-world which, produces an image that's 860 bytes total If you need a shell to attach
  • How to create a cloud variable in Scratch - Stack Overflow
    But when I create a variable (I've used scratch 2 and 3) I get But I would like to get is this: I just watch a youtube tutorial in which was told that for cloud to work you have to be a scratcher for at least 3 month (I have an account for 4 months now) So what do I have to do to get the cloud checkbox?
  • mit scratch - How to convert a SB3 file to an EXE - Stack Overflow
    You could use an sb2 file but you need to use Scratch 2 0 There are developers working on conversion programs that do sb3 to exe but that will take a while I would recommend using Scratch 2 0 if you want to convert your Scratch games to an executable





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