Skip to content

C and MATLAB implementations of some diagonal scaling methods.

License

Notifications You must be signed in to change notification settings

hsanzg/diag-scals

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

diag-scals

Build status C documentation

A diagonal scaling of a real matrix $A$ with nonnegative entries is a product of the form $XAY$, where $X$ and $Y$ are real diagonal matrices with positive entries on the main diagonal. This repository contains C and MATLAB subroutines for three algorithms that approximately compute diagonal scalings of a given nonnegative matrix with prescribed row and column sums. The iterative schemes work under different stopping criteria, with two of them being ideally suited to relaxed tolerances for the target row and column sums.

This work is part of my undergraduate thesis in Applied Mathematics and Computing at the University Carlos III of Madrid.

Methods

The explicit Sinkhorn–Knopp-like method

The explicit variant of the Sinkhorn–Knopp-like algorithm, devised by J. Kruithof; see the paper Properties of Kruithof's Projection Method by R. S. Krupp for details. The convergence properties of the method in the doubly stochastic case were analyzed by R. Sinkhorn and P. Knopp in Concerning nonnegative matrices and doubly stochastic matrices.

The implicit Sinkhorn–Knopp-like method

The implicit variant of the Sinkhorn–Knopp-like algorithm, proposed by B. Kalantari and L. Khachiyan in On the complexity of nonnegative-matrix scaling. The main ideas of the scheme are summarized in the paper The Sinkhorn-Knopp algorithm: convergence and applications by P. A. Knight.

Newton's diagonal scaling method

A novel extension of P. A. Knight and D. Ruiz's symmetric matrix balancing method proposed in Section 2 of A fast algorithm for matrix balancing to the general diagonal scaling problem. See Section 4.2 of my thesis for further information.

Stopping criteria

Let $X^{(k)}$ and $Y^{(k)}$ be respectively the approximations to the matrices $X$ and $Y$ at the $k$th step of an iterative diagonal scaling method. We can write $X^{(k + 1)} = \Gamma^{(k)} X^{(k)}$ and $Y^{(k + 1)} = \Delta^{(k)} Y^{(k)}$, where $\Gamma^{(k)}$ and $\Delta^{(k)}$ are diagonal matrices with positive main diagonals. This library provides implementations of the iterative processes listed above that stop whenever

  1. the matrix $\Gamma^{(k)} \oplus \Delta^{(k)}$ is near the identity in the $l_\infty$ norm,
  2. the spectral condition number of $\Gamma^{(k)} \oplus \Delta^{(k)}$ is close to 1, or
  3. the maximum of the spectral condition numbers of $\Gamma^{(k)}$ and $\Delta^{(k)}$ is close to 1;

or after a maximum number of iterations have been run.

Usage

You will need the following dependencies to build and use the C library:

  • A C11 compiler,
  • cmake ≥ 3,
  • Intel oneMKL ≥ 2021.1 (provides BLAS and LAPACK implementations),
  • An x86 processor with support for AVX2 instructions.
git clone git@github.com:hsanzg/diag-scals.git
cd diag-scals/c
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_BENCHMARKING=OFF -Bbuild
cmake --build build --parallel

The MATLAB scripts have been tested on version R2022b, and they accept matrices stored in either dense or sparse form as input.

Examples

The following C test program uses the explicit Sinkhorn–Knopp-like algorithm under the first stopping criterion to approximately balance a $100 \times 100$ matrix of random floating point numbers in $[1, 10)$:

#include <stdlib.h>
#include <stdio.h>
#include <diag_scals/diag_scals.h>

int main(void) {
    const size_t n = 100;
    ds_problem pr;
    ds_problem_init(&pr, n, n, /* max_iters */ 10, /* tol */ 1e-4);
    for (size_t j = 0; j < n; ++j)
        for (size_t i = 0; i < n; ++i)
            // Store matrices in column-major order.
            pr.a[n * j + i] = 1. + 9. * rand() / RAND_MAX;
    for (size_t i = 0; i < n; ++i) pr.r[i] = 1.;
    for (size_t j = 0; j < n; ++j) pr.c[j] = 1.;
    
    ds_sol sol = ds_expl_crit1(pr); // clobbers pr.a
    if (ds_sol_is_err(&sol)) return 1;
    
    // Print the approximate solution; here P = XAY.
    for (size_t j = 0; j < n; ++j) {
        for (size_t i = 0; i < n; ++i)
            printf("%lf ", sol.p[n * j + i]);
        putchar('\n');
    }
    
    ds_sol_free(&sol);
    ds_problem_free(&pr);
    
    // Clean up the working area resources.
    ds_work_area_free();
    return 0;
}

The C library documentation contains current information about all available subroutines and data structures.

The corresponding MATLAB program is quite simple:

n = 100;
A = 1 + 9 * rand(n);
r = ones(n, 1); c = r;

[P, x, y, residual, iters] = dsexplicit1(A, r, c, 10, 1e-4);
P

License

MIT © Hugo Sanz González

About

C and MATLAB implementations of some diagonal scaling methods.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published