MATLAB: 4d smooth plot with slices

4d plotMATLABplot

Hello I have a txt file (I have attached it as "Data.txt") with 4 columns, each representing a variable x,y,z,v. I plot this in the following manner:
load("Data.txt")
x = Data(:,1);
y = Data(:,2);
z = Data(:,3);
v = Data(:,4);
scatter3(x,y,z,40,v,'filled')
colorbar
However I would like it to be a smooth object on which I can also take vertical, horizontal or whatever slices.
Related Question