コード例 #1
0
 public static Tensor <float> Clip(Tensor <float> x, float min, float max)
 {
     return(Apply(x, _x => Op.Clip(_x, min, max)));
 }