-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1bda6c5
Showing
428 changed files
with
132,993 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 5ecb72fa7b36191a7f67ee5c1b82c9d4 | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docs.stingray.science |
20 changes: 20 additions & 0 deletions
20
_downloads/1027494781794f48a5d8afc7ff6c2fc5/simulator-2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from matplotlib import rcParams | ||
rcParams['font.family'] = 'sans-serif' | ||
rcParams['font.sans-serif'] = ['Tahoma'] | ||
|
||
import matplotlib.pyplot as plt | ||
from stingray.simulator import simulator | ||
|
||
# Instantiate simulator object | ||
sim = simulator.Simulator(N=1024, mean=0.5, dt=0.125, rms=1.0) | ||
# Define a spectrum | ||
w = np.fft.rfftfreq(sim.N, d=sim.dt)[1:] | ||
spectrum = np.power((1/w),2/2) | ||
# Simulate | ||
lc = sim.simulate(spectrum) | ||
|
||
plt.plot(lc.counts, 'g') | ||
plt.title('User-defined Model Simulation', fontsize='16') | ||
plt.xlabel('Counts', fontsize='14') | ||
plt.ylabel('Flux', fontsize='14') | ||
plt.show() |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions
22
_downloads/53d6a719342bb95c167fbdcb1fc14cc1/simulator-3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from matplotlib import rcParams | ||
rcParams['font.family'] = 'sans-serif' | ||
rcParams['font.sans-serif'] = ['Tahoma'] | ||
|
||
import matplotlib.pyplot as plt | ||
from stingray import sampledata | ||
from stingray.simulator import simulator | ||
|
||
# Obtain a sample light curve | ||
lc = sampledata.sample_data().counts | ||
# Instantiate simulator object | ||
sim = simulator.Simulator(N=1024, mean=0.5, dt=0.125, rms=1.0) | ||
# Obtain an artificial impulse response | ||
ir = sim.relativistic_ir() | ||
# Simulate | ||
lc_new = sim.simulate(lc, ir) | ||
|
||
plt.plot(lc_new.counts, 'g') | ||
plt.title('Impulse Response based Simulation', fontsize='16') | ||
plt.xlabel('Counts', fontsize='14') | ||
plt.ylabel('Flux', fontsize='14') | ||
plt.show() |
17 changes: 17 additions & 0 deletions
17
_downloads/57e221082e8b56500cefe6d46e4708c5/simulator-1.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from matplotlib import rcParams | ||
rcParams['font.family'] = 'sans-serif' | ||
rcParams['font.sans-serif'] = ['Tahoma'] | ||
|
||
import matplotlib.pyplot as plt | ||
from stingray.simulator import simulator | ||
|
||
# Instantiate simulator object | ||
sim = simulator.Simulator(N=1024, mean=0.5, dt=0.125, rms=1.0) | ||
# Specify beta value | ||
lc = sim.simulate(2) | ||
|
||
plt.plot(lc.counts, 'g') | ||
plt.title('Random-walk Distribution Simulation', fontsize='16') | ||
plt.xlabel('Counts', fontsize='14', ) | ||
plt.ylabel('Flux', fontsize='14') | ||
plt.show() |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+25.8 KB
_images/notebooks_CrossCorrelation_cross_correlation_notebook_14_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+26.3 KB
_images/notebooks_CrossCorrelation_cross_correlation_notebook_23_1.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
_images/notebooks_CrossCorrelation_cross_correlation_notebook_31_1.png
Oops, something went wrong.
Binary file added
BIN
+54.8 KB
_images/notebooks_CrossCorrelation_cross_correlation_notebook_36_0.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+34.3 KB
_images/notebooks_CrossCorrelation_cross_correlation_notebook_55_1.png
Oops, something went wrong.
Binary file added
BIN
+9.27 KB
_images/notebooks_CrossCorrelation_cross_correlation_notebook_64_1.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+14.1 KB
_images/notebooks_DataQuickLook_Quicklook_NuSTAR_data_with_Stingray_15_1.png
Oops, something went wrong.
Binary file added
BIN
+21.2 KB
_images/notebooks_DataQuickLook_Quicklook_NuSTAR_data_with_Stingray_19_1.png
Oops, something went wrong.
Binary file added
BIN
+16.4 KB
_images/notebooks_DataQuickLook_Quicklook_NuSTAR_data_with_Stingray_22_1.png
Oops, something went wrong.
Binary file added
BIN
+23.8 KB
_images/notebooks_DataQuickLook_Quicklook_NuSTAR_data_with_Stingray_25_1.png
Oops, something went wrong.
Binary file added
BIN
+41.2 KB
_images/notebooks_DataQuickLook_Quicklook_NuSTAR_data_with_Stingray_9_1.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+87.5 KB
_images/notebooks_Deadtime_Check_dead_time_model_in_Stingray_10_0.png
Oops, something went wrong.
Binary file added
BIN
+82.3 KB
_images/notebooks_Deadtime_Check_dead_time_model_in_Stingray_12_0.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+332 KB
_images/notebooks_Deadtime_Check_dead_time_model_in_Stingray_16_11.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+54.7 KB
_images/notebooks_Deadtime_Check_dead_time_model_in_Stingray_23_0.png
Oops, something went wrong.
Binary file added
BIN
+43.8 KB
_images/notebooks_Deadtime_Check_dead_time_model_in_Stingray_25_0.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+59.6 KB
_images/notebooks_Deadtime_Check_dead_time_model_in_Stingray_27_1.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+77.9 KB
_images/notebooks_Deadtime_Check_dead_time_model_in_Stingray_30_1.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+93.2 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_10_0.png
Oops, something went wrong.
Binary file added
BIN
+58.4 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_13_1.png
Oops, something went wrong.
Binary file added
BIN
+57 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_16_1.png
Oops, something went wrong.
Binary file added
BIN
+22.8 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_24_1.png
Oops, something went wrong.
Binary file added
BIN
+26.3 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_31_1.png
Oops, something went wrong.
Binary file added
BIN
+34.5 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_34_1.png
Oops, something went wrong.
Binary file added
BIN
+59.3 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_36_1.png
Oops, something went wrong.
Binary file added
BIN
+42.3 KB
...ooks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[fake_data]_8_0.png
Oops, something went wrong.
Binary file added
BIN
+9.35 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[real_data]_12_0.png
Oops, something went wrong.
Binary file added
BIN
+81.2 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[real_data]_20_1.png
Oops, something went wrong.
Binary file added
BIN
+92.3 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[real_data]_29_1.png
Oops, something went wrong.
Binary file added
BIN
+40.6 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[real_data]_30_1.png
Oops, something went wrong.
Binary file added
BIN
+19.8 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[real_data]_37_1.png
Oops, something went wrong.
Binary file added
BIN
+21.5 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[real_data]_42_0.png
Oops, something went wrong.
Binary file added
BIN
+29.8 KB
...oks_DynamicalPowerspectrum_DynamicalPowerspectrum_tutorial_[real_data]_44_0.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+19.1 KB
...s/notebooks_Lightcurve_Analyze_light_curves_chunk_by_chunk_-_an_example_4_1.png
Oops, something went wrong.
Binary file added
BIN
+3.56 KB
...s/notebooks_Lightcurve_Analyze_light_curves_chunk_by_chunk_-_an_example_7_1.png
Oops, something went wrong.
Binary file added
BIN
+48.9 KB
...s/notebooks_Lightcurve_Analyze_light_curves_chunk_by_chunk_-_an_example_9_1.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+74.4 KB
_images/notebooks_LombScargle_LombScargleCrossspectrum_tutorial_14_1.png
Oops, something went wrong.
Binary file added
BIN
+200 KB
_images/notebooks_LombScargle_LombScargleCrossspectrum_tutorial_7_0.png
Oops, something went wrong.
Binary file added
BIN
+67.8 KB
_images/notebooks_LombScargle_LombScarglePowerspectrum_tutorial_14_1.png
Oops, something went wrong.
Binary file added
BIN
+89.9 KB
_images/notebooks_LombScargle_LombScarglePowerspectrum_tutorial_7_0.png
Oops, something went wrong.
Binary file added
BIN
+40 KB
.../notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_12_0.png
Oops, something went wrong.
Binary file added
BIN
+35.9 KB
.../notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_14_1.png
Oops, something went wrong.
Binary file added
BIN
+19.6 KB
.../notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_16_1.png
Oops, something went wrong.
Binary file added
BIN
+19.4 KB
.../notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_18_1.png
Oops, something went wrong.
Binary file added
BIN
+17.4 KB
.../notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_20_2.png
Oops, something went wrong.
Binary file added
BIN
+35 KB
...s/notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_2_0.png
Oops, something went wrong.
Binary file added
BIN
+32.8 KB
...s/notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_5_0.png
Oops, something went wrong.
Binary file added
BIN
+35.4 KB
...s/notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_6_1.png
Oops, something went wrong.
Binary file added
BIN
+29.8 KB
...s/notebooks_LombScargle_Very_slow_variability_with_Lomb-Scargle_methods_9_0.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+49.1 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_11_0.png
Oops, something went wrong.
Binary file added
BIN
+116 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_11_1.png
Oops, something went wrong.
Binary file added
BIN
+66.9 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_13_0.png
Oops, something went wrong.
Binary file added
BIN
+102 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_13_1.png
Oops, something went wrong.
Binary file added
BIN
+48.1 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_17_0.png
Oops, something went wrong.
Binary file added
BIN
+60.7 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_17_1.png
Oops, something went wrong.
Binary file added
BIN
+46.1 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_20_0.png
Oops, something went wrong.
Binary file added
BIN
+76.5 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_20_1.png
Oops, something went wrong.
Binary file added
BIN
+37.7 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_22_0.png
Oops, something went wrong.
Binary file added
BIN
+31.6 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_26_0.png
Oops, something went wrong.
Binary file added
BIN
+44 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_29_0.png
Oops, something went wrong.
Binary file added
BIN
+18 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_6_0.png
Oops, something went wrong.
Binary file added
BIN
+40.2 KB
_images/notebooks_Pulsar_Pulsar_search_with_epoch_folding_and_Z_squared_8_0.png
Oops, something went wrong.
Binary file added
BIN
+15.1 KB
_images/notebooks_Simulator_Concepts_Inverse_Transform_Sampling_12_0.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+152 KB
_images/notebooks_Simulator_Concepts_Simulate_Event_Lists_With_Inverse_CDF_3_1.png
Oops, something went wrong.
Binary file added
BIN
+234 KB
_images/notebooks_Simulator_Concepts_Simulate_Event_Lists_With_Inverse_CDF_5_0.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+276 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_11_1.png
Oops, something went wrong.
Binary file added
BIN
+189 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_15_1.png
Oops, something went wrong.
Binary file added
BIN
+274 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_18_0.png
Oops, something went wrong.
Binary file added
BIN
+105 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_21_1.png
Oops, something went wrong.
Binary file added
BIN
+111 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_23_1.png
Oops, something went wrong.
Binary file added
BIN
+103 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_30_1.png
Oops, something went wrong.
Binary file added
BIN
+129 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_32_1.png
Oops, something went wrong.
Binary file added
BIN
+135 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_33_1.png
Oops, something went wrong.
Binary file added
BIN
+131 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_37_0.png
Oops, something went wrong.
Binary file added
BIN
+127 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_41_0.png
Oops, something went wrong.
Binary file added
BIN
+134 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_44_0.png
Oops, something went wrong.
Binary file added
BIN
+184 KB
_images/notebooks_Spectral_Timing_Spectral_Timing_Exploration_47_0.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+24 KB
_images/notebooks_StingrayTimeseries_StingrayTimeseries_Tutorial_102_1.png
Oops, something went wrong.
Binary file added
BIN
+24.2 KB
_images/notebooks_StingrayTimeseries_StingrayTimeseries_Tutorial_96_1.png
Oops, something went wrong.
Binary file added
BIN
+36.5 KB
_images/notebooks_StingrayTimeseries_StingrayTimeseries_Tutorial_98_1.png
Oops, something went wrong.
Binary file added
BIN
+17 KB
...ges/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_12_1.png
Oops, something went wrong.
Binary file added
BIN
+20.1 KB
...ges/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_13_1.png
Oops, something went wrong.
Binary file added
BIN
+93.1 KB
...ges/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_17_0.png
Oops, something went wrong.
Binary file added
BIN
+15.5 KB
...ges/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_19_1.png
Oops, something went wrong.
Binary file added
BIN
+20.7 KB
...ges/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_22_1.png
Oops, something went wrong.
Binary file added
BIN
+20.2 KB
...ges/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_24_1.png
Oops, something went wrong.
Binary file added
BIN
+26.4 KB
...ges/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_27_1.png
Oops, something went wrong.
Binary file added
BIN
+39.2 KB
_images/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_3_0.png
Oops, something went wrong.
Binary file added
BIN
+7.17 KB
_images/notebooks_StingrayTimeseries_Working_with_weights_and_polarization_4_0.png
Oops, something went wrong.
Binary file added
BIN
+10.5 KB
_images/notebooks_Transfer_Functions_TransferFunction_Tutorial_39_1.png
Oops, something went wrong.
Binary file added
BIN
+17.3 KB
_images/notebooks_Transfer_Functions_TransferFunction_Tutorial_42_1.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang="en" data-content_root="../"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Overview: module code — stingray v1.1.2.dev594+g14d5abcd</title> | ||
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" /> | ||
<link rel="stylesheet" type="text/css" href="../_static/bootstrap-astropy.css?v=9d21690f" /> | ||
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=eafc0fe6" /> | ||
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" /> | ||
<link rel="stylesheet" type="text/css" href="../_static/css/custom.css?v=2afd17ea" /> | ||
|
||
<script src="../_static/jquery.js?v=5d32c60e"></script> | ||
<script src="../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script> | ||
<script src="../_static/documentation_options.js?v=000efec1"></script> | ||
<script src="../_static/doctools.js?v=888ff710"></script> | ||
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script> | ||
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> | ||
<script type="text/javascript" src="../_static/sidebar.js"></script> | ||
<script type="text/javascript" src="../_static/copybutton.js"></script> | ||
<link rel="icon" href="../_static/stingray_logo.ico"/> | ||
<link rel="index" title="Index" href="../genindex.html" /> | ||
<link rel="search" title="Search" href="../search.html" /> | ||
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,600' rel='stylesheet' type='text/css'/> | ||
|
||
</head><body> | ||
<div class="topbar"> | ||
<a class="brand" title="Documentation Home" href="../index.html"><span id="logotext1">Sting</span><span id="logotext2">ray</span><span id="logotext3">:docs</span></a> | ||
<ul> | ||
|
||
<li><a class="homelink" title="Astropy Homepage" href="http://www.astropy.org"></a></li> | ||
<li><a title="General Index" href="../genindex.html">Index</a></li> | ||
<li><a title="Module Index" href="../py-modindex.html">Modules</a></li> | ||
<li> | ||
|
||
|
||
<form action="../search.html" method="get"> | ||
<input type="text" name="q" placeholder="Search" /> | ||
<input type="hidden" name="check_keywords" value="yes" /> | ||
<input type="hidden" name="area" value="default" /> | ||
</form> | ||
|
||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="related"> | ||
<h3>Navigation</h3> | ||
<ul> | ||
<li> | ||
<a href="../index.html">stingray v1.1.2.dev594+g14d5abcd</a> | ||
» | ||
</li> | ||
|
||
|
||
</ul> | ||
</div> | ||
|
||
|
||
<div class="document"> | ||
<div class="documentwrapper"> | ||
<div class="bodywrapper"> | ||
<div class="body" role="main"> | ||
|
||
<h1>All modules for which code is available</h1> | ||
<ul><li><a href="scipy/special/_basic.html">scipy.special._basic</a></li> | ||
<li><a href="stingray/base.html">stingray.base</a></li> | ||
<li><a href="stingray/bispectrum.html">stingray.bispectrum</a></li> | ||
<li><a href="stingray/covariancespectrum.html">stingray.covariancespectrum</a></li> | ||
<li><a href="stingray/crosscorrelation.html">stingray.crosscorrelation</a></li> | ||
<li><a href="stingray/crossspectrum.html">stingray.crossspectrum</a></li> | ||
<li><a href="stingray/deadtime/fad.html">stingray.deadtime.fad</a></li> | ||
<li><a href="stingray/deadtime/model.html">stingray.deadtime.model</a></li> | ||
<li><a href="stingray/events.html">stingray.events</a></li> | ||
<li><a href="stingray/exceptions.html">stingray.exceptions</a></li> | ||
<li><a href="stingray/gti.html">stingray.gti</a></li> | ||
<li><a href="stingray/io.html">stingray.io</a></li> | ||
<li><a href="stingray/lightcurve.html">stingray.lightcurve</a></li> | ||
<li><a href="stingray/modeling/parameterestimation.html">stingray.modeling.parameterestimation</a></li> | ||
<li><a href="stingray/modeling/posterior.html">stingray.modeling.posterior</a></li> | ||
<li><a href="stingray/modeling/scripts.html">stingray.modeling.scripts</a></li> | ||
<li><a href="stingray/powerspectrum.html">stingray.powerspectrum</a></li> | ||
<li><a href="stingray/pulse/modeling.html">stingray.pulse.modeling</a></li> | ||
<li><a href="stingray/pulse/pulsar.html">stingray.pulse.pulsar</a></li> | ||
<li><a href="stingray/pulse/search.html">stingray.pulse.search</a></li> | ||
<li><a href="stingray/simulator/simulator.html">stingray.simulator.simulator</a></li> | ||
<li><a href="stingray/stats.html">stingray.stats</a></li> | ||
<li><a href="stingray/utils.html">stingray.utils</a></li> | ||
<li><a href="stingray/varenergyspectrum.html">stingray.varenergyspectrum</a></li> | ||
</ul> | ||
|
||
<div class="clearer"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="sphinxsidebar" role="navigation" aria-label="main navigation"> | ||
<div class="sphinxsidebarwrapper"><h3>Page Contents</h3> | ||
|
||
|
||
</div> | ||
</div> | ||
<div class="clearer"></div> | ||
</div> | ||
<footer class="footer"> | ||
<p class="pull-right"> | ||
<a href="#">Back to Top</a></p> | ||
<p> | ||
© Copyright 2024, Stingray Developers.<br/> | ||
Created using <a href="http://www.sphinx-doc.org/en/stable/">Sphinx</a> 7.2.6. | ||
Last built 10 Jan 2024. <br/> | ||
</p> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.