tanh method
Implementation
ValueMatrix tanh() {
return ValueMatrix(
_data.map((row) => row.map((v) => v.tanh()).toList()).toList());
}
ValueMatrix tanh() {
return ValueMatrix(
_data.map((row) => row.map((v) => v.tanh()).toList()).toList());
}