Hi Jack,
Yes, that function is old. Is this from an existing notebook that you're working off of? For this to work it be more like:
h5_svd = px.processing.svd_utils.SVD(h5_wins)
h5_svd_group = h5_svd.compute()
h5_u = h5_svd_group['U']
h5_v = h5_svd_group['V']
h5_s = h5_svd_group['S']
where SVD is a class. If you want to dig into it, is in pycroscopy.processing.svd_utils
Best,
Raj