File: inv_coeff.xml

package info (click to toggle)
scilab 4.1.2-6
  • links: PTS, VCS
  • area: non-free
  • in suites: lenny
  • size: 113,992 kB
  • ctags: 65,732
  • sloc: ansic: 406,468; fortran: 242,412; xml: 223,812; tcl: 46,703; sh: 10,945; ml: 9,441; makefile: 4,697; cpp: 1,354; java: 926; csh: 260; yacc: 247; perl: 130; lex: 126; asm: 72; lisp: 30
file content (58 lines) | stat: -rw-r--r-- 1,883 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> 
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
<MAN>
  <LANGUAGE>fr</LANGUAGE>
  <TITLE>inv_coeff  </TITLE>
  <TYPE>Scilab Function  </TYPE>
  <DATE>April 1993  </DATE>
  <SHORT_DESCRIPTION name="inv_coeff"> construction d&apos;une matrice polynomiale  partir des coefficients  </SHORT_DESCRIPTION>
  <CALLING_SEQUENCE>
  <CALLING_SEQUENCE_ITEM>[P]=inv_coeff(C,[,d,[name])  </CALLING_SEQUENCE_ITEM>
  </CALLING_SEQUENCE>
  <PARAM>
 <PARAM_INDENT>
  <PARAM_ITEM>
  <PARAM_NAME>C  </PARAM_NAME>
  <PARAM_DESCRIPTION>
  <SP>
    : &quot;grosse&quot; matrice des coefficients
</SP>
  </PARAM_DESCRIPTION> 
  </PARAM_ITEM>
  <PARAM_ITEM>
  <PARAM_NAME>d  </PARAM_NAME>
  <PARAM_DESCRIPTION>
  <SP>
    : degr de la matrice polynomiale (paramtre optionnel valant par dfaut  <VERB>d=-1+size(C,&apos;c&apos;)/size(C,&apos;r&apos;)</VERB>)
</SP>
  </PARAM_DESCRIPTION> 
  </PARAM_ITEM>
  <PARAM_ITEM>
  <PARAM_NAME>name  </PARAM_NAME>
  <PARAM_DESCRIPTION>
  <SP>
    : chane de caractres (indtermine du polynme, <VERB>&apos;x&apos;</VERB> par dfaut).
</SP>
  </PARAM_DESCRIPTION> 
  </PARAM_ITEM>
 </PARAM_INDENT>
  </PARAM>
  <DESCRIPTION>
  <P>
    <VERB>P=inv_coeff(Mp,k)</VERB>, quand <VERB>k</VERB> est compatible avec la taille de <VERB>Mp</VERB> renvoie une matrice polynomiale de degr k. <VERB>C=[C0,C1,...,Ck]</VERB> et 
    <VERB>P= C0 + C1*x +... +Ck*x^k</VERB>.
  </P>
  </DESCRIPTION>
  <EXAMPLE><![CDATA[
A=int(10*rand(2,6))
// construction d'une matrice polynomiale de degr 1
P=inv_coeff(A,1)
norm(coeff(P)-A)
// utilisation de la valeur par dfaut du degr
P1=inv_coeff(A)
norm(coeff(P1)-A)
 ]]></EXAMPLE>
  <SEE_ALSO>
    <SEE_ALSO_ITEM> <LINK>poly</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>degree</LINK> </SEE_ALSO_ITEM>     <SEE_ALSO_ITEM> <LINK>coeff</LINK> </SEE_ALSO_ITEM>
  </SEE_ALSO>
</MAN>