org.ejml.generic.GenericMatrixOps_F32 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ejml-fdense Show documentation
Show all versions of ejml-fdense Show documentation
A fast and easy to use dense and sparse matrix linear algebra library written in Java.
/*
* Copyright (c) 2009-2020, Peter Abeles. All Rights Reserved.
*
* This file is part of Efficient Java Matrix Library (EJML).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ejml.generic;
import javax.annotation.Generated;
import org.ejml.data.FMatrix;
import java.util.Random;
/**
* @author Peter Abeles
*/
@Generated("org.ejml.generic.GenericMatrixOps_F64")
public class GenericMatrixOps_F32 {
// public static DenseD2Matrix64F convertToD2( FMatrixRMaj orig ) {
// DenseD2Matrix64F ret = new DenseD2Matrix64F(orig.getNumRows(),orig.getNumCols());
//
// copy(orig,ret);
//
// return ret;
// }
public static boolean isEquivalent( FMatrix a, FMatrix b, float tol ) {
if (a.getNumRows() != b.getNumRows() || a.getNumCols() != b.getNumCols())
return false;
for (int i = 0; i < a.getNumRows(); i++) {
for (int j = 0; j < a.getNumCols(); j++) {
float diff = Math.abs(a.get(i, j) - b.get(i, j));
if (diff > tol)
return false;
}
}
return true;
}
/**
* Returns true if the provided matrix is has a value of 1 along the diagonal
* elements and zero along all the other elements.
*
* @param a Matrix being inspected.
* @param tol How close to zero or one each element needs to be.
* @return If it is within tolerance to an identity matrix.
*/
public static boolean isIdentity( FMatrix a, float tol ) {
for (int i = 0; i < a.getNumRows(); i++) {
for (int j = 0; j < a.getNumCols(); j++) {
if (i == j) {
if (Math.abs(a.get(i, j) - 1.0f) > tol)
return false;
} else {
if (Math.abs(a.get(i, j)) > tol)
return false;
}
}
}
return true;
}
public static boolean isEquivalentTriangle( boolean upper, FMatrix a, FMatrix b, float tol ) {
if (a.getNumRows() != b.getNumRows() || a.getNumCols() != b.getNumCols())
return false;
if (upper) {
for (int i = 0; i < a.getNumRows(); i++) {
for (int j = i; j < a.getNumCols(); j++) {
float diff = Math.abs(a.get(i, j) - b.get(i, j));
if (diff > tol)
return false;
}
}
} else {
for (int j = 0; j < a.getNumCols(); j++) {
for (int i = j; i < a.getNumRows(); i++) {
float diff = Math.abs(a.get(i, j) - b.get(i, j));
if (diff > tol)
return false;
}
}
}
return true;
}
public static void copy( FMatrix from, FMatrix to ) {
int numCols = from.getNumCols();
int numRows = from.getNumRows();
for (int i = 0; i < numRows; i++) {
for (int j = 0; j < numCols; j++) {
to.set(i, j, from.get(i, j));
}
}
}
public static void setRandom( FMatrix a, float min, float max, Random rand ) {
for (int i = 0; i < a.getNumRows(); i++) {
for (int j = 0; j < a.getNumCols(); j++) {
float val = rand.nextFloat()*(max - min) + min;
a.set(i, j, val);
}
}
}
}