156
edits
(→Noise Reduction: improved ghkss example) |
m (→Noise Reduction: code bug) |
||
Line 24: | Line 24: | ||
delay_noisy = delay (hen_noisy); | delay_noisy = delay (hen_noisy); | ||
# Plot both on one chart | # Plot both on one chart | ||
plot (delay_noisy(:,1), delay_noisy(:,2), 'b.;Noisy Data;','markersize,3,... | plot (delay_noisy(:,1), delay_noisy(:,2), 'b.;Noisy Data;','markersize',3,... | ||
delay_clean(:,1), delay_clean(:,2), 'r.;Clean Data;','markersize,3) | delay_clean(:,1), delay_clean(:,2), 'r.;Clean Data;','markersize',3) | ||
</syntaxhighlight>}} | </syntaxhighlight>}} | ||
On the chart created the red dots represent cleaned up data. It is much closer to the original than the noisy blue set.<br/> | On the chart created the red dots represent cleaned up data. It is much closer to the original than the noisy blue set.<br/> |
edits