|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--SWjtools.mathele.komplex
Rechnen mit komplexen Zahlen
im der Form (re|im)
re ist der Realteil a der komplexen Zahl z = a + ib
im ist der Imaginärteil b der komplexen Zahl z = a + ib
Field Summary | |
static komplex |
NaN
Not-a-Number vom Typ komplex (NaN|NaN) |
Constructor Summary | |
komplex()
Erzeuge die komplexe Null (0|0)! |
|
komplex(double r,
double i)
Erzeuge die komplexe Zahl (r|i)! |
Method Summary | |
boolean |
istNull()
Prüfe, ob es die komplexe Null ist! |
komplex |
k_add(komplex b)
Addiere b hinzu! |
double |
k_Betrag()
Liefere den Betrag von z (Wurzel aus der Summe der Quadrate von Real- und Imaginärteil)! |
komplex |
k_Differenz(komplex x,
komplex y)
Berechne die Differenz zweier komplexer Zahlen x und y! |
double |
k_im()
Liefere den Imaginärteil der komplexen Zahl! |
komplex |
k_invers()
Bestimme das Inverse bezüglich der Multiplikation! |
komplex |
k_mal(komplex b)
Multipliziere mit b! |
komplex |
k_minus()
Bestimme das Inverse bezüglich der Addition! |
double |
k_phi_deg()
Umrechnung in Polarkoordinaten (r|phi) |
double |
k_phi()
Umrechnung in Polarkoordinaten (r|phi) |
komplex |
k_Produkt(komplex x,
komplex y)
Berechne das Produkt zweier komplexer Zahlen x und y! |
double |
k_r()
Umrechnung in Polarkoordinaten (r|phi) |
double |
k_re()
Liefere den Realteil der komplexen Zahl! |
komplex |
k_sub(komplex b)
Subtrahiere b! |
komplex |
k_Summe(komplex x,
komplex y)
Berechne die Summe zweier komplexer Zahlen x und y! |
java.lang.String |
toString()
Wandle die komplexe Zahl in eine Zeichenkette der Form (Realteil|Imaginärteil) um! |
Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
Field Detail |
public static final komplex NaN
Constructor Detail |
public komplex()
public komplex(double r, double i)
r
- Realteili
- ImaginärteilMethod Detail |
public double k_re()
public double k_im()
public boolean istNull()
public double k_r()
public double k_phi()
public double k_phi_deg()
public double k_Betrag()
public komplex k_add(komplex b)
b
- die komplexe Zahl, die hinzu addiert werden sollpublic komplex k_sub(komplex b)
b
- die komplexe Zahl, die subtrahiert werden sollpublic komplex k_mal(komplex b)
b
- die komplexe Zahl, mit der multipliziert werden sollpublic komplex k_minus()
public komplex k_invers()
public komplex k_Summe(komplex x, komplex y)
x
- der erste Summandy
- der zweite Summandpublic komplex k_Differenz(komplex x, komplex y)
x
- der Minuendy
- der Subtrahendpublic komplex k_Produkt(komplex x, komplex y)
x
- der erste Faktory
- der zweite Faktorpublic java.lang.String toString()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |