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