How to exclude a variable from fit by custom function.

조회 수: 4 (최근 30일)
Yuriy
Yuriy 2019년 6월 14일
답변: Star Strider 2019년 6월 14일
Hello,
I have a custom function y= a+g/(exp(T/x)-1) where T is a constant which has been already calculated.
I want to fit my data set by using a and g only. How to state that T is already predefinded and should be excluded from the fitting?

답변 (1개)

Star Strider
Star Strider 2019년 6월 14일
Try this:
T = 42; % Defined In Your Workspace
y = @(a,g,x) a+g./(exp(T./x)-1);
To use it with other toolboxes:
y = @(b,x) b(1)+b(2)./(exp(T./x)-1);

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by