CUDA
C/C++    Fortran   

Other Linear algebra operations: inverse, matrix power, norm, rank

Matrix inverse, power, norm and rank. More...

Data Types

interface  inverse
 inverse of a matrix This function requires ArrayFire Pro. More...
interface  matpow
 Power of a matrix Negative powers require ArrayFire Pro. More...
interface  norm
 Matrix norm. More...

type(array) array_inverse (A)
 Inverse an array.

type(array) array_matpow_s (A, p)
 Matrix power.
type(array) array_matpow_i (A, p)
 Matrix power.
type(array) array_matpow_d (A, p)
 Matrix power.

double precision array_norm (A)
 Norm of an array.
double precision array_pnorm (A, p)
 Norm of an array.

Detailed Description

Matrix inverse, power, norm and rank.


Function/Subroutine Documentation

type(array) array_inverse ( type(array),intent(in)  A) [inherited]

Inverse an array.

type(array) array_matpow_s ( type(array),intent(in)  A,
real,intent(in)  p 
) [inherited]

Matrix power.

type(array) array_matpow_i ( type(array),intent(in)  A,
integer,intent(in)  p 
) [inherited]

Matrix power.

type(array) array_matpow_d ( type(array),intent(in)  A,
double precision,intent(in)  p 
) [inherited]

Matrix power.

double precision array_norm ( type(array),intent(in)  A) [inherited]

Norm of an array.

double precision array_pnorm ( type(array),intent(in)  A,
real,intent(in)  p 
) [inherited]

Norm of an array.