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

« back to all changes in this revision

Viewing changes to man/eng/linear/orth.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>orth</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="orth"> orthogonal basis</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>Q=orth(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>: real or complex matrix</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>Q</PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>: real or complex matrix</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
    </PARAM_INDENT>
 
27
  </PARAM>
 
28
  <DESCRIPTION>
 
29
    <P><VERB>Q=orth(A)</VERB> returns <VERB>Q</VERB>, an orthogonal
 
30
    basis for the span of <VERB>A</VERB>.  Range(<VERB>Q</VERB>) =
 
31
    Range(<VERB>A</VERB>) and <VERB>Q'*Q=eye</VERB>.</P>
 
32
    <P>
 
33
    The number of columns of <VERB>Q</VERB> is the rank of
 
34
    <VERB>A</VERB> as determined by the QR algorithm.</P>
 
35
  </DESCRIPTION>
 
36
  <EXAMPLE>
 
37
<![CDATA[
 
38
A=rand(5,3)*rand(3,4);
 
39
[X,dim]=rowcomp(A);X=X';
 
40
svd([orth(A),X(:,1:dim)])
 
41
 ]]>
 
42
  </EXAMPLE>
 
43
  <SEE_ALSO>
 
44
    <SEE_ALSO_ITEM>
 
45
      <LINK>qr</LINK>
 
46
    </SEE_ALSO_ITEM>
 
47
    <SEE_ALSO_ITEM>
 
48
      <LINK>rowcomp</LINK>
 
49
    </SEE_ALSO_ITEM>
 
50
    <SEE_ALSO_ITEM>
 
51
      <LINK>colcomp</LINK>
 
52
    </SEE_ALSO_ITEM>
 
53
    <SEE_ALSO_ITEM>
 
54
      <LINK>range</LINK>
 
55
    </SEE_ALSO_ITEM>
 
56
  </SEE_ALSO>
 
57
</MAN>