~ubuntu-branches/debian/sid/genius/sid

« back to all changes in this revision

Viewing changes to src/funclib.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-02-06 09:45:34 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070206094534-02k3egxuiyuswl7c
Tags: 0.7.7-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* GENIUS Calculator
2
 
 * Copyright (C) 1997-2006 Jiri (George) Lebl
 
2
 * Copyright (C) 1997-2007 Jiri (George) Lebl
3
3
 *
4
4
 * Author: Jiri (George) Lebl
5
5
 *
5107
5107
        FUNC (ExpandMatrix, 1, "M", "matrix", N_("Expands a matrix just like we do on unquoted matrix input"));
5108
5108
        FUNC (RowsOf, 1, "M", "matrix", N_("Gets the rows of a matrix as a vertical vector"));
5109
5109
        FUNC (ColumnsOf, 1, "M", "matrix", N_("Gets the columns of a matrix as a horizontal vector"));
5110
 
        FUNC (DiagonalOf, 1, "M", "matrix", N_("Gets the diagonal entries of a matrix as a horizontal vector"));
 
5110
        FUNC (DiagonalOf, 1, "M", "matrix", N_("Gets the diagonal entries of a matrix as a column vector"));
5111
5111
        FUNC (CountZeroColumns, 1, "M", "matrix", N_("Count the number of zero columns in a matrix"));
5112
5112
        FUNC (StripZeroColumns, 1, "M", "matrix", N_("Removes any all-zero columns of M"));
5113
5113