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 8a4a608 commit 5b13698Copy full SHA for 5b13698
SINGER/SINGER/ARG.cpp
@@ -54,10 +54,10 @@ int ARG::get_index(double x) {
54
void ARG::compute_rhos_thetas(double r, double m) {
55
int n = (int) coordinates.size() - 1;
56
for (int i = 0; i < n; i++) {
57
- // rhos.push_back(r*(coordinates[i+1] - coordinates[i]));
58
- // thetas.push_back(m*(coordinates[i+1] - coordinates[i]));
59
- rhos.push_back(r*bin_size);
60
- thetas.push_back(m*bin_size);
+ rhos.push_back(r*(coordinates[i+1] - coordinates[i]));
+ thetas.push_back(m*(coordinates[i+1] - coordinates[i]));
+ // rhos.push_back(r*bin_size);
+ // thetas.push_back(m*bin_size);
61
}
62
63
0 commit comments