- java.lang.Object
-
- swim.math.RNVector
-
-
Constructor Summary
Constructors Constructor Description RNVector(double... array)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(RNVector that)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.int
dimension()
boolean
equals(Object other)
static TensorForm<RNVector>
form()
double
get(int i)
int
hashCode()
RNVector
minus(RNVector that)
static RNVector
of(double... array)
RNVector
opposite()
RNVector
plus(RNVector that)
RNVector
times(double scalar)
String
toString()
Value
toValue()
-
-
-
Method Detail
-
dimension
public final int dimension()
-
get
public final double get(int i)
-
opposite
public final RNVector opposite()
-
times
public final RNVector times(double scalar)
-
toValue
public Value toValue()
-
canEqual
protected boolean canEqual(RNVector that)
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
of
public static RNVector of(double... array)
-
form
@Kind public static TensorForm<RNVector> form()
-
-