File tree Expand file tree Collapse file tree 2 files changed +0
-23
lines changed
Expand file tree Collapse file tree 2 files changed +0
-23
lines changed Original file line number Diff line number Diff line change @@ -463,23 +463,6 @@ void AnalysisTool::network_analysis_clicked() {
463463 app_->get_py_worker ()->run_job (network_analysis_job_);
464464}
465465
466- // -----------------------------------------------------------------------------
467- Eigen::VectorXd AnalysisTool::extract_positions (Eigen::VectorXd& data) {
468- /*
469- auto positions = data;
470-
471- if (pca_shape_plus_scalar_mode()) {
472- positions = extract_shape_only(data);
473- } else if (pca_scalar_only_mode()) {
474- computed_scalars_ = temp_shape_;
475- if (ui_->pca_predict_shape->isChecked()) {
476- positions = ShapeScalarJob::predict_shape(session_, QString::fromStdString(feature_map_), computed_scalars_);
477- } else {
478- positions = construct_mean_shape();
479- }
480- }*/
481- }
482-
483466// -----------------------------------------------------------------------------
484467bool AnalysisTool::compute_stats () {
485468 if (stats_ready_) {
Original file line number Diff line number Diff line change @@ -194,14 +194,9 @@ class AnalysisTool : public QWidget {
194194
195195 void change_pca_analysis_type ();
196196
197- // Eigen::VectorXd get_mean_shape();
198-
199197 // ! Compute the mean shape outside of the PCA in case we are using scalars only
200198 Eigen::VectorXd construct_mean_shape ();
201199
202-
203- Eigen::VectorXd extract_positions (Eigen::VectorXd& data);
204-
205200 Q_SIGNALS:
206201
207202 void update_view ();
@@ -238,7 +233,6 @@ class AnalysisTool : public QWidget {
238233
239234 ShapeHandle create_shape_from_points (Particles points);
240235
241-
242236 Preferences& preferences_;
243237
244238 Ui_AnalysisTool* ui_;
You can’t perform that action at this time.
0 commit comments