else:
self.k = None // currently do not store this, is unknown
// for output of spectrum
self.X_diffmap = adata.get_multicol_field_smp("X_diffmap")[:, :n_dcs-1]
self.evals = np.r_[1, adata.add["diffmap_evals"][:n_dcs-1]]
self.rbasis = np.c_[adata.smp["X_diffmap0"][:, None],
adata.get_multicol_field_smp("X_diffmap")[:, :n_dcs-1]]
After Change
else:
self.k = None // currently do not store this, is unknown
// for output of spectrum
self.X_diffmap = adata.smpm["X_diffmap"][:, :n_dcs-1]
self.evals = np.r_[1, adata.add["diffmap_evals"][:n_dcs-1]]
self.rbasis = np.c_[adata.smp["X_diffmap0"].values[:, None],
adata.smpm("X_diffmap")[:, :n_dcs-1]]