XPS data gaussian multipeak fit

조회 수: 21 (최근 30일)
Babu Sankhi
Babu Sankhi 2021년 5월 2일
답변: Mohsen Tamtaji 2021년 11월 23일
Hello all,
I tried for the gaussion fit at the particular peak for the XPS data . But it didnt work it just give me straight line !! can you please help me how can I do that? The codes I tried are pasted below.
Thank you
o1s1=importdata("Co2p_002.txt");
plot (o1s1(:,1),o1s1(:,2));
x= o1s1(:,1);
fgh=flip(x);
y=o1s1(:,2)-mean(o1s1(:,2));
startPoints = [1.5 900 10 0.6]
gaussEqn = 'a*exp(-((x-b)/c)^2)+d';
f1 = fit(x,y,gaussEqn,'Start', startPoints);
plot(f1,(x),(y));
set ( gca, 'xdir', 'reverse' )
xlim([770 790])

답변 (1개)

Mohsen Tamtaji
Mohsen Tamtaji 2021년 11월 23일
Hello
I have the same question.
I thinks its better to use Origin pro for the XPS data.

카테고리

Help CenterFile Exchange에서 Big Data Processing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by