Abs() публичный Метод

Return the matrix composed of the absolute values of all elements. djm: fixed double allocation
public Abs ( ) : Mat22
Результат Mat22
Пример #1
0
 /// <summary>
 /// Return the matrix composed of the absolute values of all elements.
 /// </summary>
 /// <returns>Absolute value matrix</returns>
 public static Mat22 Abs(Mat22 r)
 {
     return r.Abs();
 }
Пример #2
0
 /// <summary>
 /// Return the matrix composed of the absolute values of all elements.
 /// </summary>
 /// <returns>Absolute value matrix</returns>
 public static Mat22 Abs(Mat22 r)
 {
     return(r.Abs());
 }