Skip to content

Commit

Permalink
modify example min/max to work
Browse files Browse the repository at this point in the history
  • Loading branch information
karllark committed Apr 4, 2023
1 parent c79813a commit b5cc77a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dust_extinction/extinguish.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ Extinguish a Blackbody

from dust_extinction.parameter_averages import G23

# generate wavelengths between 0.0912 and 32 microns
# generate wavelengths between 0.092 and 31 microns
# within the valid range for the G23 R(V) dependent relationship
lam = np.logspace(np.log10(0.0912), np.log10(32.0), num=1000)
lam = np.logspace(np.log10(0.092), np.log10(31.0), num=1000)

# setup the inputs for the blackbody function
wavelengths = lam*1e4*u.AA
Expand Down

0 comments on commit b5cc77a

Please sign in to comment.