t0 is of type java.lang.Double. This then does not work for use with a function such as TimeSeriesTable::appendRow() as the first argument is of type double.
One work around is to pass in t0.doubleValue() instead, but this is difficult to track down for MATLAB users.
This can become an issue downstream. For instance:
t0
is of typejava.lang.Double
. This then does not work for use with a function such asTimeSeriesTable::appendRow()
as the first argument is of typedouble
.One work around is to pass in
t0.doubleValue()
instead, but this is difficult to track down for MATLAB users.