org.ejml.masks.FMaskPrimitive Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ejml-core Show documentation
Show all versions of ejml-core Show documentation
A fast and easy to use dense and sparse matrix linear algebra library written in Java.
The newest version!
/*
* Copyright (c) 2021, 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.masks;
import javax.annotation.Generated;
/**
* Mask implementation backed by a primitive array
*/
@Generated("org.ejml.masks.DMaskPrimitive")
public class FMaskPrimitive extends Mask {
// Values interpreted as a row-major dense matrix
private final float[] values;
/**
* Number of columns of the wrapped matrix
*/
public final int numCols;
/**
* Value representing that the entry is not set in the mask
*/
public final float zeroElement;
public FMaskPrimitive( float[] values, int numCols, boolean negated, float zeroElement ) {
// for dense structures they cannot be used for structural masks
super(negated);
this.values = values;
this.numCols = numCols;
this.zeroElement = zeroElement;
}
@Override
public boolean isSet( int row, int col ) {
// XOR as negated flips the mask flag
return negated ^ (values[row*numCols + col] != zeroElement);
}
@Override
public int getNumCols() {
return numCols;
}
@Override
public int getNumRows() {
return values.length/numCols;
}
@Override
public void setIndexColumn( int column ) {}
@Override
public int maxMaskedEntries() {
return values.length;
}
@Override
public boolean isSet( int index ) {
return negated ^ (values[index] != zeroElement);
}
/**
* Utility class to build {@link FMaskPrimitive}
*/
public static class Builder extends MaskBuilder {
private float[] values;
private int numCols = 1;
private float zeroElement = 0;
public Builder( float[] values ) {
this.values = values;
}
/**
* @param numCols Number of columns in the values
*/
public Builder withNumCols( int numCols ) {
this.numCols = numCols;
return this;
}
/**
* @param zeroElement Value to represent the zero-element in the mask
*/
public Builder withZeroElement( float zeroElement ) {
this.zeroElement = zeroElement;
return this;
}
@Override
public FMaskPrimitive build() {
return new FMaskPrimitive(values, numCols, negated, zeroElement);
}
}
}