Closed
Description
I'm using the same versions of matplotlib and ipython,
a startup file:
from __future__ import division
from math import *
from numpy import *
import numpy as np
from scipy import constants, integrate, fftpack, interpolate, linalg, ndimage, odr, optimize, signal, spatial, special, stats, weave
import scipy.io as spio
import scipy.io.wavfile as wavfile
import numexpr as ne
import warnings
with warnings.catch_warnings():
import matplotlib
matplotlib.use('webagg')
import matplotlib.pyplot as plt
import sympy as sym
and the script
x = linspace(0,10,10000)
y = sin(x)
plt.plot(x,y)
plt.show()