- java.lang.Object
-
- processing.data.FloatList
-
public class FloatList extends Object implements Iterable<Float>
Helper class for a list of floats. Lists are designed to have some of the features of ArrayLists, but to maintain the simplicity and efficiency of working with arrays. Functions like sort() and shuffle() always act on the list itself. To get a sorted copy, use list.copy().sort().- See Also:
IntList,StringList
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int index, float amount)voidappend(float value)Add a new entry to the list.voidappend(float[] values)voidappend(FloatList list)voidappendUnique(float value)Add this value, but only if it's not already in the list.float[]array()Create a new array with a copy of all the values.float[]array(float[] array)Copy values into the specified array.voidclear()Remove all entries from the list.FloatListcopy()voiddiv(int index, float amount)floatget(int index)Get an entry at a particular index.FloatListgetPercent()Returns a normalized version of this array.FloatListgetSubset(int start)FloatListgetSubset(int start, int num)booleanhasValue(float value)intindex(float what)Return the first index of a particular value.voidinsert(int index, float value)voidinsert(int index, float[] values)voidinsert(int index, FloatList list)Iterator<Float>iterator()Implemented this way so that we can use a FloatList in a for loop.Stringjoin(String separator)floatmax()intmaxIndex()floatmin()intminIndex()voidmult(int index, float amount)floatpop()voidprint()voidpush(float value)Just an alias for append(), but matches pop()floatremove(int index)Remove an element from the specified index.intremoveValue(int value)intremoveValues(int 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()voidsave(File file)Save 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.voidshuffle(PApplet sketch)Randomize 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 the array in place.voidsortReverse()Reverse sort, orders values from highest to lowestvoidsub(int index, float amount)floatsum()doublesumDouble()StringtoJSON()Return this dictionary as a String in JSON format.StringtoString()float[]values()Returns the actual array being used to store the data.voidwrite(PrintWriter writer)Write entries to a PrintWriter, one per line-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
FloatList
public FloatList()
-
FloatList
public FloatList(int length)
-
FloatList
public FloatList(float[] list)
-
FloatList
public FloatList(Iterable<Object> iter)
Construct an FloatList from an iterable pile of objects. For instance, a float array, an array of strings, who knows). Un-parseable or null values will be set to NaN.
-
FloatList
public FloatList(Object... items)
Construct an FloatList from a random pile of objects. Un-parseable or null values will be set to NaN.
-
-
Method Detail
-
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. If the index is past the length of the list, it'll expand the list to accommodate, and fill the intermediate entries with 0s.
-
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(int 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
public void append(FloatList list)
-
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
public void insert(int index, FloatList list)
-
index
public int index(float what)
Return the first index of a particular value.
-
hasValue
public boolean hasValue(float value)
-
add
public void add(int index, float amount)
-
sub
public void sub(int index, float amount)
-
mult
public void mult(int index, float amount)
-
div
public void div(int index, float amount)
-
min
public float min()
-
minIndex
public int minIndex()
-
max
public float max()
-
maxIndex
public int maxIndex()
-
sum
public float sum()
-
sumDouble
public double sumDouble()
-
sort
public void sort()
Sorts the array in place.
-
sortReverse
public void sortReverse()
Reverse sort, orders values from highest to lowest
-
reverse
public void reverse()
-
shuffle
public void shuffle()
Randomize the order of the list elements. Note that this does not obey the randomSeed() function in PApplet.
-
shuffle
public void shuffle(PApplet sketch)
Randomize the list order using the random() function from the specified sketch, allowing shuffle() to use its current randomSeed() setting.
-
copy
public FloatList 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
public Iterator<Float> iterator()
Implemented this way so that we can use a FloatList in a for loop.
-
array
public float[] array()
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
public float[] array(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.- Parameters:
array-
-
getPercent
public FloatList 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 returns a new list (because IntList/Dict can't do percentages or normalization in place on int values).
-
getSubset
public FloatList getSubset(int start)
-
getSubset
public FloatList getSubset(int start, int num)
-
print
public void print()
-
save
public void save(File file)
Save tab-delimited entries to a file (TSV format, UTF-8 encoding)
-
write
public void write(PrintWriter writer)
Write entries to a PrintWriter, one per line
-
toJSON
public String toJSON()
Return this dictionary as a String in JSON format.
-
-