Java Array Divide divideVectors(float[] v1, float[] v2)

Here you can find the source of divideVectors(float[] v1, float[] v2)

Description

divide Vectors

License

Open Source License

Declaration

public static void divideVectors(float[] v1, float[] v2) 

Method Source Code

//package com.java2s;
/*//from ww  w.  j ava 2 s  .co m
 * Copyright (c) 2008-2013 Maksim Khadkevich and Fondazione Bruno Kessler.
 *
 * This file is part of MART.
 * MART is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2, as published
 * by the Free Software Foundation.
 *
 * MART is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with MART; if not, write to the Free Software Foundation,
 * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

public class Main {
    public static void divideVectors(float[] v1, float[] v2) {
        if (v1.length != v2.length) {
            throw new IllegalArgumentException(
                    "Arrays lengths are different");
        }
        for (int i = 0; i < v1.length; i++) {
            if (v2[i] != 0) {
                v1[i] /= v2[i];
            }
        }
    }
}

Related

  1. divideInPlace(double denominator, double[] target)
  2. divideInPlace(float[] vector, float val)
  3. divideIntoChunks(Object[] objs, int chunkSize)
  4. divideNonSingular(int[] array1, int[] array2)
  5. divideVector(float[] resultVec, float divisor)
  6. divisors(final int n, final int[] buffer)
  7. divVec2(final float[] result, final float[] vector, final float scale)