I generated a scatter plot with scatter3 function in MATLAB. I need to change the marker size in the plot.Right now I am using a basic code that goes as follow:
data=importdata('clean_data_1_trial.csv');
x=data(:,1);
y=data(:,2);
z=data(:,5);
scatter3(x,y,z,[],z,'filled');
xlabel('Easting');
ylabel('Northing');
zlabel('Height');
title('3d scatter plot of B1')
How can i change the marker size.