MATLAB - 2D Plotting
Find the mistake in this MATLAB code snippet:
plot(1:5, [5 10 15 20 25]);
title('Growth');
xlabel('Time');
ylabel('Value');
legend('Growth Data', 'Extra');
