📄 debias.m
字号:
function [newtraces] = debias(traces);
% function debias carries out a simple subtraction of the mean value of
% each trace. This assumes that the debias is due to DC offset shift only
% and subtracts the mean amplitude.
[m,n] = size(traces);
newtraces = traces - ones(m,1)*mean(traces);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -