Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Library: math
See also: cinv cmatmul

Quantlet: cmatdiv
Description: Computes the complex solution of A x = b

Usage: x = cmatdiv (a, b)
Input:
a complex matrix A
b complex matrix b
Output:
x complex matrix

Example:
library("math")
m = #(1,0)~#(0,1)
a = complex(m,m)
b = complex(#(1,1))
cmatdiv(a, b)

Result:
Contents of x.re
[1,]      0.5
[2,]      0.5
Contents of x.im
[1,]     -0.5
[2,]     -0.5



Author: S. Klinke, 19970529
(C) MD*TECH Method and Data Technologies, 05.02.2006