-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from jbkalmbach/issue/12/create_notebook_for_p…
…aper Issue/12/create notebook for paper
- Loading branch information
Showing
12 changed files
with
2,872 additions
and
211 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
from .esp import * | ||
from .pca import * | ||
from .plot_utils import * | ||
from .spec_utils import * | ||
from .gp_utils import * | ||
__all__ = ["estimateBase", "NearestNeighborEstimate", | ||
"gaussianProcessEstimate"] | ||
|
||
from .esp import estimateBase, nearestNeighborEstimate, gaussianProcessEstimate | ||
from .pca import pcaSED | ||
from .plot_utils import plotUtils | ||
from .spec_utils import specUtils | ||
from .lsst_utils import Bandpass, BandpassDict, Sed, PhysicalParameters | ||
from .gp_utils import optimize |
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
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import numpy as np | ||
import scipy.optimize as op | ||
|
||
__all__ = ["optimize"] | ||
|
||
|
||
def optimize(gp_obj, x, y, **kwargs): | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
from .Bandpass import * | ||
from .BandpassDict import * | ||
from .PhysicalParameters import * | ||
from .Sed import * | ||
__all__ = ["Bandpass", "BandpassDict", "PhysicalParameters", "Sed"] | ||
|
||
from .Bandpass import Bandpass | ||
from .BandpassDict import BandpassDict | ||
from .PhysicalParameters import PhysicalParameters | ||
from .Sed import Sed |
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
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.