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

« back to all changes in this revision

Viewing changes to man/fr/scicos/CURV_f.htm

  • 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
 
2
 
 
3
<!--Converted with LaTeX2HTML 2002-2-1 (1.70)
 
4
original version by:  Nikos Drakos, CBLU, University of Leeds
 
5
* revised and updated by:  Marcus Hennecke, Ross Moore, Herb Swan
 
6
* with significant contributions from:
 
7
  Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
 
8
<HTML>
 
9
<HEAD>
 
10
<TITLE>Curve </TITLE>
 
11
<META NAME="description" CONTENT="Curve ">
 
12
<META NAME="keywords" CONTENT="main">
 
13
<META NAME="resource-type" CONTENT="document">
 
14
<META NAME="distribution" CONTENT="global">
 
15
 
 
16
<META NAME="Generator" CONTENT="LaTeX2HTML v2002-2-1">
 
17
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
 
18
 
 
19
<LINK REL="STYLESHEET" HREF="main.css">
 
20
 
 
21
</HEAD>
 
22
 
 
23
<BODY bgcolor="#FFFFFF">
 
24
 
 
25
<!--Table of Child-Links-->
 
26
<A NAME="CHILD_LINKS"><STRONG>Subsections</STRONG></A>
 
27
 
 
28
<UL>
 
29
<LI><A NAME="tex2html2859"
 
30
  HREF="CURV_f.htm#SECTION00517100000000000000">Library</A>
 
31
<LI><A NAME="tex2html2860"
 
32
  HREF="CURV_f.htm#SECTION00517200000000000000">Description</A>
 
33
<LI><A NAME="tex2html2861"
 
34
  HREF="CURV_f.htm#SECTION00517300000000000000">Default properties</A>
 
35
<LI><A NAME="tex2html2862"
 
36
  HREF="CURV_f.htm#SECTION00517400000000000000">Interfacing function</A>
 
37
<LI><A NAME="tex2html2863"
 
38
  HREF="CURV_f.htm#SECTION00517500000000000000">Computational function (type 0)</A>
 
39
</UL>
 
40
<!--End of Table of Child-Links-->
 
41
<HR>
 
42
 
 
43
<H2><A NAME="SECTION00517000000000000000"></A><A NAME="CURV_f"></A>
 
44
<BR>
 
45
Curve 
 
46
</H2>
 
47
<DIV ALIGN="CENTER">
 
48
<!-- MATH
 
49
 $\epsfig{file=CURV_f.eps,width=90.00pt}$
 
50
 -->
 
51
<IMG
 
52
 WIDTH="143" HEIGHT="161" ALIGN="BOTTOM" BORDER="0"
 
53
 SRC="img16.gif"
 
54
 ALT="\epsfig{file=CURV_f.eps,width=90.00pt}">
 
55
</DIV>
 
56
<H3><font color="blue"><A NAME="SECTION00517100000000000000">
 
57
Library</A>
 
58
</font></H3>
 
59
Sources
 
60
 
 
61
<H3><font color="blue"><A NAME="SECTION00517200000000000000">
 
62
Description</A>
 
63
</font></H3>
 
64
This block defines a tabulated function of time. Between mesh points
 
65
block performs a linear interpolation. Outside tabulation block
 
66
outputs last tabulated value.  User may define the tabulation of the
 
67
function using a curve editor.  
 
68
 
 
69
<H3><font color="blue"><A NAME="SECTION00517300000000000000">
 
70
Default properties</A>
 
71
</font></H3>
 
72
 
 
73
<UL>
 
74
<LI>always active: yes
 
75
</LI>
 
76
<LI>direct-feedthrough: no
 
77
</LI>
 
78
<LI>zero-crossing: no
 
79
</LI>
 
80
<LI>mode: no
 
81
</LI>
 
82
<LI>number/sizes of inputs: 0 / 
 
83
</LI>
 
84
<LI>number/sizes of outputs: 1 / 1
 
85
</LI>
 
86
<LI>number/sizes of activation inputs: 0 / 
 
87
</LI>
 
88
<LI>number/sizes of activation outputs: 0 / 
 
89
</LI>
 
90
<LI>continuous-time state: no
 
91
</LI>
 
92
<LI>discrete-time state: no
 
93
</LI>
 
94
<LI>name of computational function: <EM>intplt</EM>
 
95
</LI>
 
96
</UL>
 
97
<H3><font color="blue"><A NAME="SECTION00517400000000000000">
 
98
Interfacing function</A>
 
99
</font></H3>
 
100
<TT>scilab/macros/scicos_blocks/sources/CURV_f.sci</TT>
 
101
 
 
102
<H3><font color="blue"><A NAME="SECTION00517500000000000000">
 
103
Computational function (type 0)</A>
 
104
</font></H3>
 
105
<BR>
 
106
<PRE>      subroutine intplt(flag,nevprt,t,xd,x,nx,z,nz,tvec,ntvec,
 
107
     &amp;     rpar,nrpar,ipar,nipar,u,nu,y,ny)
 
108
c     Copyright INRIA
 
109
 
 
110
c     Scicos block simulator
 
111
c     y=f(t) for f a tabulated function from R to R^ny
 
112
c
 
113
c     ipar(1)             : np number of mesh points
 
114
c     rpar(1:ny+1,1:np) : matrix of mesh point coordinates
 
115
c                       first row contains t coordinate mesh points
 
116
c                       next rows contains y coordinates mesh points
 
117
c                       (one row for each output)
 
118
c
 
119
      double precision t,xd(*),x(*),z(*),tvec(*),rpar(*),u(*),y(*)
 
120
      integer flag,nevprt,nx,nz,ntvec,nrpar,ipar(*)
 
121
      integer nipar,nu,ny
 
122
 
 
123
c
 
124
c
 
125
      np=ipar(1)
 
126
      call intp(t,rpar(1),rpar(1+np),ny,np,y)
 
127
 
 
128
      end
 
129
     </PRE>
 
130
<BR><HR>
 
131
<ADDRESS>
 
132
Ramine Nikoukhah
 
133
2004-06-22
 
134
</ADDRESS>
 
135
</BODY>
 
136
</HTML>