vote up 1 vote down star

I want to create an array holding a function f(x,y,z). If it were a function of one variable I'd do, for instance:

sinx = numpy.sin(numpy.linspace(-5,5,100))

to get sin(x) for x in [-5,5]

How can I do the same to get, for instance sin(x+y+z)?

flag

What would be the values for x,y,z and/or how do you plan to generate them? – Technofreak Sep 5 at 10:33
x,y,z would be the cartesian product of numpy.linspace(-5,5,100) over all three dimensions. I don't know the best way to generate them. I guess that's a pre-requisite for the question. – Nathan Fellman Sep 5 at 10:58

1 Answer

vote up 2 vote down check

I seem to have found a way:

# define the range of x,y,z
x_range = numpy.linspace(x_min,x_max,x_num)
y_range = numpy.linspace(y_min,y_max,y_num)
z_range = numpy.linspace(z_min,z_max,z_num)

# create arrays x,y,z in the correct dimensions
# so that they create the grid
x,y,z = numpy.ix_(x_range,y_range,z_range)

# calculate the function of x, y and z
sinxyz = numpy.sin(x+y+z)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.