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

/**
 * @version     Last modified on Fri Nov 15 14:17:17 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 one-dimensional column vector of <tt>double</tt>s
 * assimilated to a single-column matrix.
 *
 * @see         RowVector
 * @see         Vector
 * @see         Matrix
 */
public class ColVector extends Vector
{
  /**
   * Constructs a <tt>ColVector</tt> of <tt>dimension</tt> elements as a
   * single-column <tt>Matrix</tt>.
   */
  public ColVector (int dimension)
  {
    super(false,dimension);
  }
  
  /* ******************************************************************** */
}
