File: mycmatptr.f

package info (click to toggle)
scilab 4.0-12
  • links: PTS
  • area: non-free
  • in suites: etch, etch-m68k
  • size: 100,640 kB
  • ctags: 57,333
  • sloc: ansic: 377,889; fortran: 242,862; xml: 179,819; tcl: 42,062; sh: 10,593; ml: 9,441; makefile: 4,377; cpp: 1,354; java: 621; csh: 260; yacc: 247; perl: 130; lex: 126; asm: 72; lisp: 30
file content (231 lines) | stat: -rw-r--r-- 5,571 bytes parent folder | download | duplicates (3)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
      logical function getspmat(fname,topk,lw,type,m,n,nnz,lr)
C     ==================================================
C     verifie qu'il y a une matrice creuse scalaire 
C     a la position lw en renvoyant .true. ou .false.
C	  suivant la reponse
C     Entree :
C       lw : position (entier)
C     Sortie :
C       m, n dimensions
C       lr : pointe sur le element de la matrice creuse
C     ==================================================
C!
C      implicit undefined (a-z)
      character fname*(*)
      integer topk,lw,m,n,lr
      integer il
      integer iadr
      include '../stack.h'
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c
      il=iadr(lstk(lw))
C     test particulier decouvert ds logic.f
      if(istk(il).lt.0) il=iadr(istk(il+1))
      if(istk(il).ne.5) then
         getspmat=.false.
         call cvname(ids(1,pt+1),fname,0)
         err=rhs+(lw-topk)
         call error(217)
      else
         m=istk(il+1)
         n=istk(il+2)
         type=istk(il+3)
         nnz=istk(il+4)
         lr=il+5+m+nnz
         getspmat=.true.
      endif
      return
      end


      logical function mycspmatptr(name,m,n,type,nnz,lp)
c!purpose
c     mycspmatptr returns the adress of real/complex sparse matrix "name"
c     in scilab's internal stack
c     m=number of rows
c     n=number of columns
c     type= 0 for double and 1 for complex
c     stk(lp),stk(lp+1),...,stk(lp+nnz-1)= entries 
c     If matrix "name" not in Scilab stack, returns m=n=-1.
c
      character*(*) name
      integer type
c
      include '../stack.h'
      integer iadr,sadr
      integer id(nsiz)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c
      mycspmatptr=.false.
      lon=0
      do 100 i=1,csiz
         if(name(i:i).eq.char(0)) goto 200
         lon=lon+1
 100  continue
 200  continue
      lon1=len(name)
      if((lon1.gt.0).and.(lon1.lt.lon)) then
         ln=lon1
      else
         ln=lon
      endif
      if(lon.eq.lon1) ln=lon
      ln=min(nlgh,ln)
      call cvname(id,name(1:ln),0)
c
      fin=-1
      call stackg(id)
      if (fin .eq. 0) then
         call putid(ids(1,pt+1),id)
         call error(4)
         m=-1
         n=-1
         return
      endif
      il=iadr(lstk(fin))
      if(istk(il).ne.5)
     $     call error(44)
      if(err.gt.0) return
      m=istk(il+1)
      n=istk(il+2)
      type=istk(il+3)
      nnz=istk(il+4)
      lp=sadr(il+5+m+nnz)
      mycspmatptr=.true.
      end


      logical function mycspbmatptr(name,m,n,type,nnz,lp)
c!purpose
c     mycspmatptr returns the adress of real/complex sparse matrix "name"
c     in scilab's internal stack
c     m=number of rows
c     n=number of columns
c     type= 0 for double and 1 for complex
c     stk(lp),stk(lp+1),...,stk(lp+nnz-1)= entries 
c     If matrix "name" not in Scilab stack, returns m=n=-1.
c
      character*(*) name
      integer type
c
      include '../stack.h'
      integer iadr,sadr
      integer id(nsiz)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c
      mycspbmatptr=.false.
      lon=0
      do 100 i=1,csiz
         if(name(i:i).eq.char(0)) goto 200
         lon=lon+1
 100  continue
 200  continue
      lon1=len(name)
      if((lon1.gt.0).and.(lon1.lt.lon)) then
         ln=lon1
      else
         ln=lon
      endif
      if(lon.eq.lon1) ln=lon
      ln=min(nlgh,ln)
      call cvname(id,name(1:ln),0)
c
      fin=-1
      call stackg(id)
      if (fin .eq. 0) then
         call putid(ids(1,pt+1),id)
         call error(4)
         m=-1
         n=-1
         return
      endif
      il=iadr(lstk(fin))
      if(istk(il).ne.6)
     $     call error(44)
      if(err.gt.0) return
      m=istk(il+1)
      n=istk(il+2)
      type=istk(il+3)
      nnz=istk(il+4)
      lp=sadr(il+5+m+nnz)
      mycspbmatptr=.true.
      end


      logical function mycmatptr(name,m,n,type,lp)
c!purpose
c     matptr returns the adress of real matrix "name"
c     in scilab's internal stack
c     m=number of rows
c     n=number of columns
c     type= 0 for double and 1 for complex
c     stk(lp),stk(lp+1),...,stk(lp+m*n-1)= entries (columnwise)
c     If matrix "name" not in Scilab stack, returns m=n=-1.
c
c    Example of use:
c    Amat is a real 2 x 3 scilab matrix
c    your subroutine should be as follows:
c
c    subroutine mysubr(...)
c    include '../stack.h'
c    ...
c    logic= cmatptr('Amat',m,n,lp)
c    => m=3 , n=2, and stk(lp)=Amat(1,1)
c                      stk(lp+1)=Amat(2,1)
c                      stk(lp+2)=Amat(3,1)
c                      stk(lp+3)=Amat(1,2) ...
c                      stk(lp+5)=Amat(3,2)
c   see example in fydot.f file
c   see also  readmat.f, matz.f
      character*(*) name
      integer type
c
      include '../stack.h'
      integer iadr,sadr
      integer id(nsiz)
c
      iadr(l)=l+l-1
      sadr(l)=(l/2)+1
c
      mycmatptr=.false.
      lon=0
      do 100 i=1,csiz
         if(name(i:i).eq.char(0)) goto 200
         lon=lon+1
 100  continue
 200  continue
      lon1=len(name)
      if((lon1.gt.0).and.(lon1.lt.lon)) then
         ln=lon1
      else
         ln=lon
      endif
      if(lon.eq.lon1) ln=lon
      ln=min(nlgh,ln)
      call cvname(id,name(1:ln),0)
c
      fin=-1
      call stackg(id)
      if (fin .eq. 0) then
         call putid(ids(1,pt+1),id)
         call error(4)
         m=-1
         n=-1
         return
      endif
      il=iadr(lstk(fin))
      if(istk(il).ne.1.or.(istk(il+3).ne.0.and.istk(il+3).ne.1))
     $     call error(44)
      if(err.gt.0) return
      m=istk(il+1)
      n=istk(il+2)
      type = istk(il+3)
      lp=sadr(il+4)
      mycmatptr=.true.
      end