Hi everyone,
Very simple question here, but i didnt find a simple way to do it.
Let's say f_ is a function defined on a non-mixed space.
If i want to evaluate the function on a point, i do:
current_value = f_([x_coor,y_coor,z_coor])
How can i do simply the opposite operation (assign a new value on this coordinnate). Ideally, something like this:
f_([x_coor,y_coor,z_coor]) = new_value # Does not work
I only want to change the function on this particular point, that i know exist in the discrete space.
Regards,