Using the following, I am able to get a 3D scatter plot in Octave:
figure()
scatter3( ...
plot_data(:, 2), ...
plot_data(:, 3), ...
plot_data(:, 4), ...
% Marker size ...
9, ...
% Color data using colormap ...
plot_data(:, 1)
);
colormap(copper())
shg
However, the markers are not filled. Alternatively, I could increase the linewidth
but I have no idea how to do this in Octave when I am using colormap
syntax.
How do I adjust the scatter3
call above to either fill the markers or increase the linewidth
?