~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to man/eng/linear/rref.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>rref</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="rref"> computes  matrix row echelon form by lu transformations</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>R=rref(A)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>A</PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>:  m x n matrix with scalar entries</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>R</PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>:  m x n matrix,row echelon form of a</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
    </PARAM_INDENT>
 
27
  </PARAM>
 
28
  <DESCRIPTION>
 
29
    <P><VERB>rref</VERB> computes the row echelon form of the given matrix by left lu
 
30
    decomposition. If ones need the transformation used just call
 
31
    <VERB>X=rref([A,eye(m,m)])</VERB> the row echelon form <VERB>R</VERB> is <VERB>X(:,1:n)</VERB> and
 
32
    the left transformation <VERB>L</VERB> is given by <VERB>X(:,n+1:n+m)</VERB> such as <VERB>L*A=R</VERB></P>
 
33
  </DESCRIPTION>
 
34
  <EXAMPLE>
 
35
<![CDATA[
 
36
A=[1 2;3 4;5 6];
 
37
X=rref([A,eye(3,3)]);
 
38
R=X(:,1:2)
 
39
L=X(:,3:5);L*A
 
40
 ]]>
 
41
  </EXAMPLE>
 
42
  <SEE_ALSO>
 
43
    <SEE_ALSO_ITEM>
 
44
      <LINK>lu</LINK>
 
45
    </SEE_ALSO_ITEM>
 
46
    <SEE_ALSO_ITEM>
 
47
      <LINK>qr</LINK>
 
48
    </SEE_ALSO_ITEM>
 
49
  </SEE_ALSO>
 
50
</MAN>