On Friday, December 19, 2014 10:13:15 AM UTC+5:30, Surbhi Gupta wrote:
> Hey, I am new to python and facing problem with installing packages. I am
> using VPython which requires Python 2.7.x from python.org; it will not work
> with versions of Python other than the one from python.org.
Hey, I am new to python and facing problem with installing packages. I am using
VPython which requires Python 2.7.x from python.org; it will not work with
versions of Python other than the one from python.org. So I need to install
packages separately.
I was trying to install scipy-0.14.0, it g
This is the code I m trying to run:
from sympy import *
import numpy as np
from sympy import symbols
def deriv(x,t):
a = array(x)
for i in range(0,len(x)):
temp = x[i]
a[i] = temp[0].diff(t)
return a
def matrixmult (A, B):
C = [[0 for row in range(len(A))] for col