MATLAB - 2D Plotting
What will the following MATLAB code display?
x = 1:5;
y = [2 4 6 8 10];
scatter(x, y, 100, 'r', 'filled')
x = 1:5;
y = [2 4 6 8 10];
scatter(x, y, 100, 'r', 'filled')
scatter(x, y, 100, 'r', 'filled') which sets point size to 100, color red ('r'), and fills the markers.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions