Actually, I am pretty newbie using Blender and I have some problems in my first project.
I have an 3D array with shape (10,100,100) they are Z,X,Y dimensions respectively. How can I display this array using Blender?
Below the image which is plotted with matplotlib in python and I want to plot once via Blender
Thank you so much for your help.
PS To make this image, I just used a random array to generate it:
import numpy as np
np.random.seed(40)
data=np.random.rand(10,100,100)