MATLAB: How interpolate 3d points

interpolation in 3d

i want to interpolate a cubic shape points
a=[18 30 30 18 18 18; 30 30 18 18 30 30; 30 30 18 18 30 30; 18 30 30 18 18 18];
b=[-10 -10 10 10 -10 -10; -10 10 10 -10 -10 -10; -10 10 10 -10 10 10; -10 -10 10 10 10 10];
c=[-10 -10 -10 -10 -10 10; -10 -10 -10 -10 -10 10; 10 10 10 10 -10 10; 10 10 10 10 -10 10];

Best Answer

Read about gridata and scatteredInterpolant.