RLPark 1.0.0
Reinforcement Learning Framework in Java

MutableVector.java

Go to the documentation of this file.
00001 package rlpark.plugin.rltoys.math.vector;
00002 
00003 
00004 public interface MutableVector extends RealVector {
00005   MutableVector clear();
00006 
00007   @Override
00008   MutableVector copy();
00009 
00010   MutableVector addToSelf(RealVector other);
00011 
00012   MutableVector subtractToSelf(RealVector other);
00013 
00014   MutableVector addToSelf(double factor, RealVector other);
00015 
00016   MutableVector mapMultiplyToSelf(double d);
00017 
00018   void setEntry(int i, double d);
00019 
00020   MutableVector ebeMultiplyToSelf(RealVector other);
00021 
00022   MutableVector set(RealVector other);
00023 
00024   MutableVector set(RealVector other, int start);
00025 
00026   MutableVector ebeDivideToSelf(RealVector other);
00027 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark