RLPark 1.0.0
Reinforcement Learning Framework in Java

SparseVector.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.math.vector;
00002 
00003 public interface SparseVector extends RealVector {
00004   RealVector clear();
00005 
00006   double dotProduct(double[] data);
00007 
00008   void addSelfTo(double[] data);
00009 
00010   void subtractSelfTo(double[] data);
00011 
00012   int nonZeroElements();
00013 
00014   int[] nonZeroIndexes();
00015 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark