Keywords: X sin 1 over x.svg en Plot of the function <math>x \mapsto x \sin \frac 1 x </math> and detail around the origin fr Graphe de la fonction <math>x \mapsto x \sin \frac 1 x </math> et détail autour de l'origine 2012-09-24 14 10 16 own <br /> Created with Matplotlib Gapato Python numpy/scipy/matplotlib source code <pre> import matplotlib pyplot as plt import numpy as np def f x return x np sin 1/x x np linspace -3 3 10000 xx np linspace - 2 2 10000 plt subplot 211 plt axhline 0 color 'grey' lw 0 5 plt axvline 0 color 'grey' lw 0 5 plt plot x f x plt subplot 212 plt axhline 0 color 'grey' lw 0 5 plt axvline 0 color 'grey' lw 0 5 plt plot xx f xx plt xlim -0 2 0 2 plt suptitle r' x \mapsto x \sin \frac 1 x ' plt show </pre> cc-zero Uploaded with UploadWizard Sine function Created with Matplotlib |