source: Sophya/trunk/SophyaLib/TArray/utilarr.cc@ 2587

Last change on this file since 2587 was 2288, checked in by cmv, 23 years ago

debug decodage de string rz dans EnumeratedSeq 5/12/02

File size: 8.6 KB
RevLine 
[785]1// Utility classes for template numerical arrays
2// R. Ansari, C.Magneville 03/2000
3
4#include "machdefs.h"
5#include "utilarr.h"
[850]6#include "srandgen.h"
[785]7
8// Classe utilitaires
[850]9
[1103]10Sequence::~Sequence()
11{
12}
13
[894]14//////////////////////////////////////////////////////////
[926]15/*!
16 \class SOPHYA::RandomSequence
17 \ingroup TArray
[1404]18 Base class to generate a sequence of random values
[926]19*/
20
[894]21//! Constructor
22/*!
23 \param typ : generator type
24 \param m : mean parameter of the generator (if needed)
25 \param s : sigma parameter of the generator (if needed)
26 */
[850]27RandomSequence::RandomSequence(int typ, double m, double s)
28{
29 typ_ = (typ == Flat) ? Flat : Gaussian;
30 mean_ = m;
31 sig_ = s;
32}
[1103]33RandomSequence::~RandomSequence()
34{
35}
[850]36
[894]37//! Return random sequence values.
[935]38/*!
39 \return If typ = Flat : return [-1,+1]*sig + mean
40 \return If typ = Gaussian : return gaussian distributed
41 with \b mean mean and sigma \b sig
42 */
[850]43double RandomSequence::Rand()
44{
45 if (typ_ == Flat)
46 return(drandpm1()*sig_ + mean_);
47 else return(GauRnd(mean_, sig_));
48}
49
[1156]50MuTyV & RandomSequence::Value(sa_size_t k) const
[1103]51{
52 if (typ_ == Flat) retv_ = drandpm1()*sig_ + mean_;
53 else retv_ = GauRnd(mean_, sig_);
54 return retv_;
55}
[850]56
[1103]57
[894]58//////////////////////////////////////////////////////////
[926]59/*!
[1103]60 \class SOPHYA::RegularSequence
[926]61 \ingroup TArray
62 Class to generate a sequence of values
63*/
64
[894]65//! Constructor
66/*!
67 \param start : start value
68 \param step : step value
[1404]69 \param f : pointer to the sequence function (default = NULL, f(x)=x )
[894]70
[1103]71 See \ref RegularSequenceOperat "operator()"
[894]72 */
[1103]73RegularSequence::RegularSequence(double start, double step, Arr_DoubleFunctionOfX f)
[785]74{
75 start_ = start;
76 step_ = step;
77 myf_ = f;
78}
79
[1103]80RegularSequence::~RegularSequence()
[850]81{
82}
83
[894]84//! Get the \b k th value
85/*!
86 \param k : index of the value
[1103]87 \anchor RegularSequenceOperat
[1404]88
89 \return f(start+k*step)
[894]90
91 */
[1103]92
[1156]93MuTyV & RegularSequence::Value (sa_size_t k) const
[785]94{
[1103]95 double x = start_+(double)k*step_;
96 if (myf_) x = myf_(x);
97 retv_ = x;
98 return(retv_);
[785]99}
100
[1404]101/*!
102 \class SOPHYA::EnumeratedSequence
103 \ingroup TArray
104 Explicitly defined sequence of values. The comma operator has
105 been redefined to let an easy definition of sequences.
106
107 \code
108 // Initializing a sequence
109 EnumeratedSequence es;
110 es = 11, 22, 33, 44, 55, 66;
111
112 for(int k=0; k<8; k++)
113 cout << " k= " << k << " es(k)= " << es(k) << endl;
[1558]114
115 // Decoding a sequence from a string
116 EnumeratedSequence ess;
117 int nbad;
118 ess.Append("56.5 (1.,-1.) 4 8 16", nbad);
119 cout << ess;
[1404]120 \endcode
121*/
122
[1558]123//! Default constructor
[1404]124EnumeratedSequence::EnumeratedSequence()
125{
126}
127
[1558]128//! Copy constructor
129EnumeratedSequence::EnumeratedSequence(EnumeratedSequence const & es)
130{
131 Append(es);
132}
133
[1103]134EnumeratedSequence::~EnumeratedSequence()
135{
136}
137
[1404]138//! Return the k th value in the sequence (default = 0)
[1156]139MuTyV & EnumeratedSequence::Value (sa_size_t k) const
[1103]140{
141 if (k >= vecv_.size()) retv_ = 0;
142 else retv_ = vecv_[k];
143 return(retv_);
144}
145
[1558]146//! Appends a new value to the sequence
[1103]147EnumeratedSequence & EnumeratedSequence::operator , (MuTyV const & v)
148{
149 vecv_.push_back(v);
150 return(*this);
151}
152
[1558]153//! Initialize the sequence with a single value \b v
[1156]154EnumeratedSequence & EnumeratedSequence::operator = (MuTyV const & v)
155{
156 vecv_.clear();
157 vecv_.push_back(v);
158 return(*this);
159}
160
[1558]161//! Copy operator
162EnumeratedSequence & EnumeratedSequence::operator = (EnumeratedSequence const & seq)
[1550]163{
[1558]164 Clear();
165 Append(seq);
166 return(*this);
[1550]167}
168
[1558]169
170//! Prints the list to the output stream \b os
[1550]171void EnumeratedSequence::Print(ostream& os) const
172{
173 os << " EnumeratedSequence::Print() - Size()= " << Size() << endl;
174 for(int k=0; k<vecv_.size(); k++) {
175 os << vecv_[k];
176 if ((k > 0) && (k%10 == 0)) os << endl;
177 else os << " " ;
178 }
[1558]179 os << endl;
[1550]180 return;
181}
182
[1558]183//! Append the \b seq to the end of the sequence.
184/*!
185 \return the number of added elements.
186*/
187sa_size_t EnumeratedSequence::Append(EnumeratedSequence const & seq)
[1550]188{
[1558]189 for(int k=0; k<seq.vecv_.size(); k++)
190 vecv_.push_back(seq.vecv_[k]);
191 return(seq.vecv_.size());
[1550]192}
193
[1558]194//! Decodes the string, appending values to the end of the sequence.
195/*!
196 \param str : string to be decoded
[2286]197 \param nbad : number of unmatched quotes or parenthesis (returned value)
198 \param sep : word separator in string. Each word is decoded as a MuTyV value.
[1558]199 \return the number of added elements.
200*/
[2286]201sa_size_t EnumeratedSequence::Append(string const & str, int& nbad, const char* sep)
[1558]202{
203 nbad = 0;
204 sa_size_t n = 0;
205 size_t l = str.length();
206 if (l < 1) return(0);
[2286]207 // if ((str[0] == '#') || (str[0] == '*')) return(0);
[1558]208 size_t q = 0;
[2286]209 size_t p = 0;
210 /*
211 size_t p = str.find_first_not_of(sep);
[1558]212 if ((str[p] == '+') || (str[p] == '-')) {
213 if (p == l-1) return(0);
214 if (!isdigit(str[p+1])) return(0);
215 }
216 else if (!isdigit(str[p]) && (str[p] != '\'') && (str[p] != '(') ) return(0);
[2286]217 */
[1558]218 while(q < l) {
[2286]219 p = str.find_first_not_of(sep,q);
[1558]220 if (p >= l) break;
221 if (str[p] == '\'') { // Decodage d'un string
222 q = str.find('\'',p+1);
223 if (q < l) {
224 vecv_.push_back(MuTyV(str.substr(p+1,q-p-1)));
225 n++; q++;
226 }
227 else nbad++;
228 }
229 else if (str[p] == '(') { // Decodage d'un complex
230 q = str.find(')',p);
231 if (q < l) {
232 q++;
233 MuTyV mtv(str.substr(p,q-p));
[2149]234 complex<r_8> z = mtv.operator complex<r_8>();
[1558]235 vecv_.push_back(MuTyV(z));
236 n++;
237 }
238 else nbad++;
239 }
240 else {
[2286]241 q = str.find_first_of(sep,p);
[2288]242 if ( !isdigit(str[p]) && !(str[p] == '+')
243 && !(str[p] == '-') && !(str[p] == '.') ) { // une chaine
[2286]244 vecv_.push_back(MuTyV(str.substr(p,q-p)));
[2288]245 n++;
[1558]246 }
247 else { // C'est un nombre
[2288]248 if (str.find_first_of(".eE",p) < q) { // c'est un flottant
[1558]249 r_8 x = atof(str.substr(p,q-p).c_str());
250 vecv_.push_back(MuTyV(x));
251 }
252 else { // un entier
253 int_8 l = atol(str.substr(p,q-p).c_str());
254 vecv_.push_back(MuTyV(l));
255 }
256 n++;
257 }
258 }
259 }
260 return (n);
261}
262
263//! Decodes the input ASCII stream, creating a sequence of values
264/*! \param is : Input ASCII stream
265 \param nr : Number of non empty (or comment) lines in stream (return value)
266 \param nc : Number of columns (= ntot/nlines) (return value)
[2286]267 \param clm : Lines starting with clm character are treated as comment lines
268 \param sep : word separator in lines
[1558]269 \return Number of decoded elements
270*/
[2286]271sa_size_t EnumeratedSequence::FillFromFile(istream& is, sa_size_t& nr, sa_size_t& nc,
272 char clm, const char* sep)
[1550]273{
[1558]274 nr = 0;
275 nc = 0;
276 sa_size_t n = 0;
277 char buff[256];
278 string line;
279 int nbad, nbadtot, nel;
280 nbadtot = nbad = 0;
281 while (!is.eof()) {
282 is.clear();
283 is.getline(buff, 256);
[1560]284 // cout << " DBG : buff=" << buff << " :state=" << is.rdstate() << endl;
[2288]285 line += buff; nel = 0;
[1558]286 if (is.good()) {
[2286]287 if ((line.length() > 0) && (line[0]!=clm)) {
288 nel = Append(line, nbad);
289 if (nel > 0) {
290 nr++; n += nel;
291 }
292 nbadtot += nbad;
[1558]293 }
[2288]294 // cout << " Decoding line = " << line << " Nel= " << nel << endl;
[1558]295 line = "";
296 }
297 }
[2286]298 if ((line.length() > 0) && (line[0]!=clm)) {
[1558]299 nel = Append(line, nbad);
[2288]300 // cout << " Decoding Eline = " << line << " Nel= " << nel << endl;
[1558]301 if (nel > 0) {
302 nr++; n += nel;
303 }
304 nbadtot += nbad;
305 line = "";
306 }
307 if (nbadtot > 0)
308 cout << "EnumeratedSequence::FillFromFile()/Warning " << nbadtot
309 << " bad match (quotes or parenthesis) in stream " << endl;
310 nc = n/nr;
311 return (n);
[1550]312}
313
[894]314//////////////////////////////////////////////////////////
[926]315/*!
316 \class SOPHYA::Range
317 \ingroup TArray
318 Class to define a range of indexes
319*/
320
[894]321//! Constructor
322/*!
323 Define a range of indexes
[1412]324 \param start : start index (inclusive)
325 \param end : end index (inclusive)
326 \param size : size (number of elements, used if end \<= start)
327 \param step : step (or stride)
[894]328
329 \warning If \b end \> \b start, \b size is computed automatically
330 \warning If not \b size is fixed and \b end recomputed
331 */
[1156]332Range::Range(sa_size_t start, sa_size_t end, sa_size_t size, sa_size_t step)
[785]333{
334 start_ = start;
335 step_ = (step > 0) ? step : 1;
[813]336 if (end > start) { // Taille calcule automatiquement
337 end_ = end;
338 if (step_ > ((end_-start_)+1)) size_ = 1;
339 else size_ = ((end-start)+1)/step_;
340 }
341 else { // Taille fixee
342 size_ = size;
343 end_ = start_+size_*step_;
344 }
[785]345}
346
[804]347/*
[1156]348Range & Range::operator = (sa_size_t start)
[785]349{
350 start_ = start;
351 size_ = 1;
352 step_ = 1;
353 return (*this);
354}
[804]355*/
356
357
[894]358//////////////////////////////////////////////////////////
[926]359/*!
360 \class SOPHYA::IdentityMatrix
361 \ingroup TArray
362 Class to define an identity matrix
363*/
364
[894]365//! Constructor of a (n,n) diagonal matrix with value diag on the diagonal
[1156]366IdentityMatrix::IdentityMatrix(double diag, sa_size_t n)
[804]367{
368 size_ = n;
369 diag_ = diag;
370}
Note: See TracBrowser for help on using the repository browser.