~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to doc/interpreter/HTML/Numeric-Objects.html

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html lang="en">
 
2
<head>
 
3
<title>Numeric Objects - Untitled</title>
 
4
<meta http-equiv="Content-Type" content="text/html">
 
5
<meta name="description" content="Untitled">
 
6
<meta name="generator" content="makeinfo 4.11">
 
7
<link title="Top" rel="start" href="index.html#Top">
 
8
<link rel="up" href="Built_002din-Data-Types.html#Built_002din-Data-Types" title="Built-in Data Types">
 
9
<link rel="next" href="Missing-Data.html#Missing-Data" title="Missing Data">
 
10
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
 
11
<meta http-equiv="Content-Style-Type" content="text/css">
 
12
<style type="text/css"><!--
 
13
  pre.display { font-family:inherit }
 
14
  pre.format  { font-family:inherit }
 
15
  pre.smalldisplay { font-family:inherit; font-size:smaller }
 
16
  pre.smallformat  { font-family:inherit; font-size:smaller }
 
17
  pre.smallexample { font-size:smaller }
 
18
  pre.smalllisp    { font-size:smaller }
 
19
  span.sc    { font-variant:small-caps }
 
20
  span.roman { font-family:serif; font-weight:normal; } 
 
21
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
 
22
--></style>
 
23
</head>
 
24
<body>
 
25
<div class="node">
 
26
<p>
 
27
<a name="Numeric-Objects"></a>
 
28
Next:&nbsp;<a rel="next" accesskey="n" href="Missing-Data.html#Missing-Data">Missing Data</a>,
 
29
Up:&nbsp;<a rel="up" accesskey="u" href="Built_002din-Data-Types.html#Built_002din-Data-Types">Built-in Data Types</a>
 
30
<hr>
 
31
</div>
 
32
 
 
33
<h4 class="subsection">3.1.1 Numeric Objects</h4>
 
34
 
 
35
<p><a name="index-numeric-constant-155"></a><a name="index-numeric-value-156"></a>
 
36
Octave's built-in numeric objects include real, complex, and integer
 
37
scalars and matrices.  All built-in floating point numeric data is
 
38
currently stored as double precision numbers.  On systems that use the
 
39
IEEE floating point format, values in the range of approximately
 
40
 2.2251e-308 to 1.7977e+308
 
41
 can be stored, and the relative precision is approximately
 
42
 2.2204e-16. 
 
43
The exact values are given by the variables <code>realmin</code>,
 
44
<code>realmax</code>, and <code>eps</code>, respectively.
 
45
 
 
46
   <p>Matrix objects can be of any size, and can be dynamically reshaped and
 
47
resized.  It is easy to extract individual rows, columns, or submatrices
 
48
using a variety of powerful indexing features.  See <a href="Index-Expressions.html#Index-Expressions">Index Expressions</a>.
 
49
 
 
50
   <p>See <a href="Numeric-Data-Types.html#Numeric-Data-Types">Numeric Data Types</a>, for more information.
 
51
 
 
52
   </body></html>
 
53