Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 7ebd25ac536d248d499a3ce2acda963a > files > 4812

Macaulay2-1.3.1-8.fc15.i686.rpm

<?xml version="1.0" encoding="utf-8" ?>  <!-- for emacs: -*- coding: utf-8 -*- -->
<!-- Apache may like this line in the file .htaccess: AddCharset utf-8 .html -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"	 "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg-flat.dtd" >
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head><title>norm</title>
<link rel="stylesheet" type="text/css" href="../../../../Macaulay2/Style/doc.css"/>
</head>
<body>
<table class="buttons">
  <tr>
    <td><div><a href="_not_spdocumented_spyet.html">next</a> | <a href="___No__Print.html">previous</a> | <a href="_not_spdocumented_spyet.html">forward</a> | <a href="___No__Print.html">backward</a> | up | <a href="index.html">top</a> | <a href="master.html">index</a> | <a href="toc.html">toc</a> | <a href="http://www.math.uiuc.edu/Macaulay2/">Macaulay2 web site</a></div>

    </td>
  </tr>
</table>
<hr/>
<div><h1>norm</h1>
<div class="single"><h2>Synopsis</h2>
<ul><li><div class="list"><dl class="element"><dt class="heading">Usage: </dt><dd class="value"><div><tt>norm M</tt><br/><tt>norm(p,M)</tt></div>
</dd></dl>
</div>
</li>
<li><div class="single">Inputs:<ul><li><span><tt>M</tt>, <span>a <a href="___Mutable__Matrix.html">mutable matrix</a></span>, <span>a <a href="___Matrix.html">matrix</a></span>, <span>a <a href="___Ring__Element.html">ring element</a></span>, <span>a <a href="___Number.html">number</a></span>, <span>a <a href="___Vector.html">vector</a></span>, or <span>a <a href="___List.html">list</a></span></span></li>
<li><span><tt>p</tt>, <span>a <a href="___R__R.html">real number</a></span> or <span>an <a href="___Infinite__Number.html">infinite number</a></span>, specifying which norm to compute.  Currently, only <tt>p=infinity</tt> is accepted.</span></li>
</ul>
</div>
</li>
<li><div class="single">Outputs:<ul><li><span>the <i>L<sup>p</sup></i>-norm of M computed to the minimum of the precisions of M and of p.</span></li>
</ul>
</div>
</li>
</ul>
</div>
<div class="single"><h2>Description</h2>
<div><table class="examples"><tr><td><pre>i1 : printingPrecision = 2

o1 = 2</pre>
</td></tr>
<tr><td><pre>i2 : R = RR_100

o2 = RR
       100

o2 : RealField</pre>
</td></tr>
<tr><td><pre>i3 : M = 10*random(R^3,R^10)

o3 = | 9.4 8.5 3.2 2.7 9.9 9   7   5.6 6.6 1.3 |
     | 6.6 6.6 9.5 2.3 2.3 6.9 .98 4.6 8   4.6 |
     | 5.7 3.6 7.7 9.4 4   9.1 9.5 4.9 8.1 2.3 |

             3       10
o3 : Matrix R  &lt;--- R</pre>
</td></tr>
<tr><td><pre>i4 : norm M

o4 = 9.91463968904013992720181916376

o4 : RR (of precision 100)</pre>
</td></tr>
<tr><td><pre>i5 : norm_(numeric_20 infinity) M

o5 = 9.91464

o5 : RR (of precision 20)</pre>
</td></tr>
<tr><td><pre>i6 : norm {3/2,4,-5}

o6 = 5</pre>
</td></tr>
</table>
The norm of a polynomial is the norm of the vector of its coefficients.<table class="examples"><tr><td><pre>i7 : RR[x]

o7 = RR  [x]
       53

o7 : PolynomialRing</pre>
</td></tr>
<tr><td><pre>i8 : (1+x)^5

      5     4      3      2
o8 = x  + 5x  + 10x  + 10x  + 5x + 1

o8 : RR  [x]
       53</pre>
</td></tr>
<tr><td><pre>i9 : norm oo

o9 = 10

o9 : RR (of precision 53)</pre>
</td></tr>
</table>
</div>
</div>
<div class="waystouse"><h2>Ways to use <tt>norm</tt> :</h2>
<ul><li>norm(InexactField,MutableMatrix)</li>
<li>norm(InfiniteNumber,Matrix)</li>
<li>norm(InfiniteNumber,Number)</li>
<li>norm(InfiniteNumber,RingElement)</li>
<li>norm(List)</li>
<li>norm(Matrix)</li>
<li>norm(MutableMatrix)</li>
<li>norm(Number)</li>
<li>norm(RingElement)</li>
<li>norm(RR,Matrix)</li>
<li>norm(RR,MutableMatrix)</li>
<li>norm(RR,Number)</li>
<li>norm(RR,RingElement)</li>
<li>norm(Vector)</li>
</ul>
</div>
</div>
</body>
</html>