 |
How to save MATLAB figure as JPEG using saveas() without the image coming off badly? - Stack Overflo
Just use a lossless scalable format like EPS, see last line in the snippet below :) h1=figure % create figure plot(t,Data,'r'); legend('Myfunction'); % Create title with required font size title({'Variance vs distance'},'LineWidth',4,'FontSize',18,... 'Fo
stackoverflow.com |
 |