Changeset d0b24a in git


Ignore:
Timestamp:
Feb 2, 2001, 5:21:37 PM (23 years ago)
Author:
Mathias Schulze <mschulze@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
51d95bfeb0393784c857bbca23fe93ca05153b99
Parents:
cb8d1d6cb0799385b9ff34f5791fde317a960124
Message:
*mschulze: modified procedure descriptions


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

Legend:

Unmodified
Added
Removed
  • Singular/LIB/spectrum.lib

    rcb8d1d6 rd0b24a  
    11///////////////////////////////////////////////////////////////////////////////
    2 version="$Id: spectrum.lib,v 1.11 2001-01-22 10:37:57 mschulze Exp $";
     2version="$Id: spectrum.lib,v 1.12 2001-02-02 16:21:37 mschulze Exp $";
    33category="Singularities";
    44info="
     
    88PROCEDURES:
    99 spectrumnd(poly[,1]);   spectrum of a nondegenerate isolated singularity
    10  semicont(s1,s2[,1]);    tests if s2 is semicontinous for s1 (open intervall)
    11  semicontqh(s1,s2[,1]);  semicontinuity test with open and half open intervalls
     10 semicont(s1,s2[,1]);    tests if s2 is semicontinous for s1
     11 semicontqh(s1,s2);      semicontinuity test using open and half open intervals
    1212 spadd(s1,s2);           sum of two spectra s1 and s2
    13  spmul(s,k);             multiplies the spectrum s with the int k
    14           (parameters in square brackets [] are optional)
     13 spmul(s,k);             product of spectrum s with integer k
    1514";
    1615
     
    1817
    1918proc spectrumnd (poly f, list #)
    20 "USAGE:  spectrumnd(f[,1]);  f polynomial
     19"USAGE:   spectrumnd(f[,1]);  f poly
    2120ASSUME:  f has nondegenerate principal part
    22          computes the spectrum of f
    23          if a second argument 1 is given,
    24          no test for a degenerate principal part will be done
    25 RETURN:  list
     21RETURN:  a list containing the spectrum of f
     22NOTE     if a second argument 1 is given,
     23         no test for a degenerate principal part will be done
    2624EXAMPLE: example spectrumnd; shows examples
    2725"
     
    4038
    4139proc semicont (list s, list ss, list #)
    42 "USAGE:  semicont(s,ss[,i]);  s, ss spectra, i int
    43          tests if ss is semicontinous for s using half open intervalls
    44          (and open intervalls for a 3rd paramater 1)
    45 RETURN:  int
     40"USAGE:   semicont(s,ss[,1]);  s, ss list
     41RETURN:  1 if ss is semicontinous for s using half open intervals, 0 otherwise
     42NOTE:    if a third argument 1 is given, open intervals are used
    4643EXAMPLE: example semicont; shows examples
    4744"
     
    5653///////////////////////////////////////////////////////////////////////////////
    5754proc semicontsqh (list s, list ss)
    58 "USAGE: semicontsqh(s,ss);  s, ss spectra, i int
    59         tests if ss is semicontinous for s using open and half open intervalls
    60 RETURN: int
     55"USAGE: semicontsqh(s,ss);  s, ss list
     56RETURN: 1 if ss is semicontinous for s using open and half open intervals,
     57        0 otherwise
    6158EXAMPLE: example semicontsqh; shows examples
    6259"
     
    6966///////////////////////////////////////////////////////////////////////////////
    7067proc spadd (list s1, list s2)
    71 "USAGE:  spadd(s1,s2);  s1, s2 spectra
    72          sum of two spectra s1 and s2
    73 RETURN:  list
     68"USAGE:  spadd(s1,s2);  s1, s2 list
     69RETURN:  a list containing the sum of the two spectra s1 and s2
    7470EXAMPLE: example spadd; shows examples
    7571"
     
    8278///////////////////////////////////////////////////////////////////////////////
    8379proc spmul (list s, int k)
    84 "USAGE:  spmul(s,k);  s spectrum, k int
    85          multiplies the spectrum s with the int k
    86 RETURN:  list
     80"USAGE:  spmul(s,k);  s list, k int
     81RETURN:  a list containing the product of the spectrum s with the integer k
    8782EXAMPLE: example spmul; shows examples
    8883"
Note: See TracChangeset for help on using the changeset viewer.