All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ojalgo.matrix.MatrixH256 Maven / Gradle / Ivy

Go to download

oj! Algorithms - ojAlgo - is Open Source Java code that has to do with mathematics, linear algebra and optimisation.

The newest version!
/*
 * Copyright 1997-2025 Optimatika
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package org.ojalgo.matrix;

import org.ojalgo.algebra.NumberSet;
import org.ojalgo.matrix.decomposition.Cholesky;
import org.ojalgo.matrix.decomposition.Eigenvalue;
import org.ojalgo.matrix.decomposition.LDL;
import org.ojalgo.matrix.decomposition.LU;
import org.ojalgo.matrix.decomposition.QR;
import org.ojalgo.matrix.decomposition.SingularValue;
import org.ojalgo.matrix.store.ElementsSupplier;
import org.ojalgo.matrix.store.GenericStore;
import org.ojalgo.matrix.store.MatrixStore;
import org.ojalgo.matrix.store.PhysicalStore;
import org.ojalgo.matrix.store.SparseStore;
import org.ojalgo.matrix.task.DeterminantTask;
import org.ojalgo.matrix.task.InverterTask;
import org.ojalgo.matrix.task.SolverTask;
import org.ojalgo.scalar.Quaternion;
import org.ojalgo.structure.Structure2D;

/**
 * A matrix (linear algebra) with Quaternion {@link NumberSet#H} elements, implemented using four 64-bit
 * double values. (4 x 64 = 256)
 *
 * @see BasicMatrix
 * @see Quaternion
 * @author apete
 */
public final class MatrixH256 extends BasicMatrix {

    public static final class DenseReceiver extends DenseMutator2D {

        DenseReceiver(final PhysicalStore delegate) {
            super(delegate);
        }

        @Override
        MatrixH256 instantiate(final MatrixStore store) {
            return FACTORY.instantiate(store);
        }

    }

    public static final class Factory extends MatrixFactory {

        Factory() {
            super(MatrixH256.class, GenericStore.H256);
        }

        @Override
        MatrixH256.DenseReceiver dense(final PhysicalStore delegate) {
            return new MatrixH256.DenseReceiver(delegate);
        }

        @Override
        MatrixH256.SparseReceiver sparse(final SparseStore.Builder delegate) {
            return new MatrixH256.SparseReceiver(delegate);
        }

    }

    public static final class SparseReceiver extends SparseMutator2D {

        SparseReceiver(final SparseStore.Builder delegate) {
            super(delegate);
        }

        @Override
        MatrixH256 instantiate(final MatrixStore store) {
            return FACTORY.instantiate(store);
        }

    }

    public static final Factory FACTORY = new Factory();

    /**
     * This method is for internal use only - YOU should NOT use it!
     */
    MatrixH256(final ElementsSupplier supplier) {
        super(FACTORY.getPhysicalFactory(), supplier);
    }

    @Override
    public MatrixH256.DenseReceiver copy() {
        return new MatrixH256.DenseReceiver(this.store().copy());
    }

    @Override
    Cholesky newCholesky(final Structure2D typical) {
        return Cholesky.H256.make(typical);
    }

    @Override
    DeterminantTask newDeterminantTask(final Structure2D template) {
        return DeterminantTask.H256.make(template, this.isHermitian(), false);
    }

    @Override
    Eigenvalue newEigenvalue(final Structure2D typical) {
        return Eigenvalue.H256.make(typical, this.isHermitian());
    }

    @Override
    MatrixH256 newInstance(final ElementsSupplier store) {
        return new MatrixH256(store);
    }

    @Override
    InverterTask newInverterTask(final Structure2D template) {
        return InverterTask.H256.make(template, this.isHermitian(), false);
    }

    @Override
    LDL newLDL(final Structure2D typical) {
        return LDL.H256.make(typical);
    }

    @Override
    LU newLU(final Structure2D typical) {
        return LU.H256.make(typical);
    }

    @Override
    QR newQR(final Structure2D typical) {
        return QR.H256.make(typical);
    }

    @Override
    SingularValue newSingularValue(final Structure2D typical) {
        return SingularValue.H256.make(typical);
    }

    @Override
    SolverTask newSolverTask(final Structure2D templateBody, final Structure2D templateRHS) {
        return SolverTask.H256.make(templateBody, templateRHS, this.isHermitian(), false);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy