% Plotting take 2 | |
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, 'Color', [0 0 0]); | |
plot(hAxes, x,y2, 'Color', [0 0 1]); | |
plot(hAxes, x,z1, 'Color', [0 0.6 0]); | |
plot(hAxes, x,z2, 'Color', [1 0 0]); | |
xlabel('Time [s]'); | |
ylabel('Exponential Observation'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment