epsilon = (0:0.2:5)';
load = 2*exp(-0.2*epsilon) + 0.5*randn(size(epsilon));
fitting = fit(epsilon, load, 'poly2');
plots = plot(fitting, epsilon, load)
plots(2).LineWidth = 4;
plots(1).MarkerSize = 8;
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!