/// <summary>Returns a copy of the NdArray.</summary> /// <param name="source">The NdArray to copy.</param> /// <param name="order">The memory layout of the copy. (default: row-major)</param> /// <returns>A copy of the NdArray.</returns> public static NdArray <T> Copy(NdArray <T> source, Order order = Order.RowMajor) { return(source.Copy(order)); }