MATLAB: Scatter multiple Vectors on same graph

scatter plot

i have 3 * [75×1] vectors f1,f2,f3 and they are all independent, values 1:10, anyway i can scatter plot the 3 vectors on the same graph ?

Best Answer

‘i can scatter plot the 3 vectors on the same graph ?’
Yes. I would do something like this:
figure(1)
scatter3(f1, f2, f3)
grid on