Exemplo n.º 1
0
        internal static NdArray <T> FillFrom(NdArray <T> target, NdArray <T> source)
        {
            var src1 = NdArray <T> .PrepareElemwiseSources(target, source);

            target.CopyFrom(src1);

            return(target);
        }