You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trac3r-rust/doc/nalgebra/struct.Complex.html

413 lines
444 KiB

5 years ago
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `Complex` struct in crate `nalgebra`."><meta name="keywords" content="rust, rustlang, rust-lang, Complex"><title>nalgebra::Complex - Rust</title><link rel="stylesheet" type="text/css" href="../normalize.css"><link rel="stylesheet" type="text/css" href="../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../dark.css"><link rel="stylesheet" type="text/css" href="../light.css" id="themeStyle"><script src="../storage.js"></script><noscript><link rel="stylesheet" href="../noscript.css"></noscript><link rel="shortcut icon" href="http://nalgebra.org/img/favicon.ico"><style type="text/css">#crate-search{background-image:url("../down-arrow.svg");}</style></head><body class="rustdoc struct"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><a href='../nalgebra/index.html'><div class='logo-container'><img src='../rust-logo.png' alt='logo'></div></a><p class='location'>Struct Complex</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#fields">Fields</a><div class="sidebar-links"><a href="#structfield.re">re</a><a href="#structfield.im">im</a></div><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.conj">conj</a><a href="#method.i">i</a><a href="#method.inv">inv</a><a href="#method.is_finite">is_finite</a><a href="#method.is_infinite">is_infinite</a><a href="#method.is_nan">is_nan</a><a href="#method.is_normal">is_normal</a><a href="#method.l1_norm">l1_norm</a><a href="#method.new">new</a><a href="#method.norm_sqr">norm_sqr</a><a href="#method.powi">powi</a><a href="#method.powu">powu</a><a href="#method.scale">scale</a><a href="#method.unscale">unscale</a></div><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-AbstractField%3CAdditive%2C%20Multiplicative%3E">AbstractField&lt;Additive, Multiplicative&gt;</a><a href="#impl-AbstractGroup%3CAdditive%3E">AbstractGroup&lt;Additive&gt;</a><a href="#impl-AbstractGroup%3CMultiplicative%3E">AbstractGroup&lt;Multiplicative&gt;</a><a href="#impl-AbstractGroupAbelian%3CAdditive%3E">AbstractGroupAbelian&lt;Additive&gt;</a><a href="#impl-AbstractGroupAbelian%3CMultiplicative%3E">AbstractGroupAbelian&lt;Multiplicative&gt;</a><a href="#impl-AbstractLoop%3CAdditive%3E">AbstractLoop&lt;Additive&gt;</a><a href="#impl-AbstractLoop%3CMultiplicative%3E">AbstractLoop&lt;Multiplicative&gt;</a><a href="#impl-AbstractMagma%3CAdditive%3E">AbstractMagma&lt;Additive&gt;</a><a href="#impl-AbstractMagma%3CMultiplicative%3E">AbstractMagma&lt;Multiplicative&gt;</a><a href="#impl-AbstractModule%3CAdditive%2C%20Additive%2C%20Multiplicative%3E">AbstractModule&lt;Additive, Additive, Multiplicative&gt;</a><a href="#impl-AbstractMonoid%3CAdditive%3E">AbstractMonoid&lt;Additive&gt;</a><a href="#impl-AbstractMonoid%3CMultiplicative%3E">AbstractMonoid&lt;Multiplicative&gt;</a><a href="#impl-AbstractQuasigroup%3CAdditive%3E">AbstractQuasigroup&lt;Additive&gt;</a><a href="#impl-AbstractQuasigroup%3CMultiplicative%3E">AbstractQuasigroup&lt;Multiplicative&gt;</a><a href="#impl-AbstractRing%3CAdditive%2C%20Multiplicative%3E">AbstractRing&lt;Additive, Multiplicative&gt;</a><a href="#impl-AbstractRingCommutative%3CAdditive%2C%20Multiplicative%3E">AbstractRingCommutative&lt;Additive, Multiplicative&gt;</a><a href="#impl-AbstractSemigroup%3CAdditive%3E">AbstractSemigroup&lt;Additive&gt;</a><a href="#impl-AbstractSemigroup%3CMultiplicative%3E">AbstractSemigroup&lt;Multiplicative&gt;</a><a href="#impl-Add%3C%26%27a%20Complex%3CT%3E%3E">Add&lt;&amp;&#39;a Complex&lt;T&gt;&gt;</a><a href="#impl-Add%3C%26%27a%20T%3E">Add&lt;&amp;&#39;a T&gt;</a><a href="#impl-Add%3C%26%27b%20Complex%3CT%3E%3E">Add
</span>pub struct Complex&lt;T&gt; {
pub re: T,
pub im: T,
}</pre></div><div class='docblock'><p>A complex number in Cartesian form.</p>
<h2 id="representation-and-foreign-function-interface-compatibility" class="section-header"><a href="#representation-and-foreign-function-interface-compatibility">Representation and Foreign Function Interface Compatibility</a></h2>
<p><code>Complex&lt;T&gt;</code> is memory layout compatible with an array <code>[T; 2]</code>.</p>
<p>Note that <code>Complex&lt;F&gt;</code> where F is a floating point type is <strong>only</strong> memory
layout compatible with C's complex types, <strong>not</strong> necessarily calling
convention compatible. This means that for FFI you can only pass
<code>Complex&lt;F&gt;</code> behind a pointer, not as a value.</p>
<h2 id="examples" class="section-header"><a href="#examples">Examples</a></h2>
<p>Example of extern function declaration.</p>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">use</span> <span class="ident">num_complex</span>::<span class="ident">Complex</span>;
<span class="kw">use</span> <span class="ident">std</span>::<span class="ident">os</span>::<span class="ident">raw</span>::<span class="ident">c_int</span>;
<span class="kw">extern</span> <span class="string">&quot;C&quot;</span> {
<span class="kw">fn</span> <span class="ident">zaxpy_</span>(<span class="ident">n</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">c_int</span>, <span class="ident">alpha</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">Complex</span><span class="op">&lt;</span><span class="ident">f64</span><span class="op">&gt;</span>,
<span class="ident">x</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">Complex</span><span class="op">&lt;</span><span class="ident">f64</span><span class="op">&gt;</span>, <span class="ident">incx</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">c_int</span>,
<span class="ident">y</span>: <span class="kw-2">*</span><span class="kw-2">mut</span> <span class="ident">Complex</span><span class="op">&lt;</span><span class="ident">f64</span><span class="op">&gt;</span>, <span class="ident">incy</span>: <span class="kw-2">*</span><span class="kw">const</span> <span class="ident">c_int</span>);
}</pre></div>
</div><h2 id='fields' class='fields small-section-header'>
Fields<a href='#fields' class='anchor'></a></h2><span id="structfield.re" class="structfield small-section-header"><a href="#structfield.re" class="anchor field"></a><code id="re.v">re: T</code></span><div class='docblock'><p>Real portion of the complex number</p>
</div><span id="structfield.im" class="structfield small-section-header"><a href="#structfield.im" class="anchor field"></a><code id="im.v">im: T</code></span><div class='docblock'><p>Imaginary portion of the complex number</p>
</div><h2 id='methods' class='small-section-header'>Methods<a href='#methods' class='anchor'></a></h2><h3 id='impl' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#95-132' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new' class="method"><code id='new.v'>pub fn <a href='#method.new' class='fnname'>new</a>(re: T, im: T) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#98-100' title='goto source code'>[src]</a></h4><div class='docblock'><p>Create a new Complex</p>
</div><h4 id='method.i' class="method"><code id='i.v'>pub fn <a href='#method.i' class='fnname'>i</a>() -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#104-106' title='goto source code'>[src]</a></h4><div class='docblock'><p>Returns imaginary unit</p>
</div><h4 id='method.norm_sqr' class="method"><code id='norm_sqr.v'>pub fn <a href='#method.norm_sqr' class='fnname'>norm_sqr</a>(&amp;self) -&gt; T</code><a class='srclink' href='../src/num_complex/lib.rs.html#111-113' title='goto source code'>[src]</a></h4><div class='docblock'><p>Returns the square of the norm (since <code>T</code> doesn't necessarily
have a sqrt function), i.e. <code>re^2 + im^2</code>.</p>
</div><h4 id='method.scale' class="method"><code id='scale.v'>pub fn <a href='#method.scale' class='fnname'>scale</a>(&amp;self, t: T) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#117-119' title='goto source code'>[src]</a></h4><div class='docblock'><p>Multiplies <code>self</code> by the scalar <code>t</code>.</p>
</div><h4 id='method.unscale' class="method"><code id='unscale.v'>pub fn <a href='#method.unscale' class='fnname'>unscale</a>(&amp;self, t: T) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#123-125' title='goto source code'>[src]</a></h4><div class='docblock'><p>Divides <code>self</code> by the scalar <code>t</code>.</p>
</div><h4 id='method.powu' class="method"><code id='powu.v'>pub fn <a href='#method.powu' class='fnname'>powu</a>(&amp;self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#129-131' title='goto source code'>[src]</a></h4><div class='docblock'><p>Raises <code>self</code> to an unsigned integer power.</p>
</div></div><h3 id='impl-1' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#134-156' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.conj' class="method"><code id='conj.v'>pub fn <a href='#method.conj' class='fnname'>conj</a>(&amp;self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#137-139' title='goto source code'>[src]</a></h4><div class='docblock'><p>Returns the complex conjugate. i.e. <code>re - i im</code></p>
</div><h4 id='method.inv' class="method"><code id='inv.v'>pub fn <a href='#method.inv' class='fnname'>inv</a>(&amp;self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#143-149' title='goto source code'>[src]</a></h4><div class='docblock'><p>Returns <code>1/self</code></p>
</div><h4 id='method.powi' class="method"><code id='powi.v'>pub fn <a href='#method.powi' class='fnname'>powi</a>(&amp;self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#153-155' title='goto source code'>[src]</a></h4><div class='docblock'><p>Raises <code>self</code> to a signed integer power.</p>
</div></div><h3 id='impl-2' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/sign/trait.Signed.html" title="trait num_traits::sign::Signed">Signed</a>,&nbsp;</span></code><a href='#impl-2' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#158-166' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.l1_norm' class="method"><code id='l1_norm.v'>pub fn <a href='#method.l1_norm' class='fnname'>l1_norm</a>(&amp;self) -&gt; T</code><a class='srclink' href='../src/num_complex/lib.rs.html#163-165' title='goto source code'>[src]</a></h4><div class='docblock'><p>Returns the L1 norm <code>|re| + |im|</code> -- the <a href="https://en.wikipedia.org/wiki/Taxicab_geometry">Manhattan distance</a> from the origin.</p>
</div></div><h3 id='impl-3' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/float/trait.FloatCore.html" title="trait num_traits::float::FloatCore">FloatCore</a>,&nbsp;</span></code><a href='#impl-3' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#575-599' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.is_nan' class="method"><code id='is_nan.v'>pub fn <a href='#method.is_nan' class='fnname'>is_nan</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#578-580' title='goto source code'>[src]</a></h4><div class='docblock'><p>Checks if the given complex number is NaN</p>
</div><h4 id='method.is_infinite' class="method"><code id='is_infinite.v'>pub fn <a href='#method.is_infinite' class='fnname'>is_infinite</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#584-586' title='goto source code'>[src]</a></h4><div class='docblock'><p>Checks if the given complex number is infinite</p>
</div><h4 id='method.is_finite' class="method"><code id='is_finite.v'>pub fn <a href='#method.is_finite' class='fnname'>is_finite</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#590-592' title='goto source code'>[src]</a></h4><div class='docblock'><p>Checks if the given complex number is finite</p>
</div><h4 id='method.is_normal' class="method"><code id='is_normal.v'>pub fn <a href='#method.is_normal' class='fnname'>is_normal</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#596-598' title='goto source code'>[src]</a></h4><div class='docblock'><p>Checks if the given complex number is normal</p>
</div></div><h2 id='implementations' class='small-section-header'>Trait Implementations<a href='#implementations' class='anchor'></a></h2><div id='implementations-list'><h3 id='impl-Rem%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for &amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#940-947' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output' class="type"><code id='Output.t'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem' class="method hidden"><code id='rem.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#944-946' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-Rem%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1070-1077' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-1' class="type"><code id='Output.t-1'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem-1' class="method hidden"><code id='rem.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#1074-1076' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-Rem%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#742-753' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-2' class="type"><code id='Output.t-2'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem-2' class="method hidden"><code id='rem.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, modulus: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#746-752' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-Rem%3CComplex%3CT%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3CComplex%3CT%3E%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#630-637' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-3' class="type"><code id='Output.t-3'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem-3' class="method hidden"><code id='rem.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#634-636' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-Rem%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#643-650' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-4' class="type"><code id='Output.t-4'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem-4' class="method hidden"><code id='rem.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#647-649' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-Rem%3C%26%27a%20T%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3C%26%27a%20T%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#924-931' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-5' class="type"><code id='Output.t-5'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem-5' class="method hidden"><code id='rem.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#928-930' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-Rem%3C%26%27b%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3C%26%27b%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#617-624' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-6' class="type"><code id='Output.t-6'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem-6' class="method hidden"><code id='rem.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;<br>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#621-623' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-Rem%3CT%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;T&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Rem%3CT%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#932-939' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-7' class="type"><code id='Output.t-7'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>%</code> operator.</p>
</div><h4 id='method.rem-7' class="method hidden"><code id='rem.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#tymethod.rem' class='fnname'>rem</a>(self, other: T) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html#associatedtype.Output" title="type core::ops::arith::Rem::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#936-938' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%</code> operation.</p>
</div></div><h3 id='impl-UpperHex' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html" title="trait core::fmt::UpperHex">UpperHex</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html" title="trait core::fmt::UpperHex">UpperHex</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-UpperHex' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1248-1255' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt' class="method hidden"><code id='fmt.v'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.UpperHex.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1252-1254' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter.</p>
</div></div><h3 id='impl-FromStr' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">FromStr</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">FromStr</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-FromStr' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1374-1384' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Err' class="type"><code id='Err.t'>type <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#associatedtype.Err' class="type">Err</a> = <a class="struct" href="../num_complex/struct.ParseComplexError.html" title="struct num_complex::ParseComplexError">ParseComplexError</a>&lt;&lt;T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">FromStr</a>&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#associatedtype.Err" title="type core::str::FromStr::Err">Err</a>&gt;</code></h4><div class='docblock'><p>The associated error which can be returned from parsing.</p>
</div><h4 id='method.from_str' class="method"><code id='from_str.v'>fn <a href='https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#tymethod.from_str' class='fnname'>from_str</a>(s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html" title="trait core::str::FromStr">FromStr</a>&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/str/trait.FromStr.html#associatedtype.Err" title="type core::str::FromStr::Err">Err</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1381-1383' title='goto source code'>[src]</a></h4><div class='docblock'><p>Parses <code>a +/- bi</code>; <code>ai +/- b</code>; <code>a</code>; or <code>bi</code> where <code>a</code> and <code>b</code> are of type <code>T</code></p>
</div></div><h3 id='impl-LowerHex' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html" title="trait core::fmt::LowerHex">LowerHex</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html" title="trait core::fmt::LowerHex">LowerHex</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-LowerHex' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1239-1246' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-1' class="method hidden"><code id='fmt.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.LowerHex.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1243-1245' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter.</p>
</div></div><h3 id='impl-LowerExp' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.LowerExp.html" title="trait core::fmt::LowerExp">LowerExp</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.LowerExp.html" title="trait core::fmt::LowerExp">LowerExp</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-LowerExp' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1221-1228' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-2' class="method hidden"><code id='fmt.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.LowerExp.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1225-1227' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter.</p>
</div></div><h3 id='impl-Sum%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Sum.html" title="trait core::iter::traits::accum::Sum">Sum</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sum%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1397-1404' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sum' class="method hidden"><code id='sum.v'>fn <a href='https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Sum.html#tymethod.sum' class='fnname'>sum</a>&lt;I&gt;(iter: I) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a>&lt;Item = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;,&nbsp;</span></code><a class='srclink' href='../src/num_complex/lib.rs.html#1398-1403' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Method which takes an iterator and generates <code>Self</code> from the elements by &quot;summing up&quot; the items. <a href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Sum.html#tymethod.sum">Read more</a></p>
</div></div><h3 id='impl-Sum%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Sum.html" title="trait core::iter::traits::accum::Sum">Sum</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'a + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sum%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1406-1413' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sum-1' class="method hidden"><code id='sum.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Sum.html#tymethod.sum' class='fnname'>sum</a>&lt;I&gt;(iter: I) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a>&lt;Item = &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;,&nbsp;</span></code><a class='srclink' href='../src/num_complex/lib.rs.html#1407-1412' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Method which takes an iterator and generates <code>Self</code> from the elements by &quot;summing up&quot; the items. <a href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Sum.html#tymethod.sum">Read more</a></p>
</div></div><h3 id='impl-Eq' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a href='#impl-Eq' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-Display' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-Display' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1212-1219' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-3' class="method hidden"><code id='fmt.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1216-1218' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt">Read more</a></p>
</div></div><h3 id='impl-Product%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Product.html" title="trait core::iter::traits::accum::Product">Product</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Product%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1415-1422' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.product' class="method hidden"><code id='product.v'>fn <a href='https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Product.html#tymethod.product' class='fnname'>product</a>&lt;I&gt;(iter: I) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a>&lt;Item = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;,&nbsp;</span></code><a class='srclink' href='../src/num_complex/lib.rs.html#1416-1421' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Method which takes an iterator and generates <code>Self</code> from the elements by multiplying the items. <a href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Product.html#tymethod.product">Read more</a></p>
</div></div><h3 id='impl-Product%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Product.html" title="trait core::iter::traits::accum::Product">Product</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'a + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Product%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1424-1431' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.product-1' class="method hidden"><code id='product.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Product.html#tymethod.product' class='fnname'>product</a>&lt;I&gt;(iter: I) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;I: <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a>&lt;Item = &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;,&nbsp;</span></code><a class='srclink' href='../src/num_complex/lib.rs.html#1425-1430' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Method which takes an iterator and generates <code>Self</code> from the elements by multiplying the items. <a href="https://doc.rust-lang.org/nightly/core/iter/traits/accum/trait.Product.html#tymethod.product">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20i16%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20i16%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#63-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-8' class="type"><code id='Output.t-8'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow' class="method hidden"><code id='pow.v'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#67-69' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Ci128%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Ci128%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#50-61' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-9' class="type"><code id='Output.t-9'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-1' class="method hidden"><code id='pow.v-1'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#54-60' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Cu8%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Cu8%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#10-39' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-10' class="type"><code id='Output.t-10'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-2' class="method hidden"><code id='pow.v-2'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#14-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20u128%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20u128%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#41-48' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-11' class="type"><code id='Output.t-11'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-3' class="method hidden"><code id='pow.v-3'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#45-47' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Cu128%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Cu128%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#10-39' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-12' class="type"><code id='Output.t-12'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-4' class="method hidden"><code id='pow.v-4'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#14-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Ci32%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Ci32%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#50-61' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-13' class="type"><code id='Output.t-13'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-5' class="method hidden"><code id='pow.v-5'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#54-60' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20i8%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20i8%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#63-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-14' class="type"><code id='Output.t-14'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-6' class="method hidden"><code id='pow.v-6'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#67-69' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Cisize%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Cisize%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#50-61' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-15' class="type"><code id='Output.t-15'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-7' class="method hidden"><code id='pow.v-7'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#54-60' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20isize%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20isize%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#63-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-16' class="type"><code id='Output.t-16'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-8' class="method hidden"><code id='pow.v-8'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#67-69' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Cu16%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Cu16%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#10-39' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-17' class="type"><code id='Output.t-17'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-9' class="method hidden"><code id='pow.v-9'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#14-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Cu32%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Cu32%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#10-39' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-18' class="type"><code id='Output.t-18'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-10' class="method hidden"><code id='pow.v-10'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#14-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Ci8%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Ci8%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#50-61' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-19' class="type"><code id='Output.t-19'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-11' class="method hidden"><code id='pow.v-11'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#54-60' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Ci16%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Ci16%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#50-61' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-20' class="type"><code id='Output.t-20'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-12' class="method hidden"><code id='pow.v-12'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#54-60' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20u32%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20u32%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#41-48' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-21' class="type"><code id='Output.t-21'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-13' class="method hidden"><code id='pow.v-13'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#45-47' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20i64%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20i64%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#63-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-22' class="type"><code id='Output.t-22'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-14' class="method hidden"><code id='pow.v-14'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#67-69' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Ci64%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Ci64%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#50-61' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-23' class="type"><code id='Output.t-23'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-15' class="method hidden"><code id='pow.v-15'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#54-60' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20u16%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20u16%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#41-48' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-24' class="type"><code id='Output.t-24'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-16' class="method hidden"><code id='pow.v-16'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#45-47' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20i128%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20i128%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#63-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-25' class="type"><code id='Output.t-25'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-17' class="method hidden"><code id='pow.v-17'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#67-69' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20u8%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20u8%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#41-48' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-26' class="type"><code id='Output.t-26'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-18' class="method hidden"><code id='pow.v-18'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#45-47' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20u64%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20u64%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#41-48' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-27' class="type"><code id='Output.t-27'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-19' class="method hidden"><code id='pow.v-19'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#45-47' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20usize%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20usize%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#41-48' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-28' class="type"><code id='Output.t-28'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-20' class="method hidden"><code id='pow.v-20'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#45-47' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Cusize%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Cusize%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#10-39' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-29' class="type"><code id='Output.t-29'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-21' class="method hidden"><code id='pow.v-21'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#14-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3Cu64%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3Cu64%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#10-39' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-30' class="type"><code id='Output.t-30'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-22' class="method hidden"><code id='pow.v-22'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#14-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-Pow%3C%26%27b%20i32%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Pow%3C%26%27b%20i32%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/pow.rs.html#63-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-31' class="type"><code id='Output.t-31'>type <a href='../num_traits/pow/trait.Pow.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.pow-23' class="method hidden"><code id='pow.v-23'>fn <a href='../num_traits/pow/trait.Pow.html#tymethod.pow' class='fnname'>pow</a>(self, exp: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/pow/trait.Pow.html" title="trait num_traits::pow::Pow">Pow</a>&lt;&amp;'b <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt;&gt;::<a class="type" href="../num_traits/pow/trait.Pow.html#associatedtype.Output" title="type num_traits::pow::Pow::Output">Output</a></code><a class='srclink' href='../src/num_complex/pow.rs.html#67-69' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>self</code> to the power <code>rhs</code>. <a href="../num_traits/pow/trait.Pow.html#tymethod.pow">Read more</a></p>
</div></div><h3 id='impl-SubAssign%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-SubAssign%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#771-776' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sub_assign' class="method hidden"><code id='sub_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#772-775' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-=</code> operation.</p>
</div></div><h3 id='impl-SubAssign%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-SubAssign%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#824-828' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sub_assign-1' class="method hidden"><code id='sub_assign.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#825-827' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-=</code> operation.</p>
</div></div><h3 id='impl-SubAssign%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-SubAssign%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#852-857' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sub_assign-2' class="method hidden"><code id='sub_assign.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#854-856' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-=</code> operation.</p>
</div></div><h3 id='impl-SubAssign%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-SubAssign%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#858-863' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sub_assign-3' class="method hidden"><code id='sub_assign.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#860-862' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-=</code> operation.</p>
</div></div><h3 id='impl-From%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-From%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#601-606' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from' class="method hidden"><code id='from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(re: T) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#603-605' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-From%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#608-613' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-1' class="method hidden"><code id='from.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(re: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#610-612' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-NumCast' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/cast/trait.NumCast.html" title="trait num_traits::cast::NumCast">NumCast</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../num_traits/cast/trait.NumCast.html" title="trait num_traits::cast::NumCast">NumCast</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-NumCast' class='anchor'></a><a class='srclink' href='../src/num_complex/cast.rs.html#64-71' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-2' class="method hidden"><code id='from.v-2'>fn <a href='../num_traits/cast/trait.NumCast.html#tymethod.from' class='fnname'>from</a>&lt;U&gt;(n: U) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="../num_traits/cast/trait.ToPrimitive.html" title="trait num_traits::cast::ToPrimitive">ToPrimitive</a>,&nbsp;</span></code><a class='srclink' href='../src/num_complex/cast.rs.html#65-70' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Creates a number from another value that can be converted into a primitive via the <code>ToPrimitive</code> trait. <a href="../num_traits/cast/trait.NumCast.html#tymethod.from">Read more</a></p>
</div></div><h3 id='impl-Hash' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a>,&nbsp;</span></code><a href='#impl-Hash' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.hash' class="method hidden"><code id='hash.v'>fn <a href='https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash' class='fnname'>hash</a>&lt;__H&gt;(&amp;self, state: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>__H) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;__H: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,&nbsp;</span></code><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Feeds this value into the given [<code>Hasher</code>]. <a href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash">Read more</a></p>
</div><h4 id='method.hash_slice' class="method hidden"><code id='hash_slice.v'>fn <a href='https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#method.hash_slice' class='fnname'>hash_slice</a>&lt;H&gt;(data: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[Self]</a>, state: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>H) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,&nbsp;</span></code><span class='since' title='Stable since Rust version 1.3.0'>1.3.0</span><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/hash/mod.rs.html#192-198' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Feeds a slice of this type into the given [<code>Hasher</code>]. <a href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#method.hash_slice">Read more</a></p>
</div></div><h3 id='impl-Num' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Num' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1386-1395' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.FromStrRadixErr' class="type"><code id='FromStrRadixErr.t'>type <a href='../num_traits/trait.Num.html#associatedtype.FromStrRadixErr' class="type">FromStrRadixErr</a> = <a class="struct" href="../num_complex/struct.ParseComplexError.html" title="struct num_complex::ParseComplexError">ParseComplexError</a>&lt;&lt;T as <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>&gt;::<a class="type" href="../num_traits/trait.Num.html#associatedtype.FromStrRadixErr" title="type num_traits::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;</code></h4><h4 id='method.from_str_radix' class="method"><code id='from_str_radix.v'>fn <a href='../num_traits/trait.Num.html#tymethod.from_str_radix' class='fnname'>from_str_radix</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;s: &amp;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;radix: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>&gt;::<a class="type" href="../num_traits/trait.Num.html#associatedtype.FromStrRadixErr" title="type num_traits::Num::FromStrRadixErr">FromStrRadixErr</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1390-1394' title='goto source code'>[src]</a></h4><div class='docblock'><p>Parses <code>a +/- bi</code>; <code>ai +/- b</code>; <code>a</code>; or <code>bi</code> where <code>a</code> and <code>b</code> are of type <code>T</code></p>
</div></div><h3 id='impl-Mul%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1052-1059' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-32' class="type"><code id='Output.t-32'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul' class="method hidden"><code id='mul.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#1056-1058' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CT%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;T&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3CT%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#932-939' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-33' class="type"><code id='Output.t-33'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-1' class="method hidden"><code id='mul.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: T) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#936-938' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for &amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#940-947' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-34' class="type"><code id='Output.t-34'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-2' class="method hidden"><code id='mul.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#944-946' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#617-624' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-35' class="type"><code id='Output.t-35'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-3' class="method hidden"><code id='mul.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;<br>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#621-623' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#643-650' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-36' class="type"><code id='Output.t-36'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-4' class="method hidden"><code id='mul.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#647-649' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#690-699' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-37' class="type"><code id='Output.t-37'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-5' class="method hidden"><code id='mul.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#694-698' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27a%20T%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3C%26%27a%20T%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#924-931' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-38' class="type"><code id='Output.t-38'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-6' class="method hidden"><code id='mul.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#928-930' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CComplex%3CT%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Mul%3CComplex%3CT%3E%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#630-637' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-39' class="type"><code id='Output.t-39'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-7' class="method hidden"><code id='mul.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#634-636' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Copy' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-Copy' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-Clone' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-Clone' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.clone' class="method hidden"><code id='clone.v'>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone' class='fnname'>clone</a>(&amp;self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns a copy of the value. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone">Read more</a></p>
</div><h4 id='method.clone_from' class="method hidden"><code id='clone_from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&amp;mut self, source: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self)</code><span class='since' title='Stable since Rust version 1.0.0'>1.0.0</span><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/clone.rs.html#131-133' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from">Read more</a></p>
</div></div><h3 id='impl-Zero' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Zero' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1085-1101' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.zero' class="method hidden"><code id='zero.v'>fn <a href='../num_traits/identities/trait.Zero.html#tymethod.zero' class='fnname'>zero</a>() -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1087-1089' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the additive identity element of <code>Self</code>, <code>0</code>. # Purity <a href="../num_traits/identities/trait.Zero.html#tymethod.zero">Read more</a></p>
</div><h4 id='method.is_zero' class="method hidden"><code id='is_zero.v'>fn <a href='../num_traits/identities/trait.Zero.html#tymethod.is_zero' class='fnname'>is_zero</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#1092-1094' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if <code>self</code> is equal to the additive identity.</p>
</div><h4 id='method.set_zero' class="method hidden"><code id='set_zero.v'>fn <a href='../num_traits/identities/trait.Zero.html#method.set_zero' class='fnname'>set_zero</a>(&amp;mut self)</code><a class='srclink' href='../src/num_complex/lib.rs.html#1097-1100' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Sets <code>self</code> to the additive identity element of <code>Self</code>, <code>0</code>.</p>
</div></div><h3 id='impl-UpperExp' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.UpperExp.html" title="trait core::fmt::UpperExp">UpperExp</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.UpperExp.html" title="trait core::fmt::UpperExp">UpperExp</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-UpperExp' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1230-1237' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-4' class="method hidden"><code id='fmt.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.UpperExp.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1234-1236' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter.</p>
</div></div><h3 id='impl-MulAdd%3C%26%27b%20Complex%3CT%3E%2C%20%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/ops/mul_add/trait.MulAdd.html" title="trait num_traits::ops::mul_add::MulAdd">MulAdd</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/ops/mul_add/trait.MulAdd.html" title="trait num_traits::ops::mul_add::MulAdd">MulAdd</a>&lt;T, T, Output = T&gt; + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-MulAdd%3C%26%27b%20Complex%3CT%3E%2C%20%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#713-720' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-40' class="type"><code id='Output.t-40'>type <a href='../num_traits/ops/mul_add/trait.MulAdd.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the fused multiply-add.</p>
</div><h4 id='method.mul_add' class="method hidden"><code id='mul_add.v'>fn <a href='../num_traits/ops/mul_add/trait.MulAdd.html#tymethod.mul_add' class='fnname'>mul_add</a>(self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, add: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#717-719' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the fused multiply-add operation.</p>
</div></div><h3 id='impl-MulAdd%3CComplex%3CT%3E%2C%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/ops/mul_add/trait.MulAdd.html" title="trait num_traits::ops::mul_add::MulAdd">MulAdd</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/ops/mul_add/trait.MulAdd.html" title="trait num_traits::ops::mul_add::MulAdd">MulAdd</a>&lt;T, T, Output = T&gt; + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-MulAdd%3CComplex%3CT%3E%2C%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#702-712' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-41' class="type"><code id='Output.t-41'>type <a href='../num_traits/ops/mul_add/trait.MulAdd.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the fused multiply-add.</p>
</div><h4 id='method.mul_add-1' class="method hidden"><code id='mul_add.v-1'>fn <a href='../num_traits/ops/mul_add/trait.MulAdd.html#tymethod.mul_add' class='fnname'>mul_add</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, add: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#706-711' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the fused multiply-add operation.</p>
</div></div><h3 id='impl-PartialEq%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-PartialEq%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.eq' class="method hidden"><code id='eq.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class='fnname'>eq</a>(&amp;self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests for <code>self</code> and <code>other</code> values to be equal, and is used by <code>==</code>. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq">Read more</a></p>
</div><h4 id='method.ne' class="method hidden"><code id='ne.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&amp;self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests for <code>!=</code>.</p>
</div></div><h3 id='impl-Debug' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a>,&nbsp;</span></code><a href='#impl-Debug' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-5' class="method hidden"><code id='fmt.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></p>
</div></div><h3 id='impl-Octal' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html" title="trait core::fmt::Octal">Octal</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html" title="trait core::fmt::Octal">Octal</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-Octal' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1257-1264' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-6' class="method hidden"><code id='fmt.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Octal.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1261-1263' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter.</p>
</div></div><h3 id='impl-Add%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#643-650' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-42' class="type"><code id='Output.t-42'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add' class="method hidden"><code id='add.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#647-649' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#924-931' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-43' class="type"><code id='Output.t-43'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-1' class="method hidden"><code id='add.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#928-930' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1034-1041' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-44' class="type"><code id='Output.t-44'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-2' class="method hidden"><code id='add.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#1038-1040' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#630-637' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-45' class="type"><code id='Output.t-45'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-3' class="method hidden"><code id='add.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#634-636' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3C%26%27b%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3C%26%27b%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#617-624' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-46' class="type"><code id='Output.t-46'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-4' class="method hidden"><code id='add.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;<br>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#621-623' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3CComplex%3CT%3E%3E-1' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3CComplex%3CT%3E%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#666-673' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-47' class="type"><code id='Output.t-47'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-5' class="method hidden"><code id='add.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#670-672' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3C%26%27a%20T%3E-1' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for &amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3C%26%27a%20T%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#940-947' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-48' class="type"><code id='Output.t-48'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-6' class="method hidden"><code id='add.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#944-946' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3CT%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;T&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Add%3CT%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#932-939' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-49' class="type"><code id='Output.t-49'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-7' class="method hidden"><code id='add.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, other: T) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#936-938' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-MulAssign%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-MulAssign%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#852-857' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.mul_assign' class="method hidden"><code id='mul_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#854-856' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*=</code> operation.</p>
</div></div><h3 id='impl-MulAssign%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-MulAssign%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#830-835' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.mul_assign-1' class="method hidden"><code id='mul_assign.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#831-834' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*=</code> operation.</p>
</div></div><h3 id='impl-MulAssign%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-MulAssign%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#858-863' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.mul_assign-2' class="method hidden"><code id='mul_assign.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#860-862' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*=</code> operation.</p>
</div></div><h3 id='impl-MulAssign%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-MulAssign%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#778-782' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.mul_assign-3' class="method hidden"><code id='mul_assign.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#779-781' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*=</code> operation.</p>
</div></div><h3 id='impl-Inv' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/ops/inv/trait.Inv.html" title="trait num_traits::ops::inv::Inv">Inv</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Inv' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#904-911' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-50' class="type"><code id='Output.t-50'>type <a href='../num_traits/ops/inv/trait.Inv.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.inv-1' class="method hidden"><code id='inv.v-1'>fn <a href='../num_traits/ops/inv/trait.Inv.html#tymethod.inv' class='fnname'>inv</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/ops/inv/trait.Inv.html" title="trait num_traits::ops::inv::Inv">Inv</a>&gt;::<a class="type" href="../num_traits/ops/inv/trait.Inv.html#associatedtype.Output" title="type num_traits::ops::inv::Inv::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#908-910' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the multiplicative inverse of <code>self</code>. <a href="../num_traits/ops/inv/trait.Inv.html#tymethod.inv">Read more</a></p>
</div></div><h3 id='impl-Inv-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="../num_traits/ops/inv/trait.Inv.html" title="trait num_traits::ops::inv::Inv">Inv</a> for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Inv-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#913-920' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-51' class="type"><code id='Output.t-51'>type <a href='../num_traits/ops/inv/trait.Inv.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The result after applying the operator.</p>
</div><h4 id='method.inv-2' class="method hidden"><code id='inv.v-2'>fn <a href='../num_traits/ops/inv/trait.Inv.html#tymethod.inv' class='fnname'>inv</a>(self) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="../num_traits/ops/inv/trait.Inv.html" title="trait num_traits::ops::inv::Inv">Inv</a>&gt;::<a class="type" href="../num_traits/ops/inv/trait.Inv.html#associatedtype.Output" title="type num_traits::ops::inv::Inv::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#917-919' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the multiplicative inverse of <code>self</code>. <a href="../num_traits/ops/inv/trait.Inv.html#tymethod.inv">Read more</a></p>
</div></div><h3 id='impl-Div%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#924-931' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-52' class="type"><code id='Output.t-52'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div' class="method hidden"><code id='div.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#928-930' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3C%26%27b%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3C%26%27b%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#617-624' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-53' class="type"><code id='Output.t-53'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-1' class="method hidden"><code id='div.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;<br>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#621-623' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#643-650' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-54' class="type"><code id='Output.t-54'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-2' class="method hidden"><code id='div.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#647-649' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1061-1068' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-55' class="type"><code id='Output.t-55'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-3' class="method hidden"><code id='div.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#1065-1067' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#726-736' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-56' class="type"><code id='Output.t-56'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-4' class="method hidden"><code id='div.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#730-735' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3CComplex%3CT%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3CComplex%3CT%3E%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#630-637' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-57' class="type"><code id='Output.t-57'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-5' class="method hidden"><code id='div.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#634-636' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3CT%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;T&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3CT%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#932-939' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-58' class="type"><code id='Output.t-58'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-6' class="method hidden"><code id='div.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: T) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#936-938' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3C%26%27a%20T%3E-1' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for &amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Div%3C%26%27a%20T%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#940-947' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-59' class="type"><code id='Output.t-59'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-7' class="method hidden"><code id='div.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#944-946' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-DivAssign%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-DivAssign%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#858-863' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.div_assign' class="method hidden"><code id='div_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#860-862' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/=</code> operation.</p>
</div></div><h3 id='impl-DivAssign%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-DivAssign%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#806-810' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.div_assign-1' class="method hidden"><code id='div_assign.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#807-809' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/=</code> operation.</p>
</div></div><h3 id='impl-DivAssign%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-DivAssign%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#837-842' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.div_assign-2' class="method hidden"><code id='div_assign.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#838-841' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/=</code> operation.</p>
</div></div><h3 id='impl-DivAssign%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-DivAssign%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#852-857' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.div_assign-3' class="method hidden"><code id='div_assign.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#854-856' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/=</code> operation.</p>
</div></div><h3 id='impl-Neg' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Neg' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#886-893' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-60' class="type"><code id='Output.t-60'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.neg' class="method hidden"><code id='neg.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output" title="type core::ops::arith::Neg::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#890-892' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the unary <code>-</code> operation.</p>
</div></div><h3 id='impl-Neg-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a> for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Neg-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#895-902' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-61' class="type"><code id='Output.t-61'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.neg-1' class="method hidden"><code id='neg.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output" title="type core::ops::arith::Neg::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#899-901' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the unary <code>-</code> operation.</p>
</div></div><h3 id='impl-AddAssign%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-AddAssign%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#852-857' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.add_assign' class="method hidden"><code id='add_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#854-856' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+=</code> operation.</p>
</div></div><h3 id='impl-AddAssign%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-AddAssign%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#858-863' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.add_assign-1' class="method hidden"><code id='add_assign.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#860-862' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+=</code> operation.</p>
</div></div><h3 id='impl-AddAssign%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-AddAssign%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#818-822' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.add_assign-2' class="method hidden"><code id='add_assign.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#819-821' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+=</code> operation.</p>
</div></div><h3 id='impl-AddAssign%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-AddAssign%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#764-769' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.add_assign-3' class="method hidden"><code id='add_assign.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#765-768' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+=</code> operation.</p>
</div></div><h3 id='impl-Default' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/default/trait.Default.html" title="trait core::default::Default">Default</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/default/trait.Default.html" title="trait core::default::Default">Default</a>,&nbsp;</span></code><a href='#impl-Default' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.default' class="method hidden"><code id='default.v'>fn <a href='https://doc.rust-lang.org/nightly/core/default/trait.Default.html#tymethod.default' class='fnname'>default</a>() -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#83' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the &quot;default value&quot; for a type. <a href="https://doc.rust-lang.org/nightly/core/default/trait.Default.html#tymethod.default">Read more</a></p>
</div></div><h3 id='impl-AsPrimitive%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; <a class="trait" href="../num_traits/cast/trait.AsPrimitive.html" title="trait num_traits::cast::AsPrimitive">AsPrimitive</a>&lt;U&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../num_traits/cast/trait.AsPrimitive.html" title="trait num_traits::cast::AsPrimitive">AsPrimitive</a>&lt;U&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;U: 'static + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-AsPrimitive%3CU%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/cast.rs.html#73-81' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.as_' class="method hidden"><code id='as_.v'>fn <a href='../num_traits/cast/trait.AsPrimitive.html#tymethod.as_' class='fnname'>as_</a>(self) -&gt; U</code><a class='srclink' href='../src/num_complex/cast.rs.html#78-80' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert a value to another, using the <code>as</code> operator.</p>
</div></div><h3 id='impl-One' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-One' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1103-1119' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.one' class="method hidden"><code id='one.v'>fn <a href='../num_traits/identities/trait.One.html#tymethod.one' class='fnname'>one</a>() -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1105-1107' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the multiplicative identity element of <code>Self</code>, <code>1</code>. <a href="../num_traits/identities/trait.One.html#tymethod.one">Read more</a></p>
</div><h4 id='method.is_one' class="method hidden"><code id='is_one.v'>fn <a href='../num_traits/identities/trait.One.html#method.is_one' class='fnname'>is_one</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#1110-1112' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if <code>self</code> is equal to the multiplicative identity. <a href="../num_traits/identities/trait.One.html#method.is_one">Read more</a></p>
</div><h4 id='method.set_one' class="method hidden"><code id='set_one.v'>fn <a href='../num_traits/identities/trait.One.html#method.set_one' class='fnname'>set_one</a>(&amp;mut self)</code><a class='srclink' href='../src/num_complex/lib.rs.html#1115-1118' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Sets <code>self</code> to the multiplicative identity element of <code>Self</code>, <code>1</code>.</p>
</div></div><h3 id='impl-Sub%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#630-637' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-62' class="type"><code id='Output.t-62'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub' class="method hidden"><code id='sub.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#634-636' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27b%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3C%26%27b%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#617-624' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-63' class="type"><code id='Output.t-63'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-1' class="method hidden"><code id='sub.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;<br>) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#621-623' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1043-1050' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-64' class="type"><code id='Output.t-64'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-2' class="method hidden"><code id='sub.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#1047-1049' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#924-931' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-65' class="type"><code id='Output.t-65'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-3' class="method hidden"><code id='sub.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#928-930' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27a%20T%3E-1' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for &amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3C%26%27a%20T%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#940-947' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-66' class="type"><code id='Output.t-66'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-4' class="method hidden"><code id='sub.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; &lt;&amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#944-946' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3CComplex%3CT%3E%3E-1' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3CComplex%3CT%3E%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#678-685' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-67' class="type"><code id='Output.t-67'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-5' class="method hidden"><code id='sub.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#682-684' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#643-650' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-68' class="type"><code id='Output.t-68'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-6' class="method hidden"><code id='sub.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#647-649' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3CT%3E-1' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;T&gt; for &amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-Sub%3CT%3E-1' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#932-939' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-69' class="type"><code id='Output.t-69'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-7' class="method hidden"><code id='sub.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, other: T) -&gt; &lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../src/num_complex/lib.rs.html#936-938' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Binary' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html" title="trait core::fmt::Binary">Binary</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html" title="trait core::fmt::Binary">Binary</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-Binary' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#1266-1273' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-7' class="method hidden"><code id='fmt.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Binary.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</code><a class='srclink' href='../src/num_complex/lib.rs.html#1270-1272' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter.</p>
</div></div><h3 id='impl-FromPrimitive' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/cast/trait.FromPrimitive.html" title="trait num_traits::cast::FromPrimitive">FromPrimitive</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../num_traits/cast/trait.FromPrimitive.html" title="trait num_traits::cast::FromPrimitive">FromPrimitive</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-FromPrimitive' class='anchor'></a><a class='srclink' href='../src/num_complex/cast.rs.html#45-62' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from_usize' class="method hidden"><code id='from_usize.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_usize' class='fnname'>from_usize</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert a <code>usize</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_usize">Read more</a></p>
</div><h4 id='method.from_isize' class="method hidden"><code id='from_isize.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_isize' class='fnname'>from_isize</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>isize</code> to return an optional value of this type. If the value cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_isize">Read more</a></p>
</div><h4 id='method.from_u8' class="method hidden"><code id='from_u8.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_u8' class='fnname'>from_u8</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>u8</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_u8">Read more</a></p>
</div><h4 id='method.from_u16' class="method hidden"><code id='from_u16.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_u16' class='fnname'>from_u16</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>u16</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_u16">Read more</a></p>
</div><h4 id='method.from_u32' class="method hidden"><code id='from_u32.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_u32' class='fnname'>from_u32</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>u32</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_u32">Read more</a></p>
</div><h4 id='method.from_u64' class="method hidden"><code id='from_u64.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#tymethod.from_u64' class='fnname'>from_u64</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>u64</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#tymethod.from_u64">Read more</a></p>
</div><h4 id='method.from_i8' class="method hidden"><code id='from_i8.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_i8' class='fnname'>from_i8</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>i8</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_i8">Read more</a></p>
</div><h4 id='method.from_i16' class="method hidden"><code id='from_i16.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_i16' class='fnname'>from_i16</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>i16</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_i16">Read more</a></p>
</div><h4 id='method.from_i32' class="method hidden"><code id='from_i32.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_i32' class='fnname'>from_i32</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>i32</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_i32">Read more</a></p>
</div><h4 id='method.from_i64' class="method hidden"><code id='from_i64.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#tymethod.from_i64' class='fnname'>from_i64</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>i64</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#tymethod.from_i64">Read more</a></p>
</div><h4 id='method.from_u128' class="method hidden"><code id='from_u128.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_u128' class='fnname'>from_u128</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>u128</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_u128">Read more</a></p>
</div><h4 id='method.from_i128' class="method hidden"><code id='from_i128.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_i128' class='fnname'>from_i128</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert an <code>i128</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_i128">Read more</a></p>
</div><h4 id='method.from_f32' class="method hidden"><code id='from_f32.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_f32' class='fnname'>from_f32</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert a <code>f32</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_f32">Read more</a></p>
</div><h4 id='method.from_f64' class="method hidden"><code id='from_f64.v'>fn <a href='../num_traits/cast/trait.FromPrimitive.html#method.from_f64' class='fnname'>from_f64</a>(n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#36-41' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Convert a <code>f64</code> to return an optional value of this type. If the type cannot be represented by this value, then <code>None</code> is returned. <a href="../num_traits/cast/trait.FromPrimitive.html#method.from_f64">Read more</a></p>
</div></div><h3 id='impl-MulAddAssign%3CComplex%3CT%3E%2C%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/ops/mul_add/trait.MulAddAssign.html" title="trait num_traits::ops::mul_add::MulAddAssign">MulAddAssign</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/ops/mul_add/trait.MulAddAssign.html" title="trait num_traits::ops::mul_add::MulAddAssign">MulAddAssign</a>&lt;T, T&gt; + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-MulAddAssign%3CComplex%3CT%3E%2C%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#785-796' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.mul_add_assign' class="method hidden"><code id='mul_add_assign.v'>fn <a href='../num_traits/ops/mul_add/trait.MulAddAssign.html#tymethod.mul_add_assign' class='fnname'>mul_add_assign</a>(&amp;mut self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, add: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#786-795' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the fused multiply-add operation.</p>
</div></div><h3 id='impl-MulAddAssign%3C%26%27a%20Complex%3CT%3E%2C%20%26%27b%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, T&gt; <a class="trait" href="../num_traits/ops/mul_add/trait.MulAddAssign.html" title="trait num_traits::ops::mul_add::MulAddAssign">MulAddAssign</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, &amp;'b <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/ops/mul_add/trait.MulAddAssign.html" title="trait num_traits::ops::mul_add::MulAddAssign">MulAddAssign</a>&lt;T, T&gt; + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-MulAddAssign%3C%26%27a%20Complex%3CT%3E%2C%20%26%27b%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#798-804' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.mul_add_assign-1' class="method hidden"><code id='mul_add_assign.v-1'>fn <a href='../num_traits/ops/mul_add/trait.MulAddAssign.html#tymethod.mul_add_assign' class='fnname'>mul_add_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;, add: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#801-803' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the fused multiply-add operation.</p>
</div></div><h3 id='impl-ToPrimitive' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/cast/trait.ToPrimitive.html" title="trait num_traits::cast::ToPrimitive">ToPrimitive</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../num_traits/cast/trait.ToPrimitive.html" title="trait num_traits::cast::ToPrimitive">ToPrimitive</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-ToPrimitive' class='anchor'></a><a class='srclink' href='../src/num_complex/cast.rs.html#14-31' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_usize' class="method hidden"><code id='to_usize.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_usize' class='fnname'>to_usize</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to a <code>usize</code>.</p>
</div><h4 id='method.to_isize' class="method hidden"><code id='to_isize.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_isize' class='fnname'>to_isize</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>isize</code>.</p>
</div><h4 id='method.to_u8' class="method hidden"><code id='to_u8.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_u8' class='fnname'>to_u8</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>u8</code>.</p>
</div><h4 id='method.to_u16' class="method hidden"><code id='to_u16.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_u16' class='fnname'>to_u16</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>u16</code>.</p>
</div><h4 id='method.to_u32' class="method hidden"><code id='to_u32.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_u32' class='fnname'>to_u32</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>u32</code>.</p>
</div><h4 id='method.to_u64' class="method hidden"><code id='to_u64.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#tymethod.to_u64' class='fnname'>to_u64</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>u64</code>.</p>
</div><h4 id='method.to_i8' class="method hidden"><code id='to_i8.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_i8' class='fnname'>to_i8</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>i8</code>.</p>
</div><h4 id='method.to_i16' class="method hidden"><code id='to_i16.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_i16' class='fnname'>to_i16</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>i16</code>.</p>
</div><h4 id='method.to_i32' class="method hidden"><code id='to_i32.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_i32' class='fnname'>to_i32</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>i32</code>.</p>
</div><h4 id='method.to_i64' class="method hidden"><code id='to_i64.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#tymethod.to_i64' class='fnname'>to_i64</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>i64</code>.</p>
</div><h4 id='method.to_u128' class="method hidden"><code id='to_u128.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_u128' class='fnname'>to_u128</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u128.html">u128</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>u128</code>. <a href="../num_traits/cast/trait.ToPrimitive.html#method.to_u128">Read more</a></p>
</div><h4 id='method.to_i128' class="method hidden"><code id='to_i128.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_i128' class='fnname'>to_i128</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i128.html">i128</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>i128</code>. <a href="../num_traits/cast/trait.ToPrimitive.html#method.to_i128">Read more</a></p>
</div><h4 id='method.to_f32' class="method hidden"><code id='to_f32.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_f32' class='fnname'>to_f32</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>f32</code>.</p>
</div><h4 id='method.to_f64' class="method hidden"><code id='to_f64.v'>fn <a href='../num_traits/cast/trait.ToPrimitive.html#method.to_f64' class='fnname'>to_f64</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>&gt;</code><a class='srclink' href='../src/num_complex/cast.rs.html#7-9' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the value of <code>self</code> to an <code>f64</code>.</p>
</div></div><h3 id='impl-RemAssign%3CComplex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-RemAssign%3CComplex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#812-816' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.rem_assign' class="method hidden"><code id='rem_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#813-815' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%=</code> operation.</p>
</div></div><h3 id='impl-RemAssign%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-RemAssign%3CT%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#844-848' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.rem_assign-1' class="method hidden"><code id='rem_assign.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#845-847' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%=</code> operation.</p>
</div></div><h3 id='impl-RemAssign%3C%26%27a%20Complex%3CT%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;&amp;'a <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-RemAssign%3C%26%27a%20Complex%3CT%3E%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#872-877' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.rem_assign-2' class="method hidden"><code id='rem_assign.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt;)</code><a class='srclink' href='../src/num_complex/lib.rs.html#874-876' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%=</code> operation.</p>
</div></div><h3 id='impl-RemAssign%3C%26%27a%20T%3E' class='impl'><code class='in-band'>impl&lt;'a, T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>T&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-RemAssign%3C%26%27a%20T%3E' class='anchor'></a><a class='srclink' href='../src/num_complex/lib.rs.html#878-883' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.rem_assign-3' class="method hidden"><code id='rem_assign.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html#tymethod.rem_assign' class='fnname'>rem_assign</a>(&amp;mut self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T)</code><a class='srclink' href='../src/num_complex/lib.rs.html#880-882' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>%=</code> operation.</p>
</div></div><h3 id='impl-NormedSpace' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/linear/vector/trait.NormedSpace.html" title="trait alga::linear::vector::NormedSpace">NormedSpace</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,&nbsp;</span></code><a href='#impl-NormedSpace' class='anchor'></a><a class='srclink' href='../src/alga/linear/vector.rs.html#230-277' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.RealField' class="type"><code id='RealField.t'>type <a href='../alga/linear/vector/trait.NormedSpace.html#associatedtype.RealField' class="type">RealField</a> = N</code></h4><div class='docblock'><p>The result of the norm (not necessarily the same same as the field used by this vector space).</p>
</div><h4 id='associatedtype.ComplexField' class="type"><code id='ComplexField.t'>type <a href='../alga/linear/vector/trait.NormedSpace.html#associatedtype.ComplexField' class="type">ComplexField</a> = N</code></h4><div class='docblock'><p>The field of this space must be this complex number.</p>
</div><h4 id='method.norm_squared' class="method hidden"><code id='norm_squared.v'>fn <a href='../alga/linear/vector/trait.NormedSpace.html#tymethod.norm_squared' class='fnname'>norm_squared</a>(&amp;self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../alga/linear/vector/trait.NormedSpace.html" title="trait alga::linear::vector::NormedSpace">NormedSpace</a>&gt;::<a class="type" href="../alga/linear/vector/trait.NormedSpace.html#associatedtype.RealField" title="type alga::linear::vector::NormedSpace::RealField">RealField</a></code><a class='srclink' href='../src/alga/linear/vector.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The squared norm of this vector.</p>
</div><h4 id='method.norm' class="method hidden"><code id='norm.v'>fn <a href='../alga/linear/vector/trait.NormedSpace.html#tymethod.norm' class='fnname'>norm</a>(&amp;self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../alga/linear/vector/trait.NormedSpace.html" title="trait alga::linear::vector::NormedSpace">NormedSpace</a>&gt;::<a class="type" href="../alga/linear/vector/trait.NormedSpace.html#associatedtype.RealField" title="type alga::linear::vector::NormedSpace::RealField">RealField</a></code><a class='srclink' href='../src/alga/linear/vector.rs.html#240-242' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The norm of this vector.</p>
</div><h4 id='method.normalize' class="method hidden"><code id='normalize.v'>fn <a href='../alga/linear/vector/trait.NormedSpace.html#tymethod.normalize' class='fnname'>normalize</a>(&amp;self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/linear/vector.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns a normalized version of this vector.</p>
</div><h4 id='method.normalize_mut' class="method hidden"><code id='normalize_mut.v'>fn <a href='../alga/linear/vector/trait.NormedSpace.html#tymethod.normalize_mut' class='fnname'>normalize_mut</a>(&amp;mut self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../alga/linear/vector/trait.NormedSpace.html" title="trait alga::linear::vector::NormedSpace">NormedSpace</a>&gt;::<a class="type" href="../alga/linear/vector/trait.NormedSpace.html#associatedtype.RealField" title="type alga::linear::vector::NormedSpace::RealField">RealField</a></code><a class='srclink' href='../src/alga/linear/vector.rs.html#250-254' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Normalizes this vector in-place and returns its norm.</p>
</div><h4 id='method.try_normalize' class="method hidden"><code id='try_normalize.v'>fn <a href='../alga/linear/vector/trait.NormedSpace.html#tymethod.try_normalize' class='fnname'>try_normalize</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;eps: &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../alga/linear/vector/trait.NormedSpace.html" title="trait alga::linear::vector::NormedSpace">NormedSpace</a>&gt;::<a class="type" href="../alga/linear/vector/trait.NormedSpace.html#associatedtype.RealField" title="type alga::linear::vector::NormedSpace::RealField">RealField</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;&gt;</code><a class='srclink' href='../src/alga/linear/vector.rs.html#257-264' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns a normalized version of this vector unless its norm as smaller or equal to <code>eps</code>.</p>
</div><h4 id='method.try_normalize_mut' class="method hidden"><code id='try_normalize_mut.v'>fn <a href='../alga/linear/vector/trait.NormedSpace.html#tymethod.try_normalize_mut' class='fnname'>try_normalize_mut</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self, <br>&nbsp;&nbsp;&nbsp;&nbsp;eps: &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../alga/linear/vector/trait.NormedSpace.html" title="trait alga::linear::vector::NormedSpace">NormedSpace</a>&gt;::<a class="type" href="../alga/linear/vector/trait.NormedSpace.html#associatedtype.RealField" title="type alga::linear::vector::NormedSpace::RealField">RealField</a><br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../alga/linear/vector/trait.NormedSpace.html" title="trait alga::linear::vector::NormedSpace">NormedSpace</a>&gt;::<a class="type" href="../alga/linear/vector/trait.NormedSpace.html#associatedtype.RealField" title="type alga::linear::vector::NormedSpace::RealField">RealField</a>&gt;</code><a class='srclink' href='../src/alga/linear/vector.rs.html#267-276' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Normalizes this vector in-place or does nothing if its norm is smaller or equal to <code>eps</code>. <a href="../alga/linear/vector/trait.NormedSpace.html#tymethod.try_normalize_mut">Read more</a></p>
</div></div><h3 id='impl-AbstractMonoid%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractMonoid.html" title="trait alga::general::one_operator::AbstractMonoid">AbstractMonoid</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>,&nbsp;</span></code><a href='#impl-AbstractMonoid%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_operating_identity_element_is_noop_approx' class="method hidden"><code id='prop_operating_identity_element_is_noop_approx.v'>fn <a href='../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop_approx' class='fnname'>prop_operating_identity_element_is_noop_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">,)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#242-249' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks whether operating with the identity element is a no-op for the given argument. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop_approx">Read more</a></p>
</div><h4 id='method.prop_operating_identity_element_is_noop' class="method hidden"><code id='prop_operating_identity_element_is_noop.v'>fn <a href='../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop' class='fnname'>prop_operating_identity_element_is_noop</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">,)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#253-259' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks whether operating with the identity element is a no-op for the given argument. <a href="../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop">Read more</a></p>
</div></div><h3 id='impl-AbstractMonoid%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractMonoid.html" title="trait alga::general::one_operator::AbstractMonoid">AbstractMonoid</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-AbstractMonoid%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_operating_identity_element_is_noop_approx-1' class="method hidden"><code id='prop_operating_identity_element_is_noop_approx.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop_approx' class='fnname'>prop_operating_identity_element_is_noop_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">,)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#242-249' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks whether operating with the identity element is a no-op for the given argument. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop_approx">Read more</a></p>
</div><h4 id='method.prop_operating_identity_element_is_noop-1' class="method hidden"><code id='prop_operating_identity_element_is_noop.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop' class='fnname'>prop_operating_identity_element_is_noop</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">,)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#253-259' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks whether operating with the identity element is a no-op for the given argument. <a href="../alga/general/one_operator/trait.AbstractMonoid.html#method.prop_operating_identity_element_is_noop">Read more</a></p>
</div></div><h3 id='impl-Module' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/specialized/trait.Module.html" title="trait alga::general::specialized::Module">Module</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/specialized/trait.RingCommutative.html" title="trait alga::general::specialized::RingCommutative">RingCommutative</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-Module' class='anchor'></a><a class='srclink' href='../src/alga/general/specialized.rs.html#55-57' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Ring' class="type"><code id='Ring.t'>type <a href='../alga/general/specialized/trait.Module.html#associatedtype.Ring' class="type">Ring</a> = N</code></h4><div class='docblock'><p>The underlying scalar field.</p>
</div></div><h3 id='impl-ComplexField' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,&nbsp;</span></code><a href='#impl-ComplexField' class='anchor'></a><a class='srclink' href='../src/alga/general/complex.rs.html#490-915' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.RealField-1' class="type"><code id='RealField.t-1'>type <a href='../nalgebra/trait.ComplexField.html#associatedtype.RealField' class="type">RealField</a> = N</code></h4><div class='docblock'><p>Type of the coefficients of a complex number.</p>
</div><h4 id='method.from_real' class="method hidden"><code id='from_real.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.from_real' class='fnname'>from_real</a>(re: &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a>) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#494-496' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Builds a pure-real complex number from the given value.</p>
</div><h4 id='method.real' class="method hidden"><code id='real.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.real' class='fnname'>real</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#499-501' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The real part of this complex number.</p>
</div><h4 id='method.imaginary' class="method hidden"><code id='imaginary.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.imaginary' class='fnname'>imaginary</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#504-506' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The imaginary part of this complex number.</p>
</div><h4 id='method.argument' class="method hidden"><code id='argument.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.argument' class='fnname'>argument</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#509-511' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The argument of this complex number.</p>
</div><h4 id='method.modulus' class="method hidden"><code id='modulus.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.modulus' class='fnname'>modulus</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#514-516' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The modulus of this complex number.</p>
</div><h4 id='method.modulus_squared' class="method hidden"><code id='modulus_squared.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.modulus_squared' class='fnname'>modulus_squared</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#519-521' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The squared modulus of this complex number.</p>
</div><h4 id='method.norm1' class="method hidden"><code id='norm1.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.norm1' class='fnname'>norm1</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#524-526' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The sum of the absolute value of this complex number's real and imaginary part.</p>
</div><h4 id='method.recip' class="method hidden"><code id='recip.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.recip' class='fnname'>recip</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#529-531' title='goto source code'>[src]</a></h4><h4 id='method.conjugate' class="method hidden"><code id='conjugate.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.conjugate' class='fnname'>conjugate</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#534-536' title='goto source code'>[src]</a></h4><h4 id='method.scale-1' class="method hidden"><code id='scale.v-1'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.scale' class='fnname'>scale</a>(self, factor: &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a>) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#539-541' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Multiplies this complex number by <code>factor</code>.</p>
</div><h4 id='method.unscale-1' class="method hidden"><code id='unscale.v-1'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.unscale' class='fnname'>unscale</a>(self, factor: &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a>) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#544-546' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Multiplies this complex number by <code>factor</code>.</p>
</div><h4 id='method.floor' class="method hidden"><code id='floor.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.floor' class='fnname'>floor</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#549-551' title='goto source code'>[src]</a></h4><h4 id='method.ceil' class="method hidden"><code id='ceil.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.ceil' class='fnname'>ceil</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#554-556' title='goto source code'>[src]</a></h4><h4 id='method.round' class="method hidden"><code id='round.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.round' class='fnname'>round</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#559-561' title='goto source code'>[src]</a></h4><h4 id='method.trunc' class="method hidden"><code id='trunc.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.trunc' class='fnname'>trunc</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#564-566' title='goto source code'>[src]</a></h4><h4 id='method.fract' class="method hidden"><code id='fract.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.fract' class='fnname'>fract</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#569-571' title='goto source code'>[src]</a></h4><h4 id='method.mul_add-2' class="method hidden"><code id='mul_add.v-2'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.mul_add' class='fnname'>mul_add</a>(self, a: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;, b: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#574-576' title='goto source code'>[src]</a></h4><h4 id='method.abs' class="method hidden"><code id='abs.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.abs' class='fnname'>abs</a>(self) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#579-581' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The absolute value of this complex number: <code>self / self.signum()</code>. <a href="../nalgebra/trait.ComplexField.html#tymethod.abs">Read more</a></p>
</div><h4 id='method.exp2' class="method hidden"><code id='exp2.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.exp2' class='fnname'>exp2</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#584-587' title='goto source code'>[src]</a></h4><h4 id='method.exp_m1' class="method hidden"><code id='exp_m1.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.exp_m1' class='fnname'>exp_m1</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#590-592' title='goto source code'>[src]</a></h4><h4 id='method.ln_1p' class="method hidden"><code id='ln_1p.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.ln_1p' class='fnname'>ln_1p</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#595-597' title='goto source code'>[src]</a></h4><h4 id='method.log2' class="method hidden"><code id='log2.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.log2' class='fnname'>log2</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#600-603' title='goto source code'>[src]</a></h4><h4 id='method.log10' class="method hidden"><code id='log10.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.log10' class='fnname'>log10</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#606-609' title='goto source code'>[src]</a></h4><h4 id='method.cbrt' class="method hidden"><code id='cbrt.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.cbrt' class='fnname'>cbrt</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#612-615' title='goto source code'>[src]</a></h4><h4 id='method.powi-1' class="method hidden"><code id='powi.v-1'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.powi' class='fnname'>powi</a>(self, n: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#618-622' title='goto source code'>[src]</a></h4><h4 id='method.is_finite-1' class="method hidden"><code id='is_finite.v-1'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.is_finite' class='fnname'>is_finite</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#625-627' title='goto source code'>[src]</a></h4><h4 id='method.exp' class="method"><code id='exp.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.exp' class='fnname'>exp</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#640-644' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes <code>e^(self)</code>, where <code>e</code> is the base of the natural logarithm.</p>
</div><h4 id='method.ln' class="method"><code id='ln.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.ln' class='fnname'>ln</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#654-658' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of natural logarithm of <code>self</code>.</p>
<p>This function has one branch cut:</p>
<ul>
<li><code>(-∞, 0]</code>, continuous from above.</li>
</ul>
<p>The branch satisfies <code>-π ≤ arg(ln(z)) ≤ π</code>.</p>
</div><h4 id='method.sqrt' class="method"><code id='sqrt.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.sqrt' class='fnname'>sqrt</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#668-673' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of the square root of <code>self</code>.</p>
<p>This function has one branch cut:</p>
<ul>
<li><code>(-∞, 0)</code>, continuous from above.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ arg(sqrt(z)) ≤ π/2</code>.</p>
</div><h4 id='method.try_sqrt' class="method hidden"><code id='try_sqrt.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.try_sqrt' class='fnname'>try_sqrt</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#676-678' title='goto source code'>[src]</a></h4><h4 id='method.hypot' class="method hidden"><code id='hypot.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.hypot' class='fnname'>hypot</a>(self, b: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;) -&gt; &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#681-683' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Computes (self.conjugate() * self + other.conjugate() * other).sqrt()</p>
</div><h4 id='method.powf' class="method"><code id='powf.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.powf' class='fnname'>powf</a>(self, exp: &lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; as <a class="trait" href="../nalgebra/trait.ComplexField.html" title="trait nalgebra::ComplexField">ComplexField</a>&gt;::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a>) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#687-692' title='goto source code'>[src]</a></h4><div class='docblock'><p>Raises <code>self</code> to a floating point power.</p>
</div><h4 id='method.log' class="method"><code id='log.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.log' class='fnname'>log</a>(self, base: N) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#696-702' title='goto source code'>[src]</a></h4><div class='docblock'><p>Returns the logarithm of <code>self</code> with respect to an arbitrary base.</p>
</div><h4 id='method.powc' class="method"><code id='powc.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.powc' class='fnname'>powc</a>(self, exp: <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#706-723' title='goto source code'>[src]</a></h4><div class='docblock'><p>Raises <code>self</code> to a complex power.</p>
</div><h4 id='method.sin' class="method"><code id='sin.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.sin' class='fnname'>sin</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#737-743' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the sine of <code>self</code>.</p>
</div><h4 id='method.cos' class="method"><code id='cos.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.cos' class='fnname'>cos</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#747-753' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the cosine of <code>self</code>.</p>
</div><h4 id='method.sin_cos' class="method hidden"><code id='sin_cos.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.sin_cos' class='fnname'>sin_cos</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;, <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#756-763' title='goto source code'>[src]</a></h4><h4 id='method.tan' class="method"><code id='tan.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.tan' class='fnname'>tan</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#767-771' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the tangent of <code>self</code>.</p>
</div><h4 id='method.asin' class="method"><code id='asin.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.asin' class='fnname'>asin</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#782-786' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of the inverse sine of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞, -1)</code>, continuous from above.</li>
<li><code>(1, ∞)</code>, continuous from below.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Re(asin(z)) ≤ π/2</code>.</p>
</div><h4 id='method.acos' class="method"><code id='acos.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.acos' class='fnname'>acos</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#797-801' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of the inverse cosine of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞, -1)</code>, continuous from above.</li>
<li><code>(1, ∞)</code>, continuous from below.</li>
</ul>
<p>The branch satisfies <code>0 ≤ Re(acos(z)) ≤ π</code>.</p>
</div><h4 id='method.atan' class="method"><code id='atan.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.atan' class='fnname'>atan</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#812-825' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of the inverse tangent of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞i, -i]</code>, continuous from the left.</li>
<li><code>[i, ∞i)</code>, continuous from the right.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Re(atan(z)) ≤ π/2</code>.</p>
</div><h4 id='method.sinh' class="method"><code id='sinh.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.sinh' class='fnname'>sinh</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#829-835' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the hyperbolic sine of <code>self</code>.</p>
</div><h4 id='method.cosh' class="method"><code id='cosh.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.cosh' class='fnname'>cosh</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#839-845' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the hyperbolic cosine of <code>self</code>.</p>
</div><h4 id='method.sinh_cosh' class="method hidden"><code id='sinh_cosh.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.sinh_cosh' class='fnname'>sinh_cosh</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;, <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#848-855' title='goto source code'>[src]</a></h4><h4 id='method.tanh' class="method"><code id='tanh.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.tanh' class='fnname'>tanh</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#859-863' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the hyperbolic tangent of <code>self</code>.</p>
</div><h4 id='method.asinh' class="method"><code id='asinh.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.asinh' class='fnname'>asinh</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#874-878' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of inverse hyperbolic sine of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞i, -i)</code>, continuous from the left.</li>
<li><code>(i, ∞i)</code>, continuous from the right.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Im(asinh(z)) ≤ π/2</code>.</p>
</div><h4 id='method.acosh' class="method"><code id='acosh.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.acosh' class='fnname'>acosh</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#888-893' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of inverse hyperbolic cosine of <code>self</code>.</p>
<p>This function has one branch cut:</p>
<ul>
<li><code>(-∞, 1)</code>, continuous from above.</li>
</ul>
<p>The branch satisfies <code>-π ≤ Im(acosh(z)) ≤ π</code> and <code>0 ≤ Re(acosh(z)) &lt;</code>.</p>
</div><h4 id='method.atanh' class="method"><code id='atanh.v'>fn <a href='../nalgebra/trait.ComplexField.html#tymethod.atanh' class='fnname'>atanh</a>(self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/complex.rs.html#904-914' title='goto source code'>[src]</a></h4><div class='docblock'><p>Computes the principal value of inverse hyperbolic tangent of <code>self</code>.</p>
<p>This function has two branch cuts:</p>
<ul>
<li><code>(-∞, -1]</code>, continuous from above.</li>
<li><code>[1, ∞)</code>, continuous from below.</li>
</ul>
<p>The branch satisfies <code>-π/2 ≤ Im(atanh(z)) ≤ π/2</code>.</p>
</div><h4 id='method.to_polar' class="method hidden"><code id='to_polar.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.to_polar' class='fnname'>to_polar</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a>, Self::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#78-80' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The polar form of this complex number: (modulus, arg)</p>
</div><h4 id='method.to_exp' class="method hidden"><code id='to_exp.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.to_exp' class='fnname'>to_exp</a>(self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../nalgebra/trait.ComplexField.html#associatedtype.RealField" title="type nalgebra::ComplexField::RealField">RealField</a>, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../src/alga/general/complex.rs.html#83-91' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The exponential form of this complex number: (modulus, e^{i arg})</p>
</div><h4 id='method.signum' class="method hidden"><code id='signum.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.signum' class='fnname'>signum</a>(self) -&gt; Self</code><a class='srclink' href='../src/alga/general/complex.rs.html#94-96' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The exponential part of this complex number: <code>self / self.modulus()</code></p>
</div><h4 id='method.sinc' class="method hidden"><code id='sinc.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.sinc' class='fnname'>sinc</a>(self) -&gt; Self</code><a class='srclink' href='../src/alga/general/complex.rs.html#138-144' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Cardinal sine</p>
</div><h4 id='method.sinhc' class="method hidden"><code id='sinhc.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.sinhc' class='fnname'>sinhc</a>(self) -&gt; Self</code><a class='srclink' href='../src/alga/general/complex.rs.html#147-153' title='goto source code'>[src]</a></h4><h4 id='method.cosc' class="method hidden"><code id='cosc.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.cosc' class='fnname'>cosc</a>(self) -&gt; Self</code><a class='srclink' href='../src/alga/general/complex.rs.html#157-163' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Cardinal cos</p>
</div><h4 id='method.coshc' class="method hidden"><code id='coshc.v'>fn <a href='../nalgebra/trait.ComplexField.html#method.coshc' class='fnname'>coshc</a>(self) -&gt; Self</code><a class='srclink' href='../src/alga/general/complex.rs.html#166-172' title='goto source code'>[src]</a></h4></div><h3 id='impl-TwoSidedInverse%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/operator/trait.TwoSidedInverse.html" title="trait alga::general::operator::TwoSidedInverse">TwoSidedInverse</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/operator/trait.TwoSidedInverse.html" title="trait alga::general::operator::TwoSidedInverse">TwoSidedInverse</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-TwoSidedInverse%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/operator.rs.html#86-94' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.two_sided_inverse' class="method hidden"><code id='two_sided_inverse.v'>fn <a href='../alga/general/operator/trait.TwoSidedInverse.html#tymethod.two_sided_inverse' class='fnname'>two_sided_inverse</a>(&amp;self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/operator.rs.html#88-93' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the two_sided_inverse of <code>self</code>, relative to the operator <code>O</code>. <a href="../alga/general/operator/trait.TwoSidedInverse.html#tymethod.two_sided_inverse">Read more</a></p>
</div><h4 id='method.two_sided_inverse_mut' class="method hidden"><code id='two_sided_inverse_mut.v'>fn <a href='../alga/general/operator/trait.TwoSidedInverse.html#method.two_sided_inverse_mut' class='fnname'>two_sided_inverse_mut</a>(&amp;mut self)</code><a class='srclink' href='../src/alga/general/operator.rs.html#28-30' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>In-place inversion of <code>self</code>, relative to the operator <code>O</code>. <a href="../alga/general/operator/trait.TwoSidedInverse.html#method.two_sided_inverse_mut">Read more</a></p>
</div></div><h3 id='impl-TwoSidedInverse%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/operator/trait.TwoSidedInverse.html" title="trait alga::general::operator::TwoSidedInverse">TwoSidedInverse</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-TwoSidedInverse%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/operator.rs.html#118-123' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.two_sided_inverse-1' class="method hidden"><code id='two_sided_inverse.v-1'>fn <a href='../alga/general/operator/trait.TwoSidedInverse.html#tymethod.two_sided_inverse' class='fnname'>two_sided_inverse</a>(&amp;self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/operator.rs.html#120-122' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the two_sided_inverse of <code>self</code>, relative to the operator <code>O</code>. <a href="../alga/general/operator/trait.TwoSidedInverse.html#tymethod.two_sided_inverse">Read more</a></p>
</div><h4 id='method.two_sided_inverse_mut-1' class="method hidden"><code id='two_sided_inverse_mut.v-1'>fn <a href='../alga/general/operator/trait.TwoSidedInverse.html#method.two_sided_inverse_mut' class='fnname'>two_sided_inverse_mut</a>(&amp;mut self)</code><a class='srclink' href='../src/alga/general/operator.rs.html#28-30' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>In-place inversion of <code>self</code>, relative to the operator <code>O</code>. <a href="../alga/general/operator/trait.TwoSidedInverse.html#method.two_sided_inverse_mut">Read more</a></p>
</div></div><h3 id='impl-AbstractMagma%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractMagma.html" title="trait alga::general::one_operator::AbstractMagma">AbstractMagma</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-AbstractMagma%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/one_operator.rs.html#446-451' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.operate' class="method hidden"><code id='operate.v'>fn <a href='../alga/general/one_operator/trait.AbstractMagma.html#tymethod.operate' class='fnname'>operate</a>(&amp;self, lhs: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/one_operator.rs.html#448-450' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs an operation.</p>
</div><h4 id='method.op' class="method hidden"><code id='op.v'>fn <a href='../alga/general/one_operator/trait.AbstractMagma.html#method.op' class='fnname'>op</a>(&amp;self, O, lhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; Self</code><a class='srclink' href='../src/alga/general/one_operator.rs.html#25-27' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs specific operation.</p>
</div></div><h3 id='impl-AbstractMagma%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractMagma.html" title="trait alga::general::one_operator::AbstractMagma">AbstractMagma</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/one_operator/trait.AbstractMagma.html" title="trait alga::general::one_operator::AbstractMagma">AbstractMagma</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-AbstractMagma%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/one_operator.rs.html#436-444' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.operate-1' class="method hidden"><code id='operate.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractMagma.html#tymethod.operate' class='fnname'>operate</a>(&amp;self, lhs: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/one_operator.rs.html#438-443' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs an operation.</p>
</div><h4 id='method.op-1' class="method hidden"><code id='op.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractMagma.html#method.op' class='fnname'>op</a>(&amp;self, O, lhs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; Self</code><a class='srclink' href='../src/alga/general/one_operator.rs.html#25-27' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs specific operation.</p>
</div></div><h3 id='impl-MeetSemilattice' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/lattice/trait.MeetSemilattice.html" title="trait alga::general::lattice::MeetSemilattice">MeetSemilattice</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/lattice/trait.MeetSemilattice.html" title="trait alga::general::lattice::MeetSemilattice">MeetSemilattice</a>,&nbsp;</span></code><a href='#impl-MeetSemilattice' class='anchor'></a><a class='srclink' href='../src/alga/general/lattice.rs.html#126-134' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.meet' class="method hidden"><code id='meet.v'>fn <a href='../alga/general/lattice/trait.MeetSemilattice.html#tymethod.meet' class='fnname'>meet</a>(&amp;self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/lattice.rs.html#128-133' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the meet (aka. infimum) of two values.</p>
</div></div><h3 id='impl-SubsetOf%3CComplex%3CN2%3E%3E' class='impl'><code class='in-band'>impl&lt;N1, N2&gt; <a class="trait" href="../alga/general/subset/trait.SubsetOf.html" title="trait alga::general::subset::SubsetOf">SubsetOf</a>&lt;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N2&gt;&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N2: <a class="trait" href="../alga/general/subset/trait.SupersetOf.html" title="trait alga::general::subset::SupersetOf">SupersetOf</a>&lt;N1&gt;,&nbsp;</span></code><a href='#impl-SubsetOf%3CComplex%3CN2%3E%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/subset.rs.html#167-188' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_superset' class="method hidden"><code id='to_superset.v'>fn <a href='../alga/general/subset/trait.SubsetOf.html#tymethod.to_superset' class='fnname'>to_superset</a>(&amp;self) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N2&gt;</code><a class='srclink' href='../src/alga/general/subset.rs.html#169-174' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inclusion map: converts <code>self</code> to the equivalent element of its superset.</p>
</div><h4 id='method.from_superset_unchecked' class="method hidden"><code id='from_superset_unchecked.v'>unsafe fn <a href='../alga/general/subset/trait.SubsetOf.html#tymethod.from_superset_unchecked' class='fnname'>from_superset_unchecked</a>(element: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N2&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N1&gt;</code><a class='srclink' href='../src/alga/general/subset.rs.html#177-182' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Use with care! Same as <code>self.to_superset</code> but without any property checks. Always succeeds.</p>
</div><h4 id='method.is_in_subset' class="method hidden"><code id='is_in_subset.v'>fn <a href='../alga/general/subset/trait.SubsetOf.html#tymethod.is_in_subset' class='fnname'>is_in_subset</a>(c: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N2&gt;) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/alga/general/subset.rs.html#185-187' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks if <code>element</code> is actually part of the subset <code>Self</code> (and can be converted to it).</p>
</div><h4 id='method.from_superset' class="method hidden"><code id='from_superset.v'>fn <a href='../alga/general/subset/trait.SubsetOf.html#method.from_superset' class='fnname'>from_superset</a>(element: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../src/alga/general/subset.rs.html#32-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse inclusion map: attempts to construct <code>self</code> from the equivalent element of its superset. <a href="../alga/general/subset/trait.SubsetOf.html#method.from_superset">Read more</a></p>
</div></div><h3 id='impl-AbstractGroupAbelian%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-AbstractGroupAbelian%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_is_commutative_approx' class="method hidden"><code id='prop_is_commutative_approx.v'>fn <a href='../alga/general/one_operator/trait.AbstractGroupAbelian.html#method.prop_is_commutative_approx' class='fnname'>prop_is_commutative_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#351-357' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the operator is commutative for the given argument tuple. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractGroupAbelian.html#method.prop_is_commutative_approx">Read more</a></p>
</div><h4 id='method.prop_is_commutative' class="method hidden"><code id='prop_is_commutative.v'>fn <a href='../alga/general/one_operator/trait.AbstractGroupAbelian.html#method.prop_is_commutative' class='fnname'>prop_is_commutative</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#360-366' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the operator is commutative for the given argument tuple.</p>
</div></div><h3 id='impl-AbstractGroupAbelian%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>,&nbsp;</span></code><a href='#impl-AbstractGroupAbelian%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_is_commutative_approx-1' class="method hidden"><code id='prop_is_commutative_approx.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractGroupAbelian.html#method.prop_is_commutative_approx' class='fnname'>prop_is_commutative_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#351-357' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the operator is commutative for the given argument tuple. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractGroupAbelian.html#method.prop_is_commutative_approx">Read more</a></p>
</div><h4 id='method.prop_is_commutative-1' class="method hidden"><code id='prop_is_commutative.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractGroupAbelian.html#method.prop_is_commutative' class='fnname'>prop_is_commutative</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#360-366' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the operator is commutative for the given argument tuple.</p>
</div></div><h3 id='impl-AbstractField%3CAdditive%2C%20Multiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/two_operators/trait.AbstractField.html" title="trait alga::general::two_operators::AbstractField">AbstractField</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a> + <a class="trait" href="../alga/general/two_operators/trait.AbstractField.html" title="trait alga::general::two_operators::AbstractField">AbstractField</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-AbstractField%3CAdditive%2C%20Multiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/two_operators.rs.html#289' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-AbstractLoop%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractLoop.html" title="trait alga::general::one_operator::AbstractLoop">AbstractLoop</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-AbstractLoop%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-AbstractLoop%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractLoop.html" title="trait alga::general::one_operator::AbstractLoop">AbstractLoop</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>,&nbsp;</span></code><a href='#impl-AbstractLoop%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-Identity%3CMultiplicative%3E' cl
</div><h4 id='method.id' class="method hidden"><code id='id.v'>fn <a href='../alga/general/identity/trait.Identity.html#method.id' class='fnname'>id</a>(O) -&gt; Self</code><a class='srclink' href='../src/alga/general/identity.rs.html#27-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Specific identity.</p>
</div></div><h3 id='impl-Identity%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/identity/trait.Identity.html" title="trait alga::general::identity::Identity">Identity</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/identity/trait.Identity.html" title="trait alga::general::identity::Identity">Identity</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-Identity%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/identity.rs.html#44-52' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.identity-1' class="method hidden"><code id='identity.v-1'>fn <a href='../alga/general/identity/trait.Identity.html#tymethod.identity' class='fnname'>identity</a>() -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/identity.rs.html#46-51' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The identity element.</p>
</div><h4 id='method.id-1' class="method hidden"><code id='id.v-1'>fn <a href='../alga/general/identity/trait.Identity.html#method.id' class='fnname'>id</a>(O) -&gt; Self</code><a class='srclink' href='../src/alga/general/identity.rs.html#27-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Specific identity.</p>
</div></div><h3 id='impl-JoinSemilattice' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/lattice/trait.JoinSemilattice.html" title="trait alga::general::lattice::JoinSemilattice">JoinSemilattice</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/lattice/trait.JoinSemilattice.html" title="trait alga::general::lattice::JoinSemilattice">JoinSemilattice</a>,&nbsp;</span></code><a href='#impl-JoinSemilattice' class='anchor'></a><a class='srclink' href='../src/alga/general/lattice.rs.html#136-144' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.join' class="method hidden"><code id='join.v'>fn <a href='../alga/general/lattice/trait.JoinSemilattice.html#tymethod.join' class='fnname'>join</a>(&amp;self, other: &amp;<a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/lattice.rs.html#138-143' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the join (aka. supremum) of two values.</p>
</div></div><h3 id='impl-VectorSpace' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/linear/vector/trait.VectorSpace.html" title="trait alga::linear::vector::VectorSpace">VectorSpace</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/specialized/trait.Field.html" title="trait alga::general::specialized::Field">Field</a> + <a class="trait" href="../num_traits/trait.NumAssign.html" title="trait num_traits::NumAssign">NumAssign</a>,&nbsp;</span></code><a href='#impl-VectorSpace' class='anchor'></a><a class='srclink' href='../src/alga/linear/vector.rs.html#226-228' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Field' class="type"><code id='Field.t'>type <a href='../alga/linear/vector/trait.VectorSpace.html#associatedtype.Field' class="type">Field</a> = N</code></h4><div class='docblock'><p>The underlying scalar field.</p>
</div></div><h3 id='impl-AbstractRingCommutative%3CAdditive%2C%20Multiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/two_operators/trait.AbstractRingCommutative.html" title="trait alga::general::two_operators::AbstractRingCommutative">AbstractRingCommutative</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a> + <a class="trait" href="../alga/general/two_operators/trait.AbstractRingCommutative.html" title="trait alga::general::two_operators::AbstractRingCommutative">AbstractRingCommutative</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-AbstractRingCommutative%3CAdditive%2C%20Multiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/two_operators.rs.html#288' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_mul_is_commutative_approx' class="method hidden"><code id='prop_mul_is_commutative_approx.v'>fn <a href='../alga/general/two_operators/trait.AbstractRingCommutative.html#method.prop_mul_is_commutative_approx' class='fnname'>prop_mul_is_commutative_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/two_operators.rs.html#134-143' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the multiplication operator is commutative for the given argument tuple. Approximate equality is used for verifications. <a href="../alga/general/two_operators/trait.AbstractRingCommutative.html#method.prop_mul_is_commutative_approx">Read more</a></p>
</div><h4 id='method.prop_mul_is_commutative' class="method hidden"><code id='prop_mul_is_commutative.v'>fn <a href='../alga/general/two_operators/trait.AbstractRingCommutative.html#method.prop_mul_is_commutative' class='fnname'>prop_mul_is_commutative</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/two_operators.rs.html#146-155' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the multiplication operator is commutative for the given argument tuple.</p>
</div></div><h3 id='impl-AbstractSemigroup%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractSemigroup.html" title="trait alga::general::one_operator::AbstractSemigroup">AbstractSemigroup</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-AbstractSemigroup%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_is_associative_approx' class="method hidden"><code id='prop_is_associative_approx.v'>fn <a href='../alga/general/one_operator/trait.AbstractSemigroup.html#method.prop_is_associative_approx' class='fnname'>prop_is_associative_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#128-134' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if associativity holds for the given arguments. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractSemigroup.html#method.prop_is_associative_approx">Read more</a></p>
</div><h4 id='method.prop_is_associative' class="method hidden"><code id='prop_is_associative.v'>fn <a href='../alga/general/one_operator/trait.AbstractSemigroup.html#method.prop_is_associative' class='fnname'>prop_is_associative</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#137-143' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if associativity holds for the given arguments.</p>
</div></div><h3 id='impl-AbstractSemigroup%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractSemigroup.html" title="trait alga::general::one_operator::AbstractSemigroup">AbstractSemigroup</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>,&nbsp;</span></code><a href='#impl-AbstractSemigroup%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_is_associative_approx-1' class="method hidden"><code id='prop_is_associative_approx.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractSemigroup.html#method.prop_is_associative_approx' class='fnname'>prop_is_associative_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#128-134' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if associativity holds for the given arguments. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractSemigroup.html#method.prop_is_associative_approx">Read more</a></p>
</div><h4 id='method.prop_is_associative-1' class="method hidden"><code id='prop_is_associative.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractSemigroup.html#method.prop_is_associative' class='fnname'>prop_is_associative</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#137-143' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if associativity holds for the given arguments.</p>
</div></div><h3 id='impl-AbstractRing%3CAdditive%2C%20Multiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/two_operators/trait.AbstractRing.html" title="trait alga::general::two_operators::AbstractRing">AbstractRing</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a> + <a class="trait" href="../alga/general/two_operators/trait.AbstractRing.html" title="trait alga::general::two_operators::AbstractRing">AbstractRing</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-AbstractRing%3CAdditive%2C%20Multiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/two_operators.rs.html#287' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_mul_and_add_are_distributive_approx' class="method hidden"><code id='prop_mul_and_add_are_distributive_approx.v'>fn <a href='../alga/general/two_operators/trait.AbstractRing.html#method.prop_mul_and_add_are_distributive_approx' class='fnname'>prop_mul_and_add_are_distributive_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/two_operators.rs.html#35-48' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the multiplication and addition operators are distributive for the given argument tuple. Approximate equality is used for verifications. <a href="../alga/general/two_operators/trait.AbstractRing.html#method.prop_mul_and_add_are_distributive_approx">Read more</a></p>
</div><h4 id='method.prop_mul_and_add_are_distributive' class="method hidden"><code id='prop_mul_and_add_are_distributive.v'>fn <a href='../alga/general/two_operators/trait.AbstractRing.html#method.prop_mul_and_add_are_distributive' class='fnname'>prop_mul_and_add_are_distributive</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/two_operators.rs.html#52-65' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if the multiplication and addition operators are distributive for the given argument tuple. <a href="../alga/general/two_operators/trait.AbstractRing.html#method.prop_mul_and_add_are_distributive">Read more</a></p>
</div></div><h3 id='impl-AbstractGroup%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractGroup.html" title="trait alga::general::one_operator::AbstractGroup">AbstractGroup</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-AbstractGroup%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-AbstractGroup%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractGroup.html" title="trait alga::general::one_operator::AbstractGroup">AbstractGroup</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>,&nbsp;</span></code><a href='#impl-AbstractGroup%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-AbstractModule%3CAdditive%2C%20Additive%2C%20Multiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/module/trait.AbstractModule.html" title="trait alga::general::module::AbstractModule">AbstractModule</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a> + <a class="trait" href="../alga/general/two_operators/trait.AbstractRingCommutative.html" title="trait alga::general::two_operators::AbstractRingCommutative">AbstractRingCommutative</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; + <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a>,&nbsp;</span></code><a href='#impl-AbstractModule%3CAdditive%2C%20Additive%2C%20Multiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/module.rs.html#35-45' title='goto source code'>[src]</a></h3><div class='impl-i
</div><h4 id='method.multiply_by' class="method hidden"><code id='multiply_by.v'>fn <a href='../alga/general/module/trait.AbstractModule.html#tymethod.multiply_by' class='fnname'>multiply_by</a>(&amp;self, r: N) -&gt; <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt;</code><a class='srclink' href='../src/alga/general/module.rs.html#42-44' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Multiplies an element of the ring with an element of the module.</p>
</div></div><h3 id='impl-AbstractQuasigroup%3CAdditive%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractQuasigroup.html" title="trait alga::general::one_operator::AbstractQuasigroup">AbstractQuasigroup</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../alga/general/one_operator/trait.AbstractGroupAbelian.html" title="trait alga::general::one_operator::AbstractGroupAbelian">AbstractGroupAbelian</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>&gt;,&nbsp;</span></code><a href='#impl-AbstractQuasigroup%3CAdditive%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_inv_is_latin_square_approx' class="method hidden"><code id='prop_inv_is_latin_square_approx.v'>fn <a href='../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square_approx' class='fnname'>prop_inv_is_latin_square_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#57-66' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if latin squareness holds for the given arguments. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square_approx">Read more</a></p>
</div><h4 id='method.prop_inv_is_latin_square' class="method hidden"><code id='prop_inv_is_latin_square.v'>fn <a href='../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square' class='fnname'>prop_inv_is_latin_square</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#73-82' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if latin squareness holds for the given arguments. <a href="../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square">Read more</a></p>
</div></div><h3 id='impl-AbstractQuasigroup%3CMultiplicative%3E' class='impl'><code class='in-band'>impl&lt;N&gt; <a class="trait" href="../alga/general/one_operator/trait.AbstractQuasigroup.html" title="trait alga::general::one_operator::AbstractQuasigroup">AbstractQuasigroup</a>&lt;<a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>,&nbsp;</span></code><a href='#impl-AbstractQuasigroup%3CMultiplicative%3E' class='anchor'></a><a class='srclink' href='../src/alga/macros.rs.html#42-44' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.prop_inv_is_latin_square_approx-1' class="method hidden"><code id='prop_inv_is_latin_square_approx.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square_approx' class='fnname'>prop_inv_is_latin_square_approx</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;Self&gt;,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#57-66' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if latin squareness holds for the given arguments. Approximate equality is used for verifications. <a href="../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square_approx">Read more</a></p>
</div><h4 id='method.prop_inv_is_latin_square-1' class="method hidden"><code id='prop_inv_is_latin_square.v-1'>fn <a href='../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square' class='fnname'>prop_inv_is_latin_square</a>(args: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;Self: <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>,&nbsp;</span></code><a class='srclink' href='../src/alga/general/one_operator.rs.html#73-82' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns <code>true</code> if latin squareness holds for the given arguments. <a href="../alga/general/one_operator/trait.AbstractQuasigroup.html#method.prop_inv_is_latin_square">Read more</a></p>
</div></div></div><h2 id='synthetic-implementations' class='small-section-header'>Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a></h2><div id='synthetic-implementations-list'><h3 id='impl-Send' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>,&nbsp;</span></code><a href='#impl-Send' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-Unpin' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,&nbsp;</span></code><a href='#impl-Unpin' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-Sync' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>,&nbsp;</span></code><a href='#impl-Sync' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-UnwindSafe' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a>,&nbsp;</span></code><a href='#impl-UnwindSafe' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-RefUnwindSafe' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a> for <a class="struct" href="../nalgebra/struct.Complex.html" title="struct nalgebra::Complex">Complex</a>&lt;T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a>,&nbsp;</span></code><a href='#impl-RefUnwindSafe' class='anchor'></a></h3><div class='impl-items'></div></div><h2 id='blanket-implementations' class='small-section-header'>Blanket Implementations<a href='#blanket-implementations' class='anchor'></a></h2><div id='blanket-implementations-list'><h3 id='impl-ToOwned' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html" title="trait alloc::borrow::ToOwned">ToOwned</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-ToOwned' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/borrow.rs.html#81-92' title='
</div><h4 id='method.to_owned' class="method hidden"><code id='to_owned.v'>fn <a href='https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#tymethod.to_owned' class='fnname'>to_owned</a>(&amp;self) -&gt; T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/borrow.rs.html#85-87' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Creates owned data from borrowed data, usually by cloning. <a href="https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#tymethod.to_owned">Read more</a></p>
</div><h4 id='method.clone_into' class="method hidden"><code id='clone_into.v'>fn <a href='https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#method.clone_into' class='fnname'>clone_into</a>(&amp;self, target: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>T)</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/borrow.rs.html#89-91' title='goto source code'>[src]</a></h4><div class='stability hidden'><div class='stab unstable'><details><summary><span class='emoji'>🔬</span> This is a nightly-only experimental API. (<code>toowned_clone_into</code>)</summary><p>recently added</p>
</details></div></div><div class='docblock hidden'><p>Uses borrowed data to replace owned data, usually by cloning. <a href="https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#method.clone_into">Read more</a></p>
</div></div><h3 id='impl-Into%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-Into%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#544-549' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.into' class="method hidden"><code id='into.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.Into.html#tymethod.into' class='fnname'>into</a>(self) -&gt; U</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#546-548' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CT%3E-1' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for T</code><a href='#impl-From%3CT%3E-1' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#553-555' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-3' class="method hidden"><code id='from.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(t: T) -&gt; T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#554' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-ToString' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html" title="trait alloc::string::ToString">ToString</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-ToString' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/string.rs.html#2134-2144' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_string' class="method hidden"><code id='to_string.v'>default fn <a href='https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html#tymethod.to_string' class='fnname'>to_string</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a></code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/string.rs.html#2136-2143' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the given value to a <code>String</code>. <a href="https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html#tymethod.to_string">Read more</a></p>
</div></div><h3 id='impl-TryFrom%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-TryFrom%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#572-578' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error' class="type"><code id='Error.t'>type <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error' class="type">Error</a> = <a class="enum" href="https://doc.rust-lang.org/nightly/core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></code></h4><div class='docblock'><p>The type returned in the event of a conversion error.</p>
</div><h4 id='method.try_from' class="method hidden"><code id='try_from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#tymethod.try_from' class='fnname'>try_from</a>(value: U) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;T, &lt;T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#575-577' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-TryInto%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-TryInto%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#560-567' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-1' class="type"><code id='Error.t-1'>type <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#associatedtype.Error' class="type">Error</a> = &lt;U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></code></h4><div class='docblock'><p>The type returned in the event of a conversion error.</p>
</div><h4 id='method.try_into' class="method hidden"><code id='try_into.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#tymethod.try_into' class='fnname'>try_into</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;U, &lt;U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#564-566' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-BorrowMut%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html" title="trait core::borrow::BorrowMut">BorrowMut</a>&lt;T&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-BorrowMut%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#218-220' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.borrow_mut' class="method hidden"><code id='borrow_mut.v'>fn <a href='https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut' class='fnname'>borrow_mut</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#219' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably borrows from an owned value. <a href="https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></p>
</div></div><h3 id='impl-Borrow%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a>&lt;T&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-Borrow%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#213-215' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.borrow' class="method hidden"><code id='borrow.v'>fn <a href='https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html#tymethod.borrow' class='fnname'>borrow</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#214' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></p>
</div></div><h3 id='impl-Any' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-Any' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/any.rs.html#100-102' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.type_id' class="method hidden"><code id='type_id.v'>fn <a href='https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id' class='fnname'>type_id</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/any.rs.html#101' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id">Read more</a></p>
</div></div><h3 id='impl-NumOps%3CRhs%2C%20Output%3E' class='impl'><code class='in-band'>impl&lt;T, Rhs, Output&gt; <a class="trait" href="../num_traits/trait.NumOps.html" title="trait num_traits::NumOps">NumOps</a>&lt;Rhs, Output&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;Rhs, Output = Output&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;Rhs, Output = Output&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;Rhs, Output = Output&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;Rhs, Output = Output&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Rem.html" title="trait core::ops::arith::Rem">Rem</a>&lt;Rhs, Output = Output&gt;,&nbsp;</span></code><a href='#impl-NumOps%3CRhs%2C%20Output%3E' class='anchor'></a><a class='srclink' href='../src/num_traits/lib.rs.html#93-100' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-NumRef' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../num_traits/trait.NumRef.html" title="trait num_traits::NumRef">NumRef</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../num_traits/trait.Num.html" title="trait num_traits::Num">Num</a> + <a class="trait" href="../num_traits/trait.NumOps.html" title="trait num_traits::NumOps">NumOps</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'r </a>T, T&gt;,&nbsp;</span></code><a href='#impl-NumRef' class='anchor'></a><a class='srclink' href='../src/num_traits/lib.rs.html#107' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-RefNum%3CBase%3E' class='impl'><code class='in-band'>impl&lt;T, Base&gt; <a class="trait" href="../num_traits/trait.RefNum.html" title="trait num_traits::RefNum">RefNum</a>&lt;Base&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../num_traits/trait.NumOps.html" title="trait num_traits::NumOps">NumOps</a>&lt;Base, Base&gt; + <a class="trait" href="../num_traits/trait.NumOps.html" title="trait num_traits::NumOps">NumOps</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'r </a>Base, Base&gt;,&nbsp;</span></code><a href='#impl-RefNum%3CBase%3E' class='anchor'></a><a class='srclink' href='../src/num_traits/lib.rs.html#114' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-NumAssignOps%3CRhs%3E' class='impl'><code class='in-band'>impl&lt;T, Rhs&gt; <a class="trait" href="../num_traits/trait.NumAssignOps.html" title="trait num_traits::NumAssignOps">NumAssignOps</a>&lt;Rhs&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;Rhs&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;Rhs&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;Rhs&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;Rhs&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.RemAssign.html" title="trait core::ops::arith::RemAssign">RemAssign</a>&lt;Rhs&gt;,&nbsp;</span></code><a href='#impl-NumAssignOps%3CRhs%3E' class='anchor'></a><a class='srclink' href
</div></div><h3 id='impl-ClosedNeg' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt;,&nbsp;</span></code><a href='#impl-ClosedNeg' class='anchor'></a><a class='srclink' href='../src/alga/general/operator.rs.html#144' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-SupersetOf%3CSS%3E' class='impl'><code class='in-band'>impl&lt;SS, SP&gt; <a class="trait" href="../alga/general/subset/trait.SupersetOf.html" title="trait alga::general::subset::SupersetOf">SupersetOf</a>&lt;SS&gt; for SP <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;SS: <a class="trait" href="../alga/general/subset/trait.SubsetOf.html" title="trait alga::general::subset::SubsetOf">SubsetOf</a>&lt;SP&gt;,&nbsp;</span></code><a href='#impl-SupersetOf%3CSS%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/subset.rs.html#87-107' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_subset' class="method hidden"><code id='to_subset.v'>fn <a href='../alga/general/subset/trait.SupersetOf.html#method.to_subset' class='fnname'>to_subset</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;SS&gt;</code><a class='srclink' href='../src/alga/general/subset.rs.html#89-91' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse inclusion map: attempts to construct <code>self</code> from the equivalent element of its superset. <a href="../alga/general/subset/trait.SupersetOf.html#method.to_subset">Read more</a></p>
</div><h4 id='method.is_in_subset-1' class="method hidden"><code id='is_in_subset.v-1'>fn <a href='../alga/general/subset/trait.SupersetOf.html#tymethod.is_in_subset' class='fnname'>is_in_subset</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../src/alga/general/subset.rs.html#94-96' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks if <code>self</code> is actually part of its subset <code>T</code> (and can be converted to it).</p>
</div><h4 id='method.to_subset_unchecked' class="method hidden"><code id='to_subset_unchecked.v'>unsafe fn <a href='../alga/general/subset/trait.SupersetOf.html#tymethod.to_subset_unchecked' class='fnname'>to_subset_unchecked</a>(&amp;self) -&gt; SS</code><a class='srclink' href='../src/alga/general/subset.rs.html#99-101' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Use with care! Same as <code>self.to_subset</code> but without any property checks. Always succeeds.</p>
</div><h4 id='method.from_subset' class="method hidden"><code id='from_subset.v'>fn <a href='../alga/general/subset/trait.SupersetOf.html#tymethod.from_subset' class='fnname'>from_subset</a>(element: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>SS) -&gt; SP</code><a class='srclink' href='../src/alga/general/subset.rs.html#104-106' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inclusion map: converts <code>self</code> to the equivalent element of its superset.</p>
</div></div><h3 id='impl-Field' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../alga/general/specialized/trait.Field.html" title="trait alga::general::specialized::Field">Field</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="../alga/general/two_operators/trait.AbstractField.html" title="trait alga::general::two_operators::AbstractField">AbstractField</a>&lt;<a class="struct" href="../alga/general/operator/struct.Additive.html" title="struct alga::general::operator::Additive">Additive</a>, <a class="struct" href="../alga/general/operator/struct.Multiplicative.html" title="struct alga::general::operator::Multiplicative">Multiplicative</a>&gt; + <a class="trait" href="../alga/general/specialized/trait.MultiplicativeGroupAbelian.html" title="trait alga::general::specialized::MultiplicativeGroupAbelian">MultiplicativeGroupAbelian</a> + <a class="trait" href="../alga/general/specialized/trait.RingCommutative.html" title="trait alga::general::specialized::RingCommutative">RingCommutative</a>,&nbsp;</span></code><a href='#impl-Field' class='anchor'></a><a class='srclink' href='../src/alga/general/specialized.rs.html#20' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-ClosedAdd%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>&lt;Right&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;Right, Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;Right&gt;,&nbsp;</span></code><a href='#impl-ClosedAdd%3CRight%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/operator.rs.html#140' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-ClosedSub%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>&lt;Right&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;Right, Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;Right&gt;,&nbsp;</span></code><a href='#impl-ClosedSub%3CRight%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/operator.rs.html#141' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-ClosedMul%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>&lt;Right&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;Right, Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;Right&gt;,&nbsp;</span></code><a href='#impl-ClosedMul%3CRight%3E' class='anchor'></a><a class='srclink' href='../src/alga/general/operator.rs.html#142' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-ClosedDiv%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../alga/general/operator/trait.ClosedDiv.html" title="trait alga::general::operator::ClosedDiv">ClosedDiv</a>&lt;Right&gt; for T <span class="where fmt-newline">where<