csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1408 lines
56 KiB
1408 lines
56 KiB
// <copyright file="SparseMatrix.cs" company="Math.NET">
|
|
// Math.NET Numerics, part of the Math.NET Project
|
|
// http://numerics.mathdotnet.com
|
|
// http://github.com/mathnet/mathnet-numerics
|
|
// http://mathnetnumerics.codeplex.com
|
|
//
|
|
// Copyright (c) 2009-2013 Math.NET
|
|
//
|
|
// 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.
|
|
// </copyright>
|
|
|
|
using MathNet.Numerics.LinearAlgebra.Storage;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
|
|
namespace MathNet.Numerics.LinearAlgebra.Complex
|
|
{
|
|
|
|
#if NOSYSNUMERICS
|
|
using Numerics;
|
|
#else
|
|
using System.Numerics;
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// A Matrix with sparse storage, intended for very large matrices where most of the cells are zero.
|
|
/// The underlying storage scheme is 3-array compressed-sparse-row (CSR) Format.
|
|
/// <a href="http://en.wikipedia.org/wiki/Sparse_matrix#Compressed_sparse_row_.28CSR_or_CRS.29">Wikipedia - CSR</a>.
|
|
/// </summary>
|
|
[Serializable]
|
|
[DebuggerDisplay("SparseMatrix {RowCount}x{ColumnCount}-Complex {NonZerosCount}-NonZero")]
|
|
public class SparseMatrix : Matrix
|
|
{
|
|
readonly SparseCompressedRowMatrixStorage<Complex> _storage;
|
|
|
|
/// <summary>
|
|
/// Gets the number of non zero elements in the matrix.
|
|
/// </summary>
|
|
/// <value>The number of non zero elements.</value>
|
|
public int NonZerosCount
|
|
{
|
|
get { return _storage.ValueCount; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix straight from an initialized matrix storage instance.
|
|
/// The storage is used directly without copying.
|
|
/// Intended for advanced scenarios where you're working directly with
|
|
/// storage for performance or interop reasons.
|
|
/// </summary>
|
|
public SparseMatrix(SparseCompressedRowMatrixStorage<Complex> storage)
|
|
: base(storage)
|
|
{
|
|
_storage = storage;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new square sparse matrix with the given number of rows and columns.
|
|
/// All cells of the matrix will be initialized to zero.
|
|
/// Zero-length matrices are not supported.
|
|
/// </summary>
|
|
/// <exception cref="ArgumentException">If the order is less than one.</exception>
|
|
public SparseMatrix(int order)
|
|
: this(order, order)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix with the given number of rows and columns.
|
|
/// All cells of the matrix will be initialized to zero.
|
|
/// Zero-length matrices are not supported.
|
|
/// </summary>
|
|
/// <exception cref="ArgumentException">If the row or column count is less than one.</exception>
|
|
public SparseMatrix(int rows, int columns)
|
|
: this(new SparseCompressedRowMatrixStorage<Complex>(rows, columns))
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given other matrix.
|
|
/// This new matrix will be independent from the other matrix.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfMatrix(Matrix<Complex> matrix)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfMatrix(matrix.Storage));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given two-dimensional array.
|
|
/// This new matrix will be independent from the provided array.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfArray(Complex[,] array)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfArray(array));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given indexed enumerable.
|
|
/// Keys must be provided at most once, zero is assumed if a key is omitted.
|
|
/// This new matrix will be independent from the enumerable.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfIndexed(int rows, int columns, IEnumerable<Tuple<int, int, Complex>> enumerable)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfIndexedEnumerable(rows, columns, enumerable));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given enumerable.
|
|
/// The enumerable is assumed to be in row-major order (row by row).
|
|
/// This new matrix will be independent from the enumerable.
|
|
/// A new memory block will be allocated for storing the vector.
|
|
/// </summary>
|
|
/// <seealso href="http://en.wikipedia.org/wiki/Row-major_order"/>
|
|
public static SparseMatrix OfRowMajor(int rows, int columns, IEnumerable<Complex> rowMajor)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfRowMajorEnumerable(rows, columns, rowMajor));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix with the given number of rows and columns as a copy of the given array.
|
|
/// The array is assumed to be in column-major order (column by column).
|
|
/// This new matrix will be independent from the provided array.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
/// <seealso href="http://en.wikipedia.org/wiki/Row-major_order"/>
|
|
public static SparseMatrix OfColumnMajor(int rows, int columns, IList<Complex> columnMajor)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfColumnMajorList(rows, columns, columnMajor));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given enumerable of enumerable columns.
|
|
/// Each enumerable in the master enumerable specifies a column.
|
|
/// This new matrix will be independent from the enumerables.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfColumns(int rows, int columns, IEnumerable<IEnumerable<Complex>> data)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfColumnEnumerables(rows, columns, data));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given column arrays.
|
|
/// This new matrix will be independent from the arrays.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfColumnArrays(params Complex[][] columns)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfColumnArrays(columns));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given column vectors.
|
|
/// This new matrix will be independent from the vectors.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfColumnVectors(params Vector<Complex>[] columns)
|
|
{
|
|
var storage = new VectorStorage<Complex>[columns.Length];
|
|
for (int i = 0; i < columns.Length; i++)
|
|
{
|
|
storage[i] = columns[i].Storage;
|
|
}
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfColumnVectors(storage));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given enumerable of enumerable rows.
|
|
/// Each enumerable in the master enumerable specifies a row.
|
|
/// This new matrix will be independent from the enumerables.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfRows(int rows, int columns, IEnumerable<IEnumerable<Complex>> data)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfRowEnumerables(rows, columns, data));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given row arrays.
|
|
/// This new matrix will be independent from the arrays.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfRowArrays(params Complex[][] rows)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfRowArrays(rows));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix as a copy of the given row vectors.
|
|
/// This new matrix will be independent from the vectors.
|
|
/// A new memory block will be allocated for storing the matrix.
|
|
/// </summary>
|
|
public static SparseMatrix OfRowVectors(params Vector<Complex>[] rows)
|
|
{
|
|
var storage = new VectorStorage<Complex>[rows.Length];
|
|
for (int i = 0; i < rows.Length; i++)
|
|
{
|
|
storage[i] = rows[i].Storage;
|
|
}
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfRowVectors(storage));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix and initialize each value to the same provided value.
|
|
/// </summary>
|
|
public static SparseMatrix Create(int rows, int columns, Complex value)
|
|
{
|
|
if (value == Complex.Zero) return new SparseMatrix(rows, columns);
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfInit(rows, columns, (i, j) => value));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new sparse matrix and initialize each value using the provided init function.
|
|
/// </summary>
|
|
public static SparseMatrix Create(int rows, int columns, Func<int, int, Complex> init)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfInit(rows, columns, init));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new diagonal sparse matrix and initialize each diagonal value to the same provided value.
|
|
/// </summary>
|
|
public static SparseMatrix CreateDiagonal(int rows, int columns, Complex value)
|
|
{
|
|
if (value == Complex.Zero) return new SparseMatrix(rows, columns);
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfDiagonalInit(rows, columns, i => value));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new diagonal sparse matrix and initialize each diagonal value using the provided init function.
|
|
/// </summary>
|
|
public static SparseMatrix CreateDiagonal(int rows, int columns, Func<int, Complex> init)
|
|
{
|
|
return new SparseMatrix(SparseCompressedRowMatrixStorage<Complex>.OfDiagonalInit(rows, columns, init));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a <c>SparseMatrix</c> for the given number of rows and columns.
|
|
/// </summary>
|
|
/// <param name="numberOfRows">The number of rows.</param>
|
|
/// <param name="numberOfColumns">The number of columns.</param>
|
|
/// <param name="fullyMutable">True if all fields must be mutable (e.g. not a diagonal matrix).</param>
|
|
/// <returns>
|
|
/// A <c>SparseMatrix</c> with the given dimensions.
|
|
/// </returns>
|
|
public override Matrix<Complex> CreateMatrix(int numberOfRows, int numberOfColumns, bool fullyMutable = false)
|
|
{
|
|
return new SparseMatrix(numberOfRows, numberOfColumns);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a <see cref="SparseVector"/> with a the given dimension.
|
|
/// </summary>
|
|
/// <param name="size">The size of the vector.</param>
|
|
/// <param name="fullyMutable">True if all fields must be mutable.</param>
|
|
/// <returns>
|
|
/// A <see cref="SparseVector"/> with the given dimension.
|
|
/// </returns>
|
|
public override Vector<Complex> CreateVector(int size, bool fullyMutable = false)
|
|
{
|
|
return new SparseVector(size);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a new matrix containing the lower triangle of this matrix.
|
|
/// </summary>
|
|
/// <returns>The lower triangle of this matrix.</returns>
|
|
public override Matrix<Complex> LowerTriangle()
|
|
{
|
|
var result = CreateMatrix(RowCount, ColumnCount);
|
|
LowerTriangleImpl(result);
|
|
return result;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the lower triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="result"/> is <see langword="null" />.</exception>
|
|
/// <exception cref="ArgumentException">If the result matrix's dimensions are not the same as this matrix.</exception>
|
|
public override void LowerTriangle(Matrix<Complex> result)
|
|
{
|
|
if (result == null)
|
|
{
|
|
throw new ArgumentNullException("result");
|
|
}
|
|
|
|
if (result.RowCount != RowCount || result.ColumnCount != ColumnCount)
|
|
{
|
|
throw DimensionsDontMatch<ArgumentException>(this, result);
|
|
}
|
|
|
|
if (ReferenceEquals(this, result))
|
|
{
|
|
var tmp = result.CreateMatrix(result.RowCount, result.ColumnCount);
|
|
LowerTriangle(tmp);
|
|
tmp.CopyTo(result);
|
|
}
|
|
else
|
|
{
|
|
result.Clear();
|
|
LowerTriangleImpl(result);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the lower triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
private void LowerTriangleImpl(Matrix<Complex> result)
|
|
{
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var row = 0; row < result.RowCount; row++)
|
|
{
|
|
var startIndex = rowPointers[row];
|
|
var endIndex = row < rowPointers.Length - 1 ? rowPointers[row + 1] : valueCount;
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
if (row >= columnIndices[j])
|
|
{
|
|
result.At(row, columnIndices[j], values[j]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a new matrix containing the upper triangle of this matrix.
|
|
/// </summary>
|
|
/// <returns>The upper triangle of this matrix.</returns>
|
|
public override Matrix<Complex> UpperTriangle()
|
|
{
|
|
var result = CreateMatrix(RowCount, ColumnCount);
|
|
UpperTriangleImpl(result);
|
|
return result;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the upper triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="result"/> is <see langword="null" />.</exception>
|
|
/// <exception cref="ArgumentException">If the result matrix's dimensions are not the same as this matrix.</exception>
|
|
public override void UpperTriangle(Matrix<Complex> result)
|
|
{
|
|
if (result == null)
|
|
{
|
|
throw new ArgumentNullException("result");
|
|
}
|
|
|
|
if (result.RowCount != RowCount || result.ColumnCount != ColumnCount)
|
|
{
|
|
throw DimensionsDontMatch<ArgumentException>(this, result);
|
|
}
|
|
|
|
if (ReferenceEquals(this, result))
|
|
{
|
|
var tmp = result.CreateMatrix(result.RowCount, result.ColumnCount);
|
|
UpperTriangle(tmp);
|
|
tmp.CopyTo(result);
|
|
}
|
|
else
|
|
{
|
|
result.Clear();
|
|
UpperTriangleImpl(result);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the upper triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
private void UpperTriangleImpl(Matrix<Complex> result)
|
|
{
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var row = 0; row < result.RowCount; row++)
|
|
{
|
|
var startIndex = rowPointers[row];
|
|
var endIndex = row < rowPointers.Length - 1 ? rowPointers[row + 1] : valueCount;
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
if (row <= columnIndices[j])
|
|
{
|
|
result.At(row, columnIndices[j], values[j]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a new matrix containing the lower triangle of this matrix. The new matrix
|
|
/// does not contain the diagonal elements of this matrix.
|
|
/// </summary>
|
|
/// <returns>The lower triangle of this matrix.</returns>
|
|
public override Matrix<Complex> StrictlyLowerTriangle()
|
|
{
|
|
var result = CreateMatrix(RowCount, ColumnCount);
|
|
StrictlyLowerTriangleImpl(result);
|
|
return result;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the strictly lower triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="result"/> is <see langword="null" />.</exception>
|
|
/// <exception cref="ArgumentException">If the result matrix's dimensions are not the same as this matrix.</exception>
|
|
public override void StrictlyLowerTriangle(Matrix<Complex> result)
|
|
{
|
|
if (result == null)
|
|
{
|
|
throw new ArgumentNullException("result");
|
|
}
|
|
|
|
if (result.RowCount != RowCount || result.ColumnCount != ColumnCount)
|
|
{
|
|
throw DimensionsDontMatch<ArgumentException>(this, result);
|
|
}
|
|
|
|
if (ReferenceEquals(this, result))
|
|
{
|
|
var tmp = result.CreateMatrix(result.RowCount, result.ColumnCount);
|
|
StrictlyLowerTriangle(tmp);
|
|
tmp.CopyTo(result);
|
|
}
|
|
else
|
|
{
|
|
result.Clear();
|
|
StrictlyLowerTriangleImpl(result);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the strictly lower triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
private void StrictlyLowerTriangleImpl(Matrix<Complex> result)
|
|
{
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var row = 0; row < result.RowCount; row++)
|
|
{
|
|
var startIndex = rowPointers[row];
|
|
var endIndex = row < rowPointers.Length - 1 ? rowPointers[row + 1] : valueCount;
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
if (row > columnIndices[j])
|
|
{
|
|
result.At(row, columnIndices[j], values[j]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a new matrix containing the upper triangle of this matrix. The new matrix
|
|
/// does not contain the diagonal elements of this matrix.
|
|
/// </summary>
|
|
/// <returns>The upper triangle of this matrix.</returns>
|
|
public override Matrix<Complex> StrictlyUpperTriangle()
|
|
{
|
|
var result = CreateMatrix(RowCount, ColumnCount);
|
|
StrictlyUpperTriangleImpl(result);
|
|
return result;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the strictly upper triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="result"/> is <see langword="null" />.</exception>
|
|
/// <exception cref="ArgumentException">If the result matrix's dimensions are not the same as this matrix.</exception>
|
|
public override void StrictlyUpperTriangle(Matrix<Complex> result)
|
|
{
|
|
if (result == null)
|
|
{
|
|
throw new ArgumentNullException("result");
|
|
}
|
|
|
|
if (result.RowCount != RowCount || result.ColumnCount != ColumnCount)
|
|
{
|
|
throw DimensionsDontMatch<ArgumentException>(this, result);
|
|
}
|
|
|
|
if (ReferenceEquals(this, result))
|
|
{
|
|
var tmp = result.CreateMatrix(result.RowCount, result.ColumnCount);
|
|
StrictlyUpperTriangle(tmp);
|
|
tmp.CopyTo(result);
|
|
}
|
|
else
|
|
{
|
|
result.Clear();
|
|
StrictlyUpperTriangleImpl(result);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Puts the strictly upper triangle of this matrix into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">Where to store the lower triangle.</param>
|
|
private void StrictlyUpperTriangleImpl(Matrix<Complex> result)
|
|
{
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var row = 0; row < result.RowCount; row++)
|
|
{
|
|
var startIndex = rowPointers[row];
|
|
var endIndex = row < rowPointers.Length - 1 ? rowPointers[row + 1] : valueCount;
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
if (row < columnIndices[j])
|
|
{
|
|
result.At(row, columnIndices[j], values[j]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns the transpose of this matrix.
|
|
/// </summary>
|
|
/// <returns>The transpose of this matrix.</returns>
|
|
public override Matrix<Complex> Transpose()
|
|
{
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
var ret = new SparseCompressedRowMatrixStorage<Complex>(ColumnCount, RowCount)
|
|
{
|
|
ColumnIndices = new int[valueCount],
|
|
Values = new Complex[valueCount]
|
|
};
|
|
|
|
// Do an 'inverse' CopyTo iterate over the rows
|
|
for (var i = 0; i < rowPointers.Length; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[i];
|
|
var endIndex = i < rowPointers.Length - 1 ? rowPointers[i + 1] : NonZerosCount;
|
|
|
|
// Get the values for the current row
|
|
if (startIndex == endIndex)
|
|
{
|
|
// Begin and end are equal. There are no values in the row, Move to the next row
|
|
continue;
|
|
}
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
ret.At(columnIndices[j], i, values[j]);
|
|
}
|
|
}
|
|
|
|
return new SparseMatrix(ret);
|
|
}
|
|
|
|
/// <summary>Calculates the Frobenius norm of this matrix.</summary>
|
|
/// <returns>The Frobenius norm of this matrix.</returns>
|
|
public override Complex FrobeniusNorm()
|
|
{
|
|
var aat = (SparseCompressedRowMatrixStorage<Complex>) (this*ConjugateTranspose()).Storage;
|
|
var norm = 0d;
|
|
|
|
for (var i = 0; i < aat.RowPointers.Length; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = aat.RowPointers[i];
|
|
var endIndex = i < aat.RowPointers.Length - 1 ? aat.RowPointers[i + 1] : aat.ValueCount;
|
|
|
|
// Get the values for the current row
|
|
if (startIndex == endIndex)
|
|
{
|
|
// Begin and end are equal. There are no values in the row, Move to the next row
|
|
continue;
|
|
}
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
if (i == aat.ColumnIndices[j])
|
|
{
|
|
norm += aat.Values[j].Magnitude;
|
|
}
|
|
}
|
|
}
|
|
|
|
norm = Math.Sqrt(norm);
|
|
return norm;
|
|
}
|
|
|
|
/// <summary>Calculates the infinity norm of this matrix.</summary>
|
|
/// <returns>The infinity norm of this matrix.</returns>
|
|
public override Complex InfinityNorm()
|
|
{
|
|
var rowPointers = _storage.RowPointers;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
var norm = 0d;
|
|
for (var i = 0; i < rowPointers.Length; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[i];
|
|
var endIndex = i < rowPointers.Length - 1 ? rowPointers[i + 1] : valueCount;
|
|
|
|
// Get the values for the current row
|
|
if (startIndex == endIndex)
|
|
{
|
|
// Begin and end are equal. There are no values in the row, Move to the next row
|
|
continue;
|
|
}
|
|
|
|
var s = 0.0;
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
s += values[j].Magnitude;
|
|
}
|
|
|
|
norm = Math.Max(norm, s);
|
|
}
|
|
|
|
return norm;
|
|
}
|
|
|
|
#region Static constructors for special matrices.
|
|
/// <summary>
|
|
/// Initializes a square <see cref="SparseMatrix"/> with all zero's except for ones on the diagonal.
|
|
/// </summary>
|
|
/// <param name="order">the size of the square matrix.</param>
|
|
/// <returns>Identity <c>SparseMatrix</c></returns>
|
|
/// <exception cref="ArgumentException">
|
|
/// If <paramref name="order"/> is less than one.
|
|
/// </exception>
|
|
public static SparseMatrix Identity(int order)
|
|
{
|
|
var m = new SparseCompressedRowMatrixStorage<Complex>(order, order)
|
|
{
|
|
ValueCount = order,
|
|
Values = new Complex[order],
|
|
ColumnIndices = new int[order]
|
|
};
|
|
|
|
for (var i = 0; i < order; i++)
|
|
{
|
|
m.Values[i] = 1d;
|
|
m.ColumnIndices[i] = i;
|
|
m.RowPointers[i] = i;
|
|
}
|
|
|
|
return new SparseMatrix(m);
|
|
}
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Adds another matrix to this matrix.
|
|
/// </summary>
|
|
/// <param name="other">The matrix to add to this matrix.</param>
|
|
/// <param name="result">The matrix to store the result of the addition.</param>
|
|
/// <exception cref="ArgumentNullException">If the other matrix is <see langword="null"/>.</exception>
|
|
/// <exception cref="ArgumentOutOfRangeException">If the two matrices don't have the same dimensions.</exception>
|
|
protected override void DoAdd(Matrix<Complex> other, Matrix<Complex> result)
|
|
{
|
|
var sparseOther = other as SparseMatrix;
|
|
var sparseResult = result as SparseMatrix;
|
|
if (sparseOther == null || sparseResult == null)
|
|
{
|
|
base.DoAdd(other, result);
|
|
return;
|
|
}
|
|
|
|
if (ReferenceEquals(this, other))
|
|
{
|
|
if (!ReferenceEquals(this, result))
|
|
{
|
|
CopyTo(result);
|
|
}
|
|
|
|
Control.LinearAlgebraProvider.ScaleArray(2.0, _storage.Values, _storage.Values);
|
|
return;
|
|
}
|
|
|
|
SparseMatrix left;
|
|
|
|
if (ReferenceEquals(sparseOther, sparseResult))
|
|
{
|
|
left = this;
|
|
}
|
|
else if (ReferenceEquals(this, sparseResult))
|
|
{
|
|
left = sparseOther;
|
|
}
|
|
else
|
|
{
|
|
CopyTo(sparseResult);
|
|
left = sparseOther;
|
|
}
|
|
|
|
var leftStorage = left._storage;
|
|
for (var i = 0; i < leftStorage.RowCount; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = leftStorage.RowPointers[i];
|
|
var endIndex = i < leftStorage.RowPointers.Length - 1 ? leftStorage.RowPointers[i + 1] : leftStorage.ValueCount;
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
var columnIndex = leftStorage.ColumnIndices[j];
|
|
var resVal = leftStorage.Values[j] + result.At(i, columnIndex);
|
|
result.At(i, columnIndex, resVal);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Subtracts another matrix from this matrix.
|
|
/// </summary>
|
|
/// <param name="other">The matrix to subtract to this matrix.</param>
|
|
/// <param name="result">The matrix to store the result of subtraction.</param>
|
|
/// <exception cref="ArgumentNullException">If the other matrix is <see langword="null"/>.</exception>
|
|
/// <exception cref="ArgumentOutOfRangeException">If the two matrices don't have the same dimensions.</exception>
|
|
protected override void DoSubtract(Matrix<Complex> other, Matrix<Complex> result)
|
|
{
|
|
var sparseOther = other as SparseMatrix;
|
|
var sparseResult = result as SparseMatrix;
|
|
|
|
if (sparseOther == null || sparseResult == null)
|
|
{
|
|
base.DoSubtract(other, result);
|
|
return;
|
|
}
|
|
|
|
if (ReferenceEquals(this, other))
|
|
{
|
|
result.Clear();
|
|
return;
|
|
}
|
|
|
|
var otherStorage = sparseOther._storage;
|
|
|
|
if (ReferenceEquals(this, sparseResult))
|
|
{
|
|
for (var i = 0; i < otherStorage.RowCount; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = otherStorage.RowPointers[i];
|
|
var endIndex = i < otherStorage.RowPointers.Length - 1 ? otherStorage.RowPointers[i + 1] : otherStorage.ValueCount;
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
var columnIndex = otherStorage.ColumnIndices[j];
|
|
var resVal = sparseResult.At(i, columnIndex) - otherStorage.Values[j];
|
|
result.At(i, columnIndex, resVal);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!ReferenceEquals(sparseOther, sparseResult))
|
|
{
|
|
sparseOther.CopyTo(sparseResult);
|
|
}
|
|
|
|
sparseResult.Negate(sparseResult);
|
|
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var i = 0; i < RowCount; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[i];
|
|
var endIndex = i < rowPointers.Length - 1 ? rowPointers[i + 1] : valueCount;
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
var columnIndex = columnIndices[j];
|
|
var resVal = sparseResult.At(i, columnIndex) + values[j];
|
|
result.At(i, columnIndex, resVal);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies each element of the matrix by a scalar and places results into the result matrix.
|
|
/// </summary>
|
|
/// <param name="scalar">The scalar to multiply the matrix with.</param>
|
|
/// <param name="result">The matrix to store the result of the multiplication.</param>
|
|
protected override void DoMultiply(Complex scalar, Matrix<Complex> result)
|
|
{
|
|
if (scalar == 1.0)
|
|
{
|
|
CopyTo(result);
|
|
return;
|
|
}
|
|
|
|
if (scalar == 0.0 || NonZerosCount == 0)
|
|
{
|
|
result.Clear();
|
|
return;
|
|
}
|
|
|
|
var sparseResult = result as SparseMatrix;
|
|
if (sparseResult == null)
|
|
{
|
|
result.Clear();
|
|
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
|
|
for (var row = 0; row < RowCount; row++)
|
|
{
|
|
var start = rowPointers[row];
|
|
var end = rowPointers[row + 1];
|
|
|
|
if (start == end)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
for (var index = start; index < end; index++)
|
|
{
|
|
var column = columnIndices[index];
|
|
result.At(row, column, values[index] * scalar);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (!ReferenceEquals(this, result))
|
|
{
|
|
CopyTo(sparseResult);
|
|
}
|
|
|
|
Control.LinearAlgebraProvider.ScaleArray(scalar, sparseResult._storage.Values, sparseResult._storage.Values);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies this matrix with another matrix and places the results into the result matrix.
|
|
/// </summary>
|
|
/// <param name="other">The matrix to multiply with.</param>
|
|
/// <param name="result">The result of the multiplication.</param>
|
|
protected override void DoMultiply(Matrix<Complex> other, Matrix<Complex> result)
|
|
{
|
|
result.Clear();
|
|
var columnVector = new DenseVector(other.RowCount);
|
|
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var row = 0; row < RowCount; row++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[row];
|
|
var endIndex = row < rowPointers.Length - 1 ? rowPointers[row + 1] : valueCount;
|
|
if (startIndex == endIndex)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
for (var column = 0; column < other.ColumnCount; column++)
|
|
{
|
|
// Multiply row of matrix A on column of matrix B
|
|
other.Column(column, columnVector);
|
|
|
|
var sum = Complex.Zero;
|
|
for (var index = startIndex; index < endIndex; index++)
|
|
{
|
|
sum += values[index] * columnVector[columnIndices[index]];
|
|
}
|
|
|
|
result.At(row, column, sum);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies this matrix with a vector and places the results into the result vector.
|
|
/// </summary>
|
|
/// <param name="rightSide">The vector to multiply with.</param>
|
|
/// <param name="result">The result of the multiplication.</param>
|
|
protected override void DoMultiply(Vector<Complex> rightSide, Vector<Complex> result)
|
|
{
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var row = 0; row < RowCount; row++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[row];
|
|
var endIndex = row < rowPointers.Length - 1 ? rowPointers[row + 1] : valueCount;
|
|
if (startIndex == endIndex)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var sum = Complex.Zero;
|
|
for (var index = startIndex; index < endIndex; index++)
|
|
{
|
|
sum += values[index] * rightSide[columnIndices[index]];
|
|
}
|
|
|
|
result[row] = sum;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies this matrix with transpose of another matrix and places the results into the result matrix.
|
|
/// </summary>
|
|
/// <param name="other">The matrix to multiply with.</param>
|
|
/// <param name="result">The result of the multiplication.</param>
|
|
protected override void DoTransposeAndMultiply(Matrix<Complex> other, Matrix<Complex> result)
|
|
{
|
|
var otherSparse = other as SparseMatrix;
|
|
var resultSparse = result as SparseMatrix;
|
|
|
|
if (otherSparse == null || resultSparse == null)
|
|
{
|
|
base.DoTransposeAndMultiply(other, result);
|
|
return;
|
|
}
|
|
|
|
resultSparse.Clear();
|
|
|
|
var rowPointers = _storage.RowPointers;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
var otherStorage = otherSparse._storage;
|
|
|
|
for (var j = 0; j < RowCount; j++)
|
|
{
|
|
// Get the begin / end index for the row
|
|
var startIndexOther = otherStorage.RowPointers[j];
|
|
var endIndexOther = j < otherStorage.RowPointers.Length - 1 ? otherStorage.RowPointers[j + 1] : otherStorage.ValueCount;
|
|
if (startIndexOther == endIndexOther)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
for (var i = 0; i < RowCount; i++)
|
|
{
|
|
// Multiply row of matrix A on row of matrix B
|
|
// Get the begin / end index for the row
|
|
var startIndexThis = rowPointers[i];
|
|
var endIndexThis = i < rowPointers.Length - 1 ? rowPointers[i + 1] : valueCount;
|
|
if (startIndexThis == endIndexThis)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
var sum = Complex.Zero;
|
|
for (var index = startIndexOther; index < endIndexOther; index++)
|
|
{
|
|
var ind = _storage.FindItem(i, otherStorage.ColumnIndices[index]);
|
|
if (ind >= 0)
|
|
{
|
|
sum += otherStorage.Values[index] * values[ind];
|
|
}
|
|
}
|
|
|
|
resultSparse._storage.At(i, j, sum + result.At(i, j));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Negate each element of this matrix and place the results into the result matrix.
|
|
/// </summary>
|
|
/// <param name="result">The result of the negation.</param>
|
|
protected override void DoNegate(Matrix<Complex> result)
|
|
{
|
|
CopyTo(result);
|
|
DoMultiply(-1, result);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Pointwise multiplies this matrix with another matrix and stores the result into the result matrix.
|
|
/// </summary>
|
|
/// <param name="other">The matrix to pointwise multiply with this one.</param>
|
|
/// <param name="result">The matrix to store the result of the pointwise multiplication.</param>
|
|
protected override void DoPointwiseMultiply(Matrix<Complex> other, Matrix<Complex> result)
|
|
{
|
|
result.Clear();
|
|
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var i = 0; i < RowCount; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[i];
|
|
var endIndex = i < rowPointers.Length - 1 ? rowPointers[i + 1] : valueCount;
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
var resVal = values[j]*other.At(i, columnIndices[j]);
|
|
if (!resVal.IsZero())
|
|
{
|
|
result.At(i, columnIndices[j], resVal);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Pointwise divide this matrix by another matrix and stores the result into the result matrix.
|
|
/// </summary>
|
|
/// <param name="divisor">The matrix to pointwise divide this one by.</param>
|
|
/// <param name="result">The matrix to store the result of the pointwise division.</param>
|
|
protected override void DoPointwiseDivide(Matrix<Complex> divisor, Matrix<Complex> result)
|
|
{
|
|
result.Clear();
|
|
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var i = 0; i < RowCount; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[i];
|
|
var endIndex = i < rowPointers.Length - 1 ? rowPointers[i + 1] : valueCount;
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
if (!values[j].IsZero())
|
|
{
|
|
result.At(i, columnIndices[j], values[j]/divisor.At(i, columnIndices[j]));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public override void KroneckerProduct(Matrix<Complex> other, Matrix<Complex> result)
|
|
{
|
|
if (other == null)
|
|
{
|
|
throw new ArgumentNullException("other");
|
|
}
|
|
|
|
if (result == null)
|
|
{
|
|
throw new ArgumentNullException("result");
|
|
}
|
|
|
|
if (result.RowCount != (RowCount*other.RowCount) || result.ColumnCount != (ColumnCount*other.ColumnCount))
|
|
{
|
|
throw DimensionsDontMatch<ArgumentOutOfRangeException>(this, other, result);
|
|
}
|
|
|
|
var rowPointers = _storage.RowPointers;
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
var valueCount = _storage.ValueCount;
|
|
|
|
for (var i = 0; i < RowCount; i++)
|
|
{
|
|
// Get the begin / end index for the current row
|
|
var startIndex = rowPointers[i];
|
|
var endIndex = i < rowPointers.Length - 1 ? rowPointers[i + 1] : valueCount;
|
|
|
|
for (var j = startIndex; j < endIndex; j++)
|
|
{
|
|
if (!values[j].IsZero())
|
|
{
|
|
result.SetSubMatrix(i*other.RowCount, other.RowCount, columnIndices[j]*other.ColumnCount, other.ColumnCount, values[j]*other);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether this matrix is symmetric.
|
|
/// </summary>
|
|
public override bool IsSymmetric
|
|
{
|
|
get
|
|
{
|
|
if (RowCount != ColumnCount)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
// todo: we might be able to speed this up by caching one half of the matrix
|
|
var rowPointers = _storage.RowPointers;
|
|
for (var row = 0; row < RowCount - 1; row++)
|
|
{
|
|
var start = rowPointers[row];
|
|
var end = rowPointers[row + 1];
|
|
|
|
if (start == end)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (!CheckIfOppositesAreEqual(start, end, row))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
var lastRow = rowPointers.Length - 1;
|
|
|
|
if (rowPointers[lastRow] < NonZerosCount)
|
|
{
|
|
if (!CheckIfOppositesAreEqual(rowPointers[lastRow], _storage.ValueCount, lastRow))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Checks if opposites in a range are equal.
|
|
/// </summary>
|
|
/// <param name="start">The start of the range.</param>
|
|
/// <param name="end">The end of the range.</param>
|
|
/// <param name="row">The row the row to check.</param>
|
|
/// <returns>If the values are equal or not.</returns>
|
|
private bool CheckIfOppositesAreEqual(int start, int end, int row)
|
|
{
|
|
var columnIndices = _storage.ColumnIndices;
|
|
var values = _storage.Values;
|
|
|
|
for (var index = start; index < end; index++)
|
|
{
|
|
var column = columnIndices[index];
|
|
var opposite = At(column, row);
|
|
if (!values[index].Equals(opposite))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds two matrices together and returns the results.
|
|
/// </summary>
|
|
/// <remarks>This operator will allocate new memory for the result. It will
|
|
/// choose the representation of either <paramref name="leftSide"/> or <paramref name="rightSide"/> depending on which
|
|
/// is denser.</remarks>
|
|
/// <param name="leftSide">The left matrix to add.</param>
|
|
/// <param name="rightSide">The right matrix to add.</param>
|
|
/// <returns>The result of the addition.</returns>
|
|
/// <exception cref="ArgumentOutOfRangeException">If <paramref name="leftSide"/> and <paramref name="rightSide"/> don't have the same dimensions.</exception>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="leftSide"/> or <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
public static SparseMatrix operator +(SparseMatrix leftSide, SparseMatrix rightSide)
|
|
{
|
|
if (rightSide == null)
|
|
{
|
|
throw new ArgumentNullException("rightSide");
|
|
}
|
|
|
|
if (leftSide == null)
|
|
{
|
|
throw new ArgumentNullException("leftSide");
|
|
}
|
|
|
|
if (leftSide.RowCount != rightSide.RowCount || leftSide.ColumnCount != rightSide.ColumnCount)
|
|
{
|
|
throw DimensionsDontMatch<ArgumentOutOfRangeException>(leftSide, rightSide);
|
|
}
|
|
|
|
return (SparseMatrix)leftSide.Add(rightSide);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a <strong>Matrix</strong> containing the same values of <paramref name="rightSide"/>.
|
|
/// </summary>
|
|
/// <param name="rightSide">The matrix to get the values from.</param>
|
|
/// <returns>A matrix containing a the same values as <paramref name="rightSide"/>.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
public static SparseMatrix operator +(SparseMatrix rightSide)
|
|
{
|
|
if (rightSide == null)
|
|
{
|
|
throw new ArgumentNullException("rightSide");
|
|
}
|
|
|
|
return (SparseMatrix)rightSide.Clone();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Subtracts two matrices together and returns the results.
|
|
/// </summary>
|
|
/// <remarks>This operator will allocate new memory for the result. It will
|
|
/// choose the representation of either <paramref name="leftSide"/> or <paramref name="rightSide"/> depending on which
|
|
/// is denser.</remarks>
|
|
/// <param name="leftSide">The left matrix to subtract.</param>
|
|
/// <param name="rightSide">The right matrix to subtract.</param>
|
|
/// <returns>The result of the addition.</returns>
|
|
/// <exception cref="ArgumentOutOfRangeException">If <paramref name="leftSide"/> and <paramref name="rightSide"/> don't have the same dimensions.</exception>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="leftSide"/> or <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
public static SparseMatrix operator -(SparseMatrix leftSide, SparseMatrix rightSide)
|
|
{
|
|
if (rightSide == null)
|
|
{
|
|
throw new ArgumentNullException("rightSide");
|
|
}
|
|
|
|
if (leftSide == null)
|
|
{
|
|
throw new ArgumentNullException("leftSide");
|
|
}
|
|
|
|
if (leftSide.RowCount != rightSide.RowCount || leftSide.ColumnCount != rightSide.ColumnCount)
|
|
{
|
|
throw DimensionsDontMatch<ArgumentOutOfRangeException>(leftSide, rightSide);
|
|
}
|
|
|
|
return (SparseMatrix)leftSide.Subtract(rightSide);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Negates each element of the matrix.
|
|
/// </summary>
|
|
/// <param name="rightSide">The matrix to negate.</param>
|
|
/// <returns>A matrix containing the negated values.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
public static SparseMatrix operator -(SparseMatrix rightSide)
|
|
{
|
|
if (rightSide == null)
|
|
{
|
|
throw new ArgumentNullException("rightSide");
|
|
}
|
|
|
|
return (SparseMatrix)rightSide.Negate();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies a <strong>Matrix</strong> by a constant and returns the result.
|
|
/// </summary>
|
|
/// <param name="leftSide">The matrix to multiply.</param>
|
|
/// <param name="rightSide">The constant to multiply the matrix by.</param>
|
|
/// <returns>The result of the multiplication.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="leftSide"/> is <see langword="null" />.</exception>
|
|
public static SparseMatrix operator *(SparseMatrix leftSide, Complex rightSide)
|
|
{
|
|
if (leftSide == null)
|
|
{
|
|
throw new ArgumentNullException("leftSide");
|
|
}
|
|
|
|
return (SparseMatrix)leftSide.Multiply(rightSide);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies a <strong>Matrix</strong> by a constant and returns the result.
|
|
/// </summary>
|
|
/// <param name="leftSide">The matrix to multiply.</param>
|
|
/// <param name="rightSide">The constant to multiply the matrix by.</param>
|
|
/// <returns>The result of the multiplication.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
public static SparseMatrix operator *(Complex leftSide, SparseMatrix rightSide)
|
|
{
|
|
if (rightSide == null)
|
|
{
|
|
throw new ArgumentNullException("rightSide");
|
|
}
|
|
|
|
return (SparseMatrix)rightSide.Multiply(leftSide);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies two matrices.
|
|
/// </summary>
|
|
/// <remarks>This operator will allocate new memory for the result. It will
|
|
/// choose the representation of either <paramref name="leftSide"/> or <paramref name="rightSide"/> depending on which
|
|
/// is denser.</remarks>
|
|
/// <param name="leftSide">The left matrix to multiply.</param>
|
|
/// <param name="rightSide">The right matrix to multiply.</param>
|
|
/// <returns>The result of multiplication.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="leftSide"/> or <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
/// <exception cref="ArgumentException">If the dimensions of <paramref name="leftSide"/> or <paramref name="rightSide"/> don't conform.</exception>
|
|
public static SparseMatrix operator *(SparseMatrix leftSide, SparseMatrix rightSide)
|
|
{
|
|
if (leftSide == null)
|
|
{
|
|
throw new ArgumentNullException("leftSide");
|
|
}
|
|
|
|
if (rightSide == null)
|
|
{
|
|
throw new ArgumentNullException("rightSide");
|
|
}
|
|
|
|
if (leftSide.ColumnCount != rightSide.RowCount)
|
|
{
|
|
throw DimensionsDontMatch<ArgumentException>(leftSide, rightSide);
|
|
}
|
|
|
|
return (SparseMatrix)leftSide.Multiply(rightSide);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies a <strong>Matrix</strong> and a Vector.
|
|
/// </summary>
|
|
/// <param name="leftSide">The matrix to multiply.</param>
|
|
/// <param name="rightSide">The vector to multiply.</param>
|
|
/// <returns>The result of multiplication.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="leftSide"/> or <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
public static SparseVector operator *(SparseMatrix leftSide, SparseVector rightSide)
|
|
{
|
|
if (leftSide == null)
|
|
{
|
|
throw new ArgumentNullException("leftSide");
|
|
}
|
|
|
|
return (SparseVector)leftSide.Multiply(rightSide);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies a Vector and a <strong>Matrix</strong>.
|
|
/// </summary>
|
|
/// <param name="leftSide">The vector to multiply.</param>
|
|
/// <param name="rightSide">The matrix to multiply.</param>
|
|
/// <returns>The result of multiplication.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="leftSide"/> or <paramref name="rightSide"/> is <see langword="null" />.</exception>
|
|
public static SparseVector operator *(SparseVector leftSide, SparseMatrix rightSide)
|
|
{
|
|
if (rightSide == null)
|
|
{
|
|
throw new ArgumentNullException("rightSide");
|
|
}
|
|
|
|
return (SparseVector)rightSide.LeftMultiply(leftSide);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Multiplies a <strong>Matrix</strong> by a constant and returns the result.
|
|
/// </summary>
|
|
/// <param name="leftSide">The matrix to multiply.</param>
|
|
/// <param name="rightSide">The constant to multiply the matrix by.</param>
|
|
/// <returns>The result of the multiplication.</returns>
|
|
/// <exception cref="ArgumentNullException">If <paramref name="leftSide"/> is <see langword="null" />.</exception>
|
|
public static SparseMatrix operator %(SparseMatrix leftSide, Complex rightSide)
|
|
{
|
|
if (leftSide == null)
|
|
{
|
|
throw new ArgumentNullException("leftSide");
|
|
}
|
|
|
|
return (SparseMatrix)leftSide.Modulus(rightSide);
|
|
}
|
|
|
|
public override string ToTypeString()
|
|
{
|
|
return string.Format("SparseMatrix {0}x{1}-Complex {2:P2} Filled", RowCount, ColumnCount, 100d * NonZerosCount / (RowCount * (double)ColumnCount));
|
|
}
|
|
}
|
|
}
|
|
|
|
|