sigm_fit_val(param,​x)

버전 1.0.0.0 (977 Bytes) 작성자: R P
It returns estimated Y for sigmoid for given PARAM and X
다운로드 수: 131
업데이트 날짜: 2017/2/10

라이선스 보기

sigm_fit_val returns estimated Y for the sigmoidal function with given PARAM and of a given X vector.

The functions sigm_fit and sigm_fit_val are the equivalent of the builtin
Matlab functions polyfit and polyval for sigmoid functions.

sigm_fit is available on http://www.mathworks.com/matlabcentral/fileexchange/42641-sigm-fit

Syntax: [yhat] = sigm_fit_val(param,x)

Example:
xdata=[0 ,50 ,100 ,150,200,250 ,300,350,400,450,500, 550,600, 650, 700,750, 800, 850, 900, 950,1000];
ydata=[-29,-205,-156,-50 ,-28,-103,249,120,86,178,740,1199,918,1096,1065,1074,1004,1193,1122,860,1045];
[param]=sigm_fit(xdata,ydata,[],[0 1000 500 0.01],0)
x = 0:20:1000;
[yhat] = sigm_fit_val(param,x);
plot(x,yhat)

인용 양식

R P (2024). sigm_fit_val(param,x) (https://www.mathworks.com/matlabcentral/fileexchange/61519-sigm_fit_val-param-x), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2015a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Curve Fitting Toolbox에 대해 자세히 알아보기
태그 태그 추가
도움

받음: sigm_fit

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0