Java Array Copy copyArray(double[] src, double[] dest, int len)

Here you can find the source of copyArray(double[] src, double[] dest, int len)

Description

copy Array

License

Open Source License

Declaration

public static void copyArray(double[] src, double[] dest, int len) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static void copyArray(double[] src, double[] dest, int len) {
        int i;/*from w w  w . j  a  v a  2 s  . c o m*/
        for (i = 0; i < len; i++) {
            dest[i] = src[i];
        }
    }
}

Related

  1. copyArray(byte[] dest, int off, byte[] src)
  2. copyArray(byte[] original, int start, int length)
  3. copyArray(byte[] out, byte[] in, int idx)
  4. copyArray(double[] a)
  5. copyArray(double[] array)
  6. copyArray(double[][] d)
  7. copyArray(int[] ar)
  8. copyArray(int[] inArr, int[] outArr)
  9. copyArray(int[][] arr)