Changeset 49f94f in git for Singular/LIB/matrix.lib


Ignore:
Timestamp:
Oct 1, 2008, 5:29:23 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
238c959ae4616e6b794e6679468a388c696c97fd
Parents:
e9fdf62fe3498dea063e83aeb0033b227a0b08c7
Message:
*hannes: typos reported by gorzel


git-svn-id: file:///usr/local/Singular/svn/trunk@11088 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/matrix.lib

    re9fdf6 r49f94f  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: matrix.lib,v 1.42 2008-06-27 18:08:53 motsak Exp $";
     2version="$Id: matrix.lib,v 1.43 2008-10-01 15:29:23 Singular Exp $";
    33category="Linear Algebra";
    44info="
     
    302302   if( typeof(A)!="matrix" and typeof(A)!="intmat" )
    303303   {
    304       "// no matrix or intmat!";
    305       return (A);
     304      ERROR("no matrix or intmat!");
    306305   }
    307306   if( ncols(A) != nrows(A) )
    308307   {
    309       "// not a suare matrix!";
    310       return();
     308      ERROR("not a square matrix!");
    311309   }
    312310//---------------------------- trivial cases ----------------------------------
Note: See TracChangeset for help on using the changeset viewer.