Skip to content

Instantly share code, notes, and snippets.

@adamjgnoel
Created April 28, 2016 06:08
Show Gist options
  • Save adamjgnoel/c7f6d0b7c0eb4f67076ecb1989fdeea4 to your computer and use it in GitHub Desktop.
Save adamjgnoel/c7f6d0b7c0eb4f67076ecb1989fdeea4 to your computer and use it in GitHub Desktop.
% Plotting take 3
x = 1e-2:1e-2:100;
% Smooth curves
y1 = exp(-x);
y2 = 1-exp(-x);
% Noisy curves
n = length(x);
z1 = y1.*(1+0.005*randn(1,n));
z2 = y2.*(1+0.005*randn(1,n));
hFig = figure;
hAxes = axes('Parent',hFig,...
'FontSize',12,'XGrid','on', 'YGrid','on', 'Box', 'on');
hold('on');
plot(hAxes, x,y1,'LineStyle', '-', 'Color', [0 0 0],...
'LineWidth', 1);
plot(hAxes, x,y2,'LineStyle', '-', 'Color', [0 0 1],...
'LineWidth', 1);
plot(hAxes, x,z1,'LineStyle', 'none', 'Color', [0 0.6 0],...
'LineWidth', 1, 'Marker', 'o');
plot(hAxes, x,z2,'LineStyle', 'none', 'Color', [1 0 0],...
'LineWidth', 1, 'Marker', 'o');
xlabel('Time [s]');
ylabel('Exponential Observation');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment