%Simple plot with formating clear; f = figure; t = 1:0.1:10; u = t.^2; v = log2(t); %Plot multiple lines at once p = plot(t,u,'bo-',t,v,'r:','linewidth',2); set(gca,'fontsize',30); xlabel('Time (ms)'); ylabel('Firing rate (Hz)'); title('No need for a title?'); %Insert legend and set position l = legend('First series','Second series'); set(l,'location','NorthWest');