matlab去基线时把大波滤掉了

matlab拉曼去基线的时候把大波滤掉了
[num,txt,raw]=xlsread('C:\Users\Liuyou Wang\Desktop\Calcium\Ctrl\1\220717161208.csv');

num(:,1)=[];

for i=1:9
d=num(:,i);

[Base, Corrected_d]=baseline(d);

figure(1)
subplot(3,3,i);plot(d,'b-');xlabel("一");
hold on
subplot(3,3,i);plot(Base,'r--');xlabel("二");
hold on
subplot(3,3,i);plot(Corrected_d,'g-.');xlabel("三")

figure(2);
subplot(3,3,i);plot(Corrected_d);title('mean i');

end

所使用的去基线方法为拉曼光谱滤波,但是在去基线的同时把大波也滤掉了,万分感谢

img

img