예제 #1
0
import time
import calculateL
    
start = time.time()
calculateL.drwsin_MCMC(r"/rigel/astro/users/ndk2115/pg1302/data/final_curve102_LC.h5",r"/rigel/astro/users/ndk2115/pg1302/outputs/final_curve102_LC_drwsin_no_outlier_info.h5")
calculateL.drw_MCMC(r"/rigel/astro/users/ndk2115/pg1302/data/final_curve102_LC.h5",r"/rigel/astro/users/ndk2115/pg1302/outputs/final_curve102_LC_drw_no_outlier_info.h5")
calculateL.drwsin_MCMC(r"/rigel/astro/users/ndk2115/pg1302/data/final_curve102_LCA.h5",r"/rigel/astro/users/ndk2115/pg1302/outputs/final_curve102_LCA_drwsin_no_outlier_info.h5")
calculateL.drw_MCMC(r"/rigel/astro/users/ndk2115/pg1302/data/final_curve102_LCA.h5",r"/rigel/astro/users/ndk2115/pg1302/outputs/final_curve102LCA_drw_no_outlier_info.h5")
end = time.time()
print("The run took " + str(end - start) + " seconds.")
    
예제 #2
0
import time
import calculateL

start = time.time()
calculateL.drw_MCMC(
    r"/rigel/astro/users/ndk2115/pg1302/data/L+C_mcmc_rand_sig_tau_5.h5",
    r"/rigel/astro/users/ndk2115/pg1302/outputs/L+C_mcmc_rand_sig_tau_info_5.h5"
)
end = time.time()
print("The run took " + str(end - start) + " seconds.")
예제 #3
0
import time
import calculateL

start = time.time()
calculateL.drw_MCMC(
    r"/rigel/astro/users/ndk2115/pg1302/data/L+C+A_mcmc_rand_sig_tau_no_outlier_3.h5",
    r"/rigel/astro/users/ndk2115/pg1302/outputs/L+C+A_mcmc_rand_sig_tau_no_outlier_info_3.h5"
)
end = time.time()
print("The run took " + str(end - start) + " seconds.")