Smooth Function not working

조회 수: 18 (최근 30일)
Emily Dickens
Emily Dickens 2017년 7월 12일
답변: Justin Lines 2018년 8월 28일
When I try to use the smooth function it says that it is an undefined function of variable. I am trying to analyze data of a graph. Here is the script:
LOWER_LIMIT = 60;
SULFUR_LIMIT = 325;
UPPER_LIMIT = 600;
T_Sulfur = Ts((Ts>LOWER_LIMIT) & (Ts<SULFUR_LIMIT));
T_Carbon = Ts((Ts>SULFUR_LIMIT) & (Ts<UPPER_LIMIT));
W_Sulfur = smooth(Weight((Ts>LOWER_LIMIT) & (Ts<SULFUR_LIMIT)),75);
W_Carbon = smooth(Weight((Ts>SULFUR_LIMIT) & (Ts<UPPER_LIMIT)),100);
plot(T_Sulfur, W_Sulfur * 100 / max(W_Sulfur));
plot(T_Carbon, W_Carbon * 100 / max(W_Carbon));
xlabel('Temperature (°C)');
ylabel('Weight (%)');
RelativeSulfurWeightLoss=((max(Weight((Ts>LOWER_LIMIT) & (Ts<SULFUR_LIMIT)))) - (min(Weight((Ts>LOWER_LIMIT) & (Ts<SULFUR_LIMIT)))) / (max(Weight((Tx>LOWER_LIMIT) & (Ts<SULFUR_LIMIT)))))
RelativeSulfurWeightRemaining = 1 - ((max(Weight((Ts>LOWER_LIMIT) & (Ts<SULFUR_LIMIT)))) - (min(Weight((Ts>LOWER_LIMIT) & (Ts<SULFUR_LIMIT)))) / (max(Weight((Tx>LOWER_LIMIT) & (Ts<SULFUR_LIMIT)))))
RelativeCarbonWeightLoss=((max(Weight((Ts>SULFUR_LIMIT) & (Ts<UPPER_LIMIT)))) - (min(Weight((Ts>SULFUR_LIMIT) & (Ts<UPPER_LIMIT)))) / (max(Weight((Tx>SULFUR_LIMIT) & (Ts<UPPER_LIMIT)))))
RelativeCarbonWeightRemaining = 1 - ((max(Weight((Ts>SULFUR_LIMIT) & (Ts<UPPER_LIMIT)))) - (min(Weight((Ts>SULFUR_LIMIT) & (Ts<UPPER_LIMIT)))) / (max(Weight((Tx>SULFUR_LIMIT) & (Ts<UPPER_LIMIT)))))
  댓글 수: 1
KSSV
KSSV 2017년 7월 12일
smooth comes with curvefit toolbox...do you have that toolbox? What does which smooth gives?

댓글을 달려면 로그인하십시오.

답변 (2개)

Torsten
Torsten 2017년 7월 12일
Type "ver" to see whether you have a licence for the Curve Fitting Toolbox.
Best wishes
Torsten.
  댓글 수: 2
Emily Dickens
Emily Dickens 2017년 7월 12일
I do have the Curve Fitting Toolbox, but it still isn't working.
Torsten
Torsten 2017년 7월 12일
Other commands from the Curve Fitting Toolbox work, e.g. "fit" ?
Best wishes
Torsten.

댓글을 달려면 로그인하십시오.


Justin Lines
Justin Lines 2018년 8월 28일
Was the smooth function always part of an add on?

카테고리

Help CenterFile Exchange에서 Curve Fitting Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by