HUMath.Algebra
Class LZ

java.lang.Object
  extended by HUMath.Algebra.LZ

public class LZ
extends java.lang.Object

Polynome in a, b, c,... mit Koeffizienten aus L

Version:
28.1.04
Author:
Hubert Grassmann

Field Summary
static long addc
          zaehlt Additionen bzw.
 L co
           
 java.lang.String mon
           
static long multc
          zaehlt Additionen bzw.
 LZ next
           
 
Constructor Summary
LZ()
          Konstrukteur
LZ(java.lang.String a)
          Konstrukteur
 
Method Summary
static LZ add(LZ p1, LZ p2)
          addieren
static LZ copy(LZ p)
          kopieren
static boolean iszero(LZ p)
           
static LZ konst(int c)
          ergibt das konstante Polynom c
static LZ lin(int c)
          ergibt das Polynom a + c
static int max(java.lang.String e)
          maximale Variable
static LZ mmalp(LZ m, LZ aa)
          Polynom aa mit Monom m multiplizieren
static LZ mult(LZ aa, LZ bb)
          multiplizieren
static LZ powerp(LZ x, int ex)
          potenzieren
static LZ read()
          lesen
static java.lang.String sort(java.lang.String e)
          String wird sortiert
static LZ sub(LZ a, LZ b)
          subtrahieren
static void write(LZ p)
          schreiben
static LZ zmalp(L z, LZ aa)
          mit Zahl multiplizieren
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

addc

public static long addc
zaehlt Additionen bzw. Multiplikationen von L's


multc

public static long multc
zaehlt Additionen bzw. Multiplikationen von L's


co

public L co

mon

public java.lang.String mon

next

public LZ next
Constructor Detail

LZ

public LZ()
Konstrukteur


LZ

public LZ(java.lang.String a)
Konstrukteur

Method Detail

iszero

public static boolean iszero(LZ p)

write

public static void write(LZ p)
schreiben


copy

public static LZ copy(LZ p)
kopieren


add

public static LZ add(LZ p1,
                     LZ p2)
addieren


zmalp

public static LZ zmalp(L z,
                       LZ aa)
mit Zahl multiplizieren


mmalp

public static LZ mmalp(LZ m,
                       LZ aa)
Polynom aa mit Monom m multiplizieren


mult

public static LZ mult(LZ aa,
                      LZ bb)
multiplizieren


sub

public static LZ sub(LZ a,
                     LZ b)
subtrahieren


konst

public static LZ konst(int c)
ergibt das konstante Polynom c


lin

public static LZ lin(int c)
ergibt das Polynom a + c


read

public static LZ read()
lesen


powerp

public static LZ powerp(LZ x,
                        int ex)
potenzieren


max

public static int max(java.lang.String e)
maximale Variable


sort

public static java.lang.String sort(java.lang.String e)
String wird sortiert