MATLAB - 2D Plotting
What will be the output of this MATLAB code?
x = 1:5;
y = [2 4 6 8 10];
plot(x, y);
title('Data Trend');
xlabel('Index');
ylabel('Value');
