source = np.dot(target, rot)
// before hyperalignment
hyp.plot([target, source], title="Before alignment")
// after hyperalignment
hyp.plot([hyp.tools.procrustes(source, target), target], ["-","--"], title="After alignment")
After Change
geo.plot(title="Before Alignment")
// use procrusted to align the data
source, target = geo.get_data()
aligned = [hyp.tools.procrustes(source, target), target]
// after alignment
hyp.plot(aligned, ["-","--"], title="After alignment")