invert {complex}R Documentation

Function calculates inverse of matrix of complex variables

Description

The function accepts a square complex matrix and returns inverse of it.

Usage

invert(x)

Arguments

x

The square matrix of complex variables.

Value

The function returns a matrix of the same size as the original matrix x

Author(s)

Ivan Svetunkov, ivan@svetunkov.ru

See Also

solve

Examples


invert(matrix(complex(real=c(1,2), imaginary=c(1.1,2.1)), 2, 2))


[Package complex version 1.0.0 Index]