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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554
|
% datutils.sl: convenience functions for several Data_Types
%
% Copyright (c) 2006 Guenter Milde (milde users.sf.net)
% Released under the terms of the GNU General Public License (ver. 2 or later)
%
% VERSIONS
% 1.0 first public release
% 1.1 new functions pop2array, array, null_fun, array_repeat,
% array_fill_missing
% 1.2 removed array_concat, array_append, array_insert
% after learning about [[1,2],3] == [1,2,3]
% removed array_fill_missing (buggy)
% 1.2.1 reincluded array_append
% (as [[1,2],[3,4]] -> 2d Array in SLang < 1.16)
% moved string_repeat and string_reverse to strutils.sl
% 1.2.2 bugfix in array_max(), the definition in sl_utils contradicted
% the intrinsic one which resembles array_max() (report PB)
% 1.2.3 removed "public" keyword from all functions
% 1.2.3 added provide("datutils");
% 2.0 2006-06-22 added list functions, full tm documentation
% 2.1 2006-10-04 added list_concat()
% 2.2 2006-11-27 removed array_reverse(): it is not used anywhere and
% conflicts with the internal SLang function of the same
% name (activated by default in Jed >= 0.99.19-51)
% 2.2.1 2007-02-06 new function list_inject(),
% new versions of assoc_get_key() and array_sum() (JED)
% 2.2.2 2007-10-18 fix array_value_exists() for Any_Type arrays
% documentation update
% 2.2.3 2009-10-05 fallback defs of __push_list(), __pop_list()
% deprecated push_list(), pop2list(),
% favour literal constructs for array<->list conversion
% 2.3 2010-12-08 name list_concat() to list_extend() to avoid
% clash with intrinsic added in S-Lang 2.2.3 (report PB)
_autoload(
"push_defaults", "sl_utils",
"push_array", "sl_utils",
2);
% --- Array functions ------------------------------------------
% helper functions
define null_fun() {}
static define dereference(arg)
{
return @arg;
}
static define typeof_ref(ref)
{
return typeof(@ref);
}
%!%+
%\function{pop2array}
%\synopsis{Return N stack-items as an array of type \var{type}}
%\usage{Array_Type pop2array(N=_stkdepth, [type])}
%\description
% Return an array that consists of the N topmost stack elements.
% The top element becomes element arr[N-1].
% If \var{type} is not given, autodetermine it (fall back to \var{Any_Type}
% if the element types differ).
%\notes
% Attention: never use \sfun{pop2array} in a function call with optional
% arguments , i.e. not
%#v+
% show(pop2array())
%#v-
% but
%#v+
% $1 = pop2array();
% show($1);
%#v-
%\seealso{array, pop2list, push_array}
%!%-
define pop2array() % (N=_stkdepth, [type])
{
variable n, type;
(n, type) = push_defaults(_stkdepth(), Any_Type, _NARGS);
variable i, a = type[n];
for (i=n-1; i>=0; i--)
a[i] = ();
if (_NARGS >= 2 or n == 0) % type argument given or no elements
return a;
% autodetermine type
variable types = array_map(DataType_Type, &typeof_ref, a);
if(length(where(types == types[0])) == n) % all args of same type
return array_map(types[0], &dereference, a);
return a; % i.e. _typeof(a) == Any_Type
}
%!%+
%\function{array}
%\synopsis{Return an array containing the arguments}
%\usage{Array_Type array([args])}
%\description
% Pack the arguments into an array and return it.
% The type is autodetermined (defaulting to \var{Any_Type}
% if the element types differ).
%\notes
% If you are sure that all arguments are of the same type (or want to
% throw an error, if not), you can replace
% the call to \sfun{array} with a literal construct like e.g.
%#v+
% variable a = [__push_list(liste)];
%#v-
%\seealso{pop2array, push_array, list2array}
%!%-
define array() %([args])
{
return pop2array(_NARGS);
}
%!%+
%\function{array_append}
%\synopsis{Append a value to an array or concatenate \var{a} and \var{b}}
%\usage{Array = array_append(a, b)}
%\description
% \sfun{array_append} provides a means to use 1d-arrays like lists. It
% concatenates \var{a} and \var{b}.
%
% The arguments may be of any type and will be converted to Array_Type (if
% the not already are) before the concatenation.
%\example
% The following statemants are all TRUE:
%#v+
% array_append(1,2) == [1,2]
% array_append(1, [2,3,4]) == [1,2,3,4]
% array_append([1,2], [3,4]) == [1,2,3,4]
% array_append([1,2,3], 4) == [1,2,3,4]
%#v-
%\notes
% Deprecated. This function might disappear in later versions of datutils!
%
% Since SLang 1.16, the effect can be savely achieved by the
% syntax:
% [1,2] == [1,2]
% [1, [2,3,4]] == [1,2,3,4]
% [[1,2], [3,4]] == [1,2,3,4]
% [[1,2,3], 4] == [1,2,3,4]
% which is also internally used by array_append in SLang 2.
%
% For arrays with 1000 values, array_append() becomes time-consuming (0.13 s),
% for 2000 values annoying (0.5 s) and for 5000 values prohibitive (3 s)
% (CPU-time on a AMD-Duron 700MHz under Linux)
%\seealso{list_append}
%!%-
#ifexists _slang_utf8_ok
define array_append (a, b) { return [a,b]; }
#else
define array_append(a, b)
{
if (typeof(a) != Array_Type)
a = [a];
if (typeof(b) != Array_Type)
b = [b];
!if (length(a)) % empty array
return b;
variable c = _typeof(a)[length(a)+length(b)];
c[[:length(a)-1]] = a;
c[[length(a):]] = b;
return c;
}
#endif
%!%+
%\function{array_delete}
%\synopsis{Delete the element(s) at position(s) \var{N}}
%\usage{Array_Type array_delete(Array_Type a, Integer_Type N)}
%\usage{Array_Type array_delete(Array_Type a, Array_Type N)}
%\description
% Return a slice of all positions not in \var{N}.
% This provides a means to use 1d-arrays like lists.
%\example
%#v+
% array_delete([1,2,3,4], 0) == [2,3,4]
% array_delete([1,2,3,4], [0,1]) == [3,4]
% array_delete([1,2,3,4], [0,-1]) == [2,3]
% array_delete([1,2,3,4], -1) == [1,2,3]
%#v-
%\notes
% For arrays with 1000 values, it becomes time-consuming (0.09 s),
% for 2000 values annoying (0.32 s) and for 5000 values prohibitive (1.83 s).
% With SLang 2, consider using the new List_Type instead.
%\seealso{array_append, where, list_delete}
%!%-
define array_delete(a, n)
{
variable i = Int_Type[length(a)];
i[n] = 1;
i = where(not(i));
return a[i];
}
%!%+
%\function{array_max}
%\synopsis{Return the maximal value of an array}
%\usage{result = array_max(Array_Type a)}
%\description
% The \sfun{array_max} function examines the elements of a numeric array and
% returns the value of the largest element.
%\example
%#v+
% array_max([1,2,30,4] == 30
%#v-
%\notes
% \sfun{max} is a slang intrinsic since 1.4.6. (but must be activated manually)
% It is activated in Jed by default since 0.99.19-51.
%\seealso{array_sum, array_product, max, min, sum}
%!%-
define array_max(a)
{
#ifexists max
return max(a);
#else
variable maximum = a[0], element;
foreach element (a)
{
if (element > maximum)
maximum = element;
}
return maximum;
#endif
}
%!%+
%\function{array_sum}
%\synopsis{Return the sum of the array elements}
%\usage{result = array_sum(a)}
%\description
% Sum up the values of a numeric array and return the result.
%\notes
% \sfun{sum} is a slang intrinsic since 1.4.6. (but must be activated manually)
% It is activated in Jed by default since 0.99.19-51.
%\seealso{array_max, array_product, sum, min, max}
%!%-
define array_sum(a)
{
#ifexists sum
return sum(a);
#else
variable result = 0;
foreach (a)
result += ();
return result;
#endif
}
%!%+
%\function{array_product}
%\synopsis{Return the product of the array elements}
%\usage{result = array_product(a)}
%\description
% Multiply the values of a numeric array and return the result.
%\notes
% There are considerations to introduce \sfun{prod} and \sfun{cumprod}
% funtions in SLang.
%\seealso{array_sum, array_max}
%!%-
define array_product(a)
{
variable product = 1;
foreach (a)
product *= ();
return product;
}
%!%+
%\function{array_value_exists}
%\synopsis{Return the number of occurences of \var{value} in array \var{a}}
%\usage{Integer_Type array_value_exists(a, value)}
%\description
% Count, how many times \var{value} is present in array \var{a}.
% For normal arrays, this is equal to
%#v+
% length(where(a == value))
%#v-
% while special care is taken to get meaningfull results with arrays of
% \var{Any_Type}.
%\seealso{where, wherefirst, wherelast, assoc_value_exists}
%!%-
define array_value_exists(a, value)
{
if (_typeof(a) != Any_Type)
return length(where(a == value));
variable element, i=0;
foreach element (a)
{
if (element == NULL)
{
if (value == NULL)
i++;
}
else
{
if (_eqs(@element, value))
i++;
}
}
return (i);
}
%!%+
%\function{array_repeat}
%\synopsis{Repeat an array \var{N} times}
%\usage{Array_Type array_repeat(a, N)}
%\description
% Concatenate an array N-1 times to itself and return the result.
%\seealso{string_repeat, array_append}
%!%-
define array_repeat(a, n)
{
variable i, len_a = length(a);
variable aa = _typeof(a)[n*len_a];
for (i=0; i <= length(aa)-1; i +=len_a)
aa[[i:i+len_a-1]] = a;
return aa;
}
%!%+
%\function{array_transpose}
%\synopsis{Swap the axes of a 2d array}
%\usage{Array_Type array_transpose(a)}
%\description
% Swap rows and columns of a 2dimensional array.
%\seealso{array_info, reshape}
%!%-
define array_transpose(a)
{
variable i, dim, dimensionality, type;
(dim, dimensionality, type) = array_info(a);
!if (dimensionality == 2)
error("array_transpose expects a 2d-array");
variable b = @Array_Type(type, [dim[1], dim[0]]);
for (i=0; i<dim[0]; i++)
b[*,i] = a[i,*];
return b;
}
% --- Associative Array functions -----------------------------------
% find out if the associative array contains value
%!%+
%\function{assoc_value_exists}
%\synopsis{Return the number of occurences of \var{value} in \var{ass}}
%\usage{Integer_Type assoc_value_exists(Assoc_Type ass, value)}
%\description
% Count, how many times \var{value} is present in the associative
% array \var{ass}.
%\seealso{array_value_exists, assoc_key_exists, assoc_get_key, assoc_get_values}
%!%-
define assoc_value_exists(ass, value)
{
array_value_exists(assoc_get_values(ass), value);
}
%!%+
%\function{assoc_get_key}
%\synopsis{Return the key of a value of an Associative Array}
%\usage{String_Type key = assoc_get_key(ass, value)}
%\description
% Reverse the usual lookup of an hash table (associative array).
% Return the first key whose value is equal to \var{value}.
%\notes
% Of course, this function is far slower than the corresponding ass[key].
%\seealso{assoc_value_exists}
%!%-
define assoc_get_key(ass, value)
{
variable matches = where(assoc_get_values (ass) == value);
!if (length(matches))
return NULL;
return assoc_get_keys(ass)[matches[0]];
}
% --- List functions -------------------------------------------
% The list type is new in SLang2
#ifexists List_Type
% since S-Lang 2.1.0, there are the intrinsic functions
% __push_list() and __pop_list()
# if (_slang_version < 20100)
% push list to stack
define __push_list(lst)
% "define" line indent to prevent auto-indexing with make-ini()
{
foreach (lst)
();
}
% pop N items from stack to a list
define __pop_list(N)
% "define" line indent to prevent auto-indexing with make-ini()
{
variable object, list = {};
loop (N)
{
object = ();
list_insert(list, object, 0);
}
return list;
}
#endif
%!%+
%\function{push_list}
%\synopsis{Push the list elements on the stack}
%\usage{push_list(List_Type lst)}
%\description
% Obsoleted. Use intrinsic function \sfun{__push_list}.
%\example
%#v+
% variable args = {"foo ", "bar ", "uffe "};
% variable str = strjoin(__push_list(args));
%#v-
%\seealso{push_array}
%!%-
define push_list(lst)
{
__push_list(lst);
}
%!%+
%\function{pop2list}
%\synopsis{Return list with N topmost stack-items}
%\usage{List_Type lst = pop2list(N=_stkdepth)}
%\description
% Obsoleted. Use the intrinsic function \sfun{__pop_list} instead.
%
% To return all elements currently on the stack, use __pop_list(_stkdepth)
% instead of pop_list().
%\notes
% Attention: do not use \sfun{pop2list} in a function call with optional
% arguments.
%\seealso{__pop_list, __push_list, _stkdepth}
%!%-
define pop2list() % (N=_stkdepth)
{
variable N = push_defaults(_stkdepth, _NARGS);
return __pop_list(N);
}
%!%+
%\function{list2array}
%\synopsis{Convert a list to an array}
%\usage{Array_Type list2array(list, [type])}
%\description
% Return an array containing the list elements.
%
% If the list contains elements of different type, Any_Type is used as
% container.
%\example
% \sfun{list2array} enables the use of lists in places that require an
% array with specific data type, e.g.:
%#v+
% charlist = {68, 69, 70+2}
% return array_to_bstring(list2array(charlist, UChar_Type));
%#v-
%\seealso{__push_list, __pop_list, pop2array}
%!%-
define list2array(list) % (list, [type])
{
if (_NARGS < 2) {
% auto-determine the data type
try
return [__push_list(list)];
catch TypeMismatchError:
return array(__push_list(list));
}
% use the provided data type
variable type = list;
list = ();
__push_list(list);
return pop2array(length(list), type);
}
%!%+
%\function{array2list}
%\synopsis{Convert an array to a list}
%\usage{List_Type array2list(a)}
%\description
% Deprecated. The same conversion can be achieved by:
%#v+
% variable list = {push_array(a)};
%#v-
%\seealso{list2array, push_array, __pop_list}
%!%-
define array2list(a)
{
return {push_array(a)};
}
%!%+
%\function{list_extend}
%\synopsis{Extend a list with the values of another one}
%\usage{list_extend(l1, l2)}
%\description
% Concatenate 2 lists by appending the elements of \var{l2} to \var{l1}.
%#v+
% variable l1 = {1, 2, 3, 4};
% list_extend(l1, {5, 6, 7});
% l1 == {1, 2, 3, 4, 5, 6, 7};
%#v-
%\notes
% Behaves similar to the .extend() method of Python lists.
%
% As this function uses a foreach loop, \var{l2} can also be an
% \var{Array_Type} object.
%
% This function was called list_concat() earlier. However, the
% list_concat intrinsic introduced in S-Lang > 2.2.3 returns a new
% list instead of appending to the first argument.
%\seealso{list_append, list_insert}
%!%-
define list_extend(l1, l2)
{
variable element;
foreach element (l2)
list_append(l1, element, -1);
}
%!%+
%\function{list_inject}
%\synopsis{Insert list elements at position \var{i}}
%\usage{list_inject(List_Type l1, List_Type l2, Int_Type i)}
%\description
% Merge two lists by inserting the elements of \var{l2} into
% \var{l1} at position \var{i}.
%\example
%#v+
% variable l1 = {1, 2, 3, 4};
% list_inject(l1, {2.5, 2.6, 2.7}, 2);
% l1 == {1, 2, 2.5, 2.6, 2.7, 3, 4};
%#v-
%\seealso{list_extend, list_insert}
%!%-
define list_inject(l1, l2, i)
{
variable element;
if (i >= 0)
list_reverse(l2);
foreach element (l2)
list_insert(l1, element, i);
}
#endif
provide("datutils");
|