-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/ahay/src
- Loading branch information
Showing
18 changed files
with
1,900 additions
and
129 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
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,3 +1,3 @@ | ||
from rsf.tex import * | ||
|
||
End(color='ALL',hires='data sov location0-clean location0-noisy location0-hyb stage0-1 stage0-2 stage0-3 stage-1 stage-2 stage-3',use='amsmath,listings,hyperref') | ||
End(color='ALL',hires='data sov location0-clean location0-noisy location0-hyb stage0-1 stage0-2 stage0-3 stage-1 stage-2 stage-3',use='hyperref') |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from rsf.tex import * | ||
|
||
End(use='amsmath') |
Binary file not shown.
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,8 @@ | ||
k = var('k') | ||
def ost(t, w): | ||
return plot(w*cos(t) - k*sin(t), k, -2, 2) | ||
def env(w): | ||
return plot(sqrt(w^2 + k^2), k, -2, 2, thickness=5) | ||
lines = [ost(t*pi/20,1) for t in range(-10, 11)] | ||
plot = sum(lines)+env(1) | ||
plot.save(frame=True, axes=False, axes_labels=['Wavenumber (rad)', 'Frequency (rad)'], filename='junk_sage.pdf') |
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,74 @@ | ||
@Article{pnas, | ||
author = {S[ergey] Fo\-mel and J[ames] A[] Sethian}, | ||
title = {Fast phase-space computation of multiple | ||
arrivals}, | ||
journal = {Proc. of the Nat. Acad. of Sciences}, | ||
year = 2002, | ||
volume = 99, | ||
pages = {7329-7334} | ||
} | ||
|
||
@Article{jcp, | ||
author = {S[ergey] Fo\-mel and J[ames] A[] Sethian}, | ||
title = {Fast Algorithms for Computing | ||
Multiple-Arrival Multiple-Source Non-Viscosity | ||
Solutions of Static {Hamilton-Jacobi} Equations}, | ||
journal = {Journal of Computational Physics, submitted}, | ||
year = 2003 | ||
} | ||
|
||
@Book{maslov, | ||
author = {V[] P[] Maslov and M[] V[] Fedoriuk}, | ||
title = {Semi-classical approximations in | ||
quantum mechanics}, | ||
publisher = {Reidel}, | ||
year = 1981, | ||
address = {Dordrecht} | ||
} | ||
|
||
@Book{norm, | ||
author = {N[] Bleisten and J[] K[] Cohen and J[] W[] Stockwell}, | ||
title = {Mathematics of multidimensional seismic imaging, migration, and inversion}, | ||
publisher = {Springer}, | ||
year = 2001 | ||
} | ||
|
||
@Book{iei, | ||
author = {J[on] F[] Claerbout}, | ||
title = {Imaging the {Earth's} Interior}, | ||
publisher = {Blackwell}, | ||
year = 1985 | ||
} | ||
|
||
@Book{santo, | ||
author = {J[] A[] DeSanto}, | ||
title = {Scalar wave theory: {Green's} functions and applications}, | ||
publisher = {Springer-Verlag}, | ||
year = 1992 | ||
} | ||
|
||
@Article{curvelet, | ||
author = {E[mmanuel] J[] Cand\'{e}s and L[aurent] Demanet}, | ||
title = {The curvelet representation of wave propagators is optimally sparse}, | ||
journal = {Communications on Pure and Applied Mathematics}, | ||
year = 2005, | ||
volume = 58, | ||
pages = {1472-1528} | ||
} | ||
|
||
@inproceedings{seislet, | ||
author = {S[] Fomel}, | ||
booktitle = {76rd Ann. Internat. Mtg.}, | ||
pages = {2847-2850}, | ||
publisher = {Soc. of Expl. Geophys.}, | ||
title = {Towards the seislet transform}, | ||
year = {2006} | ||
} | ||
|
||
@Book{sethian, | ||
author = {J[] A[] Sethian}, | ||
title = {Level Set Methods and Fast Marching Methods: Evolving Interfaces in Computational Geometry, Fluid Mechanics, Computer Vision, and Materials Science}, | ||
publisher = {Cambridge Univ. Press}, | ||
year = 1999 | ||
} | ||
|
Oops, something went wrong.