Changeset a4337a1 in git


Ignore:
Timestamp:
Oct 31, 2007, 6:49:54 PM (16 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
7e13d42835c6327d0cdb77f81933304f228c4e52
Parents:
8d080143a9d434f6fe242515ae3aba1992d6f4ef
Message:
*hannes: syntax


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/nctools.lib

    r8d0801 ra4337a1  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: nctools.lib,v 1.36 2007-10-31 17:23:49 Singular Exp $";
     2version="$Id: nctools.lib,v 1.37 2007-10-31 17:49:54 Singular Exp $";
    33category="Noncommutative";
    44info="
     
    387387proc findimAlgebra(matrix M, list #)
    388388"USAGE:   findimAlgebra(M,[r]); M a matrix, r an optional ring
    389 RETURN:  nothing
     389RETURN:  ring
    390390PURPOSE: define a finite dimensional algebra structure on a ring
    391391NOTE:  the matrix M is used to define the relations x(j)*x(i) = M[i,j] in the
     
    441441  ideal fdQuot = fetch(save,D);
    442442  export fdQuot;
     443  return(S);
    443444}
    444445example
     
    448449  matrix S[3][3];
    449450  S[2,3]=a*x(1); S[3,2]=-b*x(1);
    450   findimAlgebra(S);
     451  def A=findimAlgebra(S); setring A;
    451452  fdQuot = twostd(fdQuot);
    452453  qring Qr = fdQuot;
     
    528529  C[1,3]   = q;
    529530  print(C);
    530   def S = nc_algebra(C,0); serring S;
     531  def S = nc_algebra(C,0); setring S;
    531532  S;
    532533}
Note: See TracChangeset for help on using the changeset viewer.