![]() float |
average |
![]() integer |
element count |
![]() float |
standard deviation =sqrt(sum((element[i]-avg)^2)/(size-1)) which is estimated population std.dev. from sample std.dev. |
![]() string |
textual form |
![]() doesn't return a value |
append at the end function add(untyped value) |
![]() doesn't return a value |
clear data function clear() |
![]() returns integer |
find function find(untyped value) returns the element index or -1 if not found |
![]() returns untyped |
get value at position function get(integer position) |
![]() returns Vector |
create new Vector function new() |
![]() doesn't return a value |
remove at position function remove(integer position) |
![]() doesn't return a value |
set value at position function set(integer position, untyped value) |
Global context |