// FILE. . . . . d:/hak/hlt/src/hlt/math/matrix/sources/DoublyStochasticMatrix.java
// EDIT BY . . . Hassan Ait-Kaci
// ON MACHINE. . Hak-Laptop
// STARTED ON. . Fri Nov 15 18:10:36 2019

/**
 * @version     Last modified on Fri Nov 15 18:30:18 2019 by hak
 * @author      <a href="mailto:hak@acm.org">Hassan A&iuml;t-Kaci</a>
 * @copyright   &copy; <a href="http://www.hassan-ait-kaci.net/">by the author</a>
 */

package hlt.math.matrix;

/**
 * This implements a doubly-stochastic matrix; <i>i.e.</i>, a matrix of
 * non-negative <tt>double</tt>s whose every row add up to <tt>1.0</tt>.
 *
 * @see         RowStochasticMatrix
 * @see         ColumnStochasticMatrix
 * @see         Matrix
 */
public class DoublyStochasticMatrix extends RowStochasticMatrix, ColumnStochasticMatrix, SquareMatrix
{
  
  /* ******************************************************************** */
}
