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

org.ejml.alg.dense.mult.MatrixMultProduct Maven / Gradle / Ivy

Go to download

A fast and easy to use dense matrix linear algebra library written in Java.

There is a newer version: 0.25
Show newest version
/*
 * Copyright (c) 2009-2012, Peter Abeles. All Rights Reserved.
 *
 * This file is part of Efficient Java Matrix Library (EJML).
 *
 * EJML is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * EJML 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with EJML.  If not, see .
 */

package org.ejml.alg.dense.mult;

import org.ejml.data.RowD1Matrix64F;

/**
 * 

* Specialized operations for performing inner and outer products for matrices. *

* *

* inner product: B=AT*A
* outer product: B=A*AT *

* * @author Peter Abeles */ public class MatrixMultProduct { public static void outer(RowD1Matrix64F a, RowD1Matrix64F c) { for( int i = 0; i < a.numRows; i++ ) { int indexC1 = i*c.numCols+i; int indexC2 = indexC1; for( int j = i; j < a.numRows; j++ , indexC2 += c.numCols) { int indexA = i*a.numCols; int indexB = j*a.numCols; double sum = 0; int end = indexA + a.numCols; for( ; indexA < end; indexA++,indexB++ ) { sum += a.data[indexA]*a.data[indexB]; } c.data[indexC2] = c.data[indexC1++] = sum; } } // for( int i = 0; i < a.numRows; i++ ) { // for( int j = 0; j < a.numRows; j++ ) { // double sum = 0; // for( int k = 0; k < a.numCols; k++ ) { // sum += a.get(i,k)*a.get(j,k); // } // c.set(i,j,sum); // } // } } public static void inner_small(RowD1Matrix64F a, RowD1Matrix64F c) { for( int i = 0; i < a.numCols; i++ ) { for( int j = i; j < a.numCols; j++ ) { int indexC1 = i*c.numCols+j; int indexC2 = j*c.numCols+i; int indexA = i; int indexB = j; double sum = 0; int end = indexA + a.numRows*a.numCols; for( ; indexA < end; indexA += a.numCols, indexB += a.numCols ) { sum += a.data[indexA]*a.data[indexB]; } c.data[indexC1] = c.data[indexC2] = sum; } } // for( int i = 0; i < a.numCols; i++ ) { // for( int j = i; j < a.numCols; j++ ) { // double sum = 0; // for( int k = 0; k < a.numRows; k++ ) { // sum += a.get(k,i)*a.get(k,j); // } // c.set(i,j,sum); // c.set(j,i,sum); // } // } } public static void inner_reorder(RowD1Matrix64F a, RowD1Matrix64F c) { for( int i = 0; i < a.numCols; i++ ) { int indexC = i*c.numCols+i; double valAi = a.data[i]; for( int j = i; j < a.numCols; j++ ) { c.data[indexC++] = valAi*a.data[j]; } for( int k = 1; k < a.numRows; k++ ) { indexC = i*c.numCols+i; int indexB = k*a.numCols+i; valAi = a.data[indexB]; for( int j = i; j < a.numCols; j++ ) { c.data[indexC++] += valAi*a.data[indexB++]; } } indexC = i*c.numCols+i; int indexC2 = indexC; for( int j = i; j < a.numCols; j++ , indexC2 += c.numCols) { c.data[indexC2] = c.data[indexC++]; } } // for( int i = 0; i < a.numCols; i++ ) { // for( int j = i; j < a.numCols; j++ ) { // c.set(i,j,a.get(0,i)*a.get(0,j)); // } // // for( int k = 1; k < a.numRows; k++ ) { // for( int j = i; j < a.numCols; j++ ) { // c.set(i,j, c.get(i,j)+ a.get(k,i)*a.get(k,j)); // } // } // for( int j = i; j < a.numCols; j++ ) { // c.set(j,i,c.get(i,j)); // } // } } public static void inner_reorder_upper(RowD1Matrix64F a, RowD1Matrix64F c) { for( int i = 0; i < a.numCols; i++ ) { int indexC = i*c.numCols+i; double valAi = a.data[i]; for( int j = i; j < a.numCols; j++ ) { c.data[indexC++] = valAi*a.data[j]; } for( int k = 1; k < a.numRows; k++ ) { indexC = i*c.numCols+i; int indexB = k*a.numCols+i; valAi = a.data[indexB]; for( int j = i; j < a.numCols; j++ ) { c.data[indexC++] += valAi*a.data[indexB++]; } } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy