Changes
Page history
Update Reviewer Notes
authored
Oct 21, 2019
by
ABHIRUP GHOSH
Hide whitespace changes
Inline
Side-by-side
Reviewer-Notes.md
View page @
784c93dd
...
@@ -42,12 +42,6 @@ The overall plan for this review is here:
...
@@ -42,12 +42,6 @@ The overall plan for this review is here:
### `lalinference/src/LALInference.c` and `lalinference/src/LALInference.h`
### `lalinference/src/LALInference.c` and `lalinference/src/LALInference.h`
```
```
import lal
import lalsimulation as ls
import lalinference as li
import numpy as np
import matplotlib.pyplot as plt
dQuadMonS = np.random.uniform(-200,200,10000)
dQuadMonS = np.random.uniform(-200,200,10000)
dQuadMonA = np.random.uniform(-200,200,10000)
dQuadMonA = np.random.uniform(-200,200,10000)
...
@@ -58,10 +52,13 @@ for idx in range(10000):
...
@@ -58,10 +52,13 @@ for idx in range(10000):
dQuadMon1.append(x[0]), dQuadMon2.append(x[1])
dQuadMon1.append(x[0]), dQuadMon2.append(x[1])
plt.figure()
plt.figure()
plt.scatter(dQuadMonS, dQuadMonA, color='r', alpha=0.1)
plt.scatter(dQuadMonS, dQuadMonA, color='r', alpha=0.1, label='S-A')
plt.scatter(dQuadMon1, dQuadMon2, color='k', alpha=0.05)
plt.scatter(dQuadMon1, dQuadMon2, color='k', alpha=0.05, label='1-2')
plt.legend(loc='best')
plt.xlabel('$\delta \kappa _S$')
plt.ylabel('$\delta \kappa _A$')
```
```

| Code | Test | Status |
| Code | Test | Status |
|------|------|--------|
|------|------|--------|
...
...
...
...