pub fn elementwise_op(
a: &Vec<Vec<f64>>,
b: &Vec<Vec<f64>>,
fun: fn(f64, f64) -> f64,
) -> Result<Value, String>Expand description
Elementwise operation on two Float2DArray values with identical shapes. Returns a new Float2DArray with the same shape.