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 


Library: math
See also: cinv cmatmul

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

Author: Sigbert Klinke, 920424, 960401, 970529
(C) MD*TECH Method and Data Technologies, 21.9.2000