All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.numenta.nupic.ValueList Maven / Gradle / Ivy

There is a newer version: 0.6.13
Show newest version
package org.numenta.nupic;

import org.numenta.nupic.util.Tuple;

/**
 * Contains rows of immutable {@link Tuple}s
 * 
 * @author David Ray
 */
public interface ValueList {
    /** 
     * Returns a collection of values in the form of a {@link Tuple}
     * @return Tuple of values 
     */
    public Tuple getRow(int row);
    /**
     * Returns the number of rows.
     * @return the number of rows
     */
    public int size();
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy