innerinv

Computes the inner product on down scaled ROI.

Contents

Syntax

i = innerinv(x,y,seti)

Description

innerinv(x,y,seti) computes the inner product on the down scaled region of interest from two complex vectors x, y.

Input Arguments

Output Arguments

i : inner product on down scaled ROI, see "More About" in innerroi.html, but in this case with $h_N^d = \texttt{seti.dVinv}$.

See Also

Code

function i = innerinv(x,y,seti)
i = (x'*y)*seti.dVinv;
end