How to exclude a variable from fit by custom function.
1 回表示 (過去 30 日間)
古いコメントを表示
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?
0 件のコメント
回答 (1 件)
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);
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!