#!/usr/bin/python from mpl_toolkits import mplot3d import numpy as np import matplotlib.pyplot as plt func=np.loadtxt("ta.dat") print np.shape(func) #x=np.linspace(1,100,100) #y=np.linspace(1,100,100) #(X,Y)=np.meshgrid(x,y) Z=func[0:3,:] print np.shape(Z),Z #print np.arange(10)