Changeset 3402256 in git


Ignore:
Timestamp:
Oct 15, 2014, 3:35:05 PM (10 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
aae39ff8fa54782d523b9983a7da5214d076b206
Parents:
92b7f0252e0f83a54f33a92c9ec02a5f832d2d1f
Message:
chg: activate internal matrix op. for eigenvalues
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/linalg.lib

    r92b7f0 r3402256  
    12511251static proc rowcolswap(matrix M,int i,int j)
    12521252{
     1253  if(system("with","eigenval"))
     1254  {
     1255    return(system("rowcolswap",M,i,j));
     1256  }
     1257  //--------------------------------------------
    12531258  if(i==j)
    12541259  {
     
    12741279static proc rowelim(matrix M,int i,int j,int k)
    12751280{
     1281  if(system("with","eigenval"))
     1282  {
     1283    return(system("rowelim",M,i,j,k));
     1284  }
     1285  // -----------------------
    12761286  if(jet(M[i,k],0)==0||jet(M[j,k],0)==0)
    12771287  {
     
    14911501RETURN:  list l:
    14921502            l[1] an ideal, the generators of a; sorted and with multiple entries displayed only once@*
    1493             l[2] and intvec, l[2][i] provides the multiplicity of l[1][i]
     1503            l[2] an intvec, l[2][i] provides the multiplicity of l[1][i]
    14941504EXAMPLE: example spnf; shows examples
    14951505"
Note: See TracChangeset for help on using the changeset viewer.