I have some datas that I need to display.
Because I use python, a quick search told me that matplotlib is the best solution.
I looked at the docs, but i can only find information on how to plot a function f(x,y) = t.
My problem is coming when you add a fourth dimension.
I have four arrays of data. The last dimension can be display with color informations.
I started doing this :
def f(x,y,z): #compute the function return t
x : np.arange(1,9,1)
y : np.arange(1,9,1)
z : np.arange(1,9,1)
then I create my data structure containing the f(x,y,z) for all x,y,z
But then how should I display it ?
Thanks in advance,
Victor