Changeset 1076 for cpp/frams/vm/classes
- Timestamp:
- 02/16/21 06:37:09 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/collectionobj.cpp
r1041 r1076 36 36 { "add", 0, PARAM_NOSTATIC, "Append at the end", "p(x value)", PROCEDURE(p_add), }, 37 37 { "find", 0, PARAM_NOSTATIC, "Find", "p d(x value)", PROCEDURE(p_find), "returns the element index or -1 if not found" }, 38 { "avg", 0, PARAM_READONLY | PARAM_NOSTATIC, "Average", " f", GETONLY(avg) },39 { "stdev", 0, PARAM_READONLY | PARAM_NOSTATIC, "Standard deviation", " f", GETONLY(stdev), "=sqrt(sum((element[i]-avg)^2)/(size-1)) which is estimated population std.dev. from sample std.dev." },38 { "avg", 0, PARAM_READONLY | PARAM_NOSTATIC, "Average", "x", GETONLY(avg) }, 39 { "stdev", 0, PARAM_READONLY | PARAM_NOSTATIC, "Standard deviation", "x", GETONLY(stdev), "=sqrt(sum((element[i]-avg)^2)/(size-1)) which is estimated population std.dev. from sample std.dev." }, 40 40 { "toString", 0, PARAM_READONLY | PARAM_NOSTATIC, "Textual form", "s", GETONLY(toString), }, 41 41 { "new", 0, 0, "Create new Vector", "p oVector()", STATICPROCEDURE(p_new), },
Note: See TracChangeset
for help on using the changeset viewer.