python matplotlib.pyplot erreur de syntaxe

Je suis en train de tracer une fonction en python, mais à chaque fois que je vais le tester, il dit seulement:

"plt.plot(t,V)

^

SyntaxError, syntaxe non valide"

from __future__ import division
import numpy as np
import matplotlib.pyplot as plt
import math

def someFunction(filename, posx, posy, posz):
    //generic code
    //to test 
    //limits...
    data = np.genfromtxt(filename,delimiter=",")
    i = 0
    V = 0
    while i < len(data):
        q = data[i,0]
        x = data[i,1]
        y = data[i,2]
        z = data[i,3]
        r = <some computation>
        V += <some computation>
        i += 1

    return V

def plotFunction(filename):
    V = []
    t = []
    for i in np.arange(0,20,0.1):
        t.append(i)
        V.append(someFunction(filename,i,i**2+2,i-3)
    plt.plot(t,V)
    plt.savefig('plot.pdf')

Toute aide serait vraiment appréciée.

InformationsquelleAutor fierynot | 2015-10-21