We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d869e commit 8584f40Copy full SHA for 8584f40
1 file changed
examples/robust_mimo.py
@@ -44,7 +44,7 @@ def triv_sigma(g, w):
44
w - frequencies, length m
45
s - (m,n) array of singular values of g(1j*w)"""
46
m, p, _ = g.freqresp(w)
47
- sjw = (m*np.exp(1j*p*np.pi/180)).transpose(2, 0, 1)
+ sjw = (m*np.exp(1j*p)).transpose(2, 0, 1)
48
sv = np.linalg.svd(sjw, compute_uv=False)
49
return sv
50
0 commit comments