Package processing.data
Class FloatList
java.lang.Object
processing.data.FloatList
Helper class for a list of float values. Lists are designed
to have some features of ArrayList, but to maintain the
simplicity and efficiency of working with arrays.
Functions such as sort() and shuffle() always act on
the list itself. To get a sorted copy, use list.copy().sort().
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidadd(int index, float amount) Add to a value.voidappend(float value) Add a new entry to the list.voidappend(float[] values) voidvoidappendUnique(float value) Add this value, but only if it's not already in the list.float[]array()Deprecated.float[]array(float[] array) Deprecated.voidclear()Remove all entries from the list.copy()voiddiv(int index, float amount) Divide a valuefloatget(int index) Get an entry at a particular index.Returns a normalized version of this array.getSubset(int start) getSubset(int start, int num) booleanhasValue(float value) Check if a number is a part of the list.intindex(float what) Return the first index of a particular value.voidinsert(int index, float value) voidinsert(int index, float[] values) voiditerator()Implemented this way so that we can use a FloatList in a for loop.floatmax()Return the largest valueintmaxIndex()floatmin()Return the smallest valueintminIndex()voidmult(int index, float amount) Multiply a valuefloatpop()voidprint()voidpush(float value) Just an alias for append(), but matches pop()floatrandom()Return a random value from the list.floatremove(int index) Remove an element from the specified index.floatintremoveValue(int value) intremoveValues(float value) booleanreplaceValue(float value, float newValue) Replace the first instance of a particular valuebooleanreplaceValues(float value, float newValue) Replace all instances of a particular valuevoidresize(int length) voidreverse()Reverse the order of the listvoidSave tab-delimited entries to a file (TSV format, UTF-8 encoding)voidset(int index, float what) Set the entry at a particular index.voidshuffle()Randomize the order of the list elements.voidRandomize the list order using the random() function from the specified sketch, allowing shuffle() to use its current randomSeed() setting.intsize()Get the length of the list.voidsort()Sorts an array, lowest to highestvoidA sort in reverse.voidsub(int index, float amount) Subtract from a valuefloatsum()doublefloat[]toArray()Create a new array with a copy of all the values.float[]toArray(float[] array) Copy values into the specified array.toJSON()Return this dictionary as a String in JSON format.toString()float[]values()Returns the actual array being used to store the data.voidwrite(PrintWriter writer) Write entries to a PrintWriter, one per lineMethods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
FloatList
public FloatList() -
FloatList
public FloatList(int length) -
FloatList
public FloatList(float[] list) -
FloatList
Construct an FloatList from an iterable pile of objects. For instance, a float array, an array of strings, who knows. Un-parsable or null values will be set to NaN. -
FloatList
Construct an FloatList from a random pile of objects. Un-parsable or null values will be set to NaN.
-
-
Method Details
-
size
public int size()Get the length of the list. -
resize
public void resize(int length) -
clear
public void clear()Remove all entries from the list. -
get
public float get(int index) Get an entry at a particular index. -
set
public void set(int index, float what) Set the entry at a particular index. -
push
public void push(float value) Just an alias for append(), but matches pop() -
pop
public float pop() -
remove
public float remove(int index) Remove an element from the specified index. -
removeValue
public int removeValue(int value) -
removeValues
public int removeValues(float value) -
replaceValue
public boolean replaceValue(float value, float newValue) Replace the first instance of a particular value -
replaceValues
public boolean replaceValues(float value, float newValue) Replace all instances of a particular value -
append
public void append(float value) Add a new entry to the list. -
append
public void append(float[] values) -
append
-
appendUnique
public void appendUnique(float value) Add this value, but only if it's not already in the list. -
insert
public void insert(int index, float value) -
insert
public void insert(int index, float[] values) -
insert
-
index
public int index(float what) Return the first index of a particular value. -
hasValue
public boolean hasValue(float value) Check if a number is a part of the list. -
add
public void add(int index, float amount) Add to a value. -
sub
public void sub(int index, float amount) Subtract from a value -
mult
public void mult(int index, float amount) Multiply a value -
div
public void div(int index, float amount) Divide a value -
min
public float min()Return the smallest value -
minIndex
public int minIndex() -
max
public float max()Return the largest value -
maxIndex
public int maxIndex() -
sum
public float sum() -
sumDouble
public double sumDouble() -
sort
public void sort()Sorts an array, lowest to highest -
sortReverse
public void sortReverse()A sort in reverse. It's equivalent to running sort() and then reverse(), but is more efficient than running each separately. -
reverse
public void reverse()Reverse the order of the list -
shuffle
public void shuffle()Randomize the order of the list elements. -
shuffle
Randomize the list order using the random() function from the specified sketch, allowing shuffle() to use its current randomSeed() setting. -
random
public float random()Return a random value from the list. -
removeChoice
public float removeChoice() -
copy
-
values
public float[] values()Returns the actual array being used to store the data. For advanced users, this is the fastest way to access a large list. Suitable for iterating with a for() loop, but modifying the list will have terrible consequences. -
iterator
Implemented this way so that we can use a FloatList in a for loop. -
array
Deprecated. -
toArray
public float[] toArray()Create a new array with a copy of all the values.- Returns:
- an array sized by the length of the list with each of the values.
-
array
Deprecated. -
toArray
public float[] toArray(float[] array) Copy values into the specified array. If the specified array is null or not the same size, a new array will be allocated. -
getPercent
Returns a normalized version of this array. Called getPercent() for consistency with the Dict classes. It's a getter method because it needs to return a new list (because IntList/Dict can't do percentages or normalization in place on int values). -
getSubset
-
getSubset
-
join
-
print
public void print() -
save
Save tab-delimited entries to a file (TSV format, UTF-8 encoding) -
write
Write entries to a PrintWriter, one per line -
toJSON
Return this dictionary as a String in JSON format. -
toString
-