Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tutorials/color-excess/color-excess.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@
" ext = model(Rv=R)\n",
" plt.plot(1/wav, ext(wav), label=model.name+' R='+str(R))\n",
" \n",
"plt.xlabel('$\\lambda^{-1}$ ($\\mu$m$^{-1}$)')\n",
"plt.ylabel('A($\\lambda$) / A(V)')\n",
"plt.xlabel(r'$\\lambda^{-1}$ ($\\mu$m$^{-1}$)')\n",
"plt.ylabel(r'A($\\lambda$) / A(V)')\n",
"plt.legend(loc='best')\n",
"plt.title('Some Extinction Laws')\n",
"plt.show()"
Expand Down Expand Up @@ -632,8 +632,8 @@
"# Plot the model extinction curve for comparison \n",
"plt.plot(wav,Av*ext(wav)-Av,'--k')\n",
"plt.ylim([-2,2])\n",
"plt.xlabel('$\\lambda$ (Angstrom)')\n",
"plt.ylabel('E($\\lambda$-V)')\n",
"plt.xlabel(r'$\\lambda$ (Angstrom)')\n",
"plt.ylabel(r'E($\\lambda$-V)')\n",
"plt.title('Reddening of T=10,000K Background Source with Av=2')\n",
"plt.show() "
]
Expand Down
Loading