Particle Swam Optimization Curve Fitting

버전 1.0.2 (2.56 KB) 작성자: Lateef Adewale Kareem
Parameter fitting by Particle Swarm Optimization
다운로드 수: 61
업데이트 날짜: 2022/5/30

라이선스 보기

This function fits the computes the Paramters of the given model that best fit the experimental measurements given, and subject to the nonlinear equality -funCEq and inequality constraints -funCInEq, and within the hyperbox between lb and ub
example is shown below
S = load('reaction');
X = S.reactants;
y = S.rate;
beta0 = S.beta;
lb = 0*beta0;
ub = 2*beta0;
penalty = 10;
popsize = 100;
maxiter = 200;
beta = PartSwarmFit(@(b)hougen(b,X),[],[], y, lb, ub, penalty, popsize, maxiter)

인용 양식

Lateef Adewale Kareem (2025). Particle Swam Optimization Curve Fitting (https://kr.mathworks.com/matlabcentral/fileexchange/90965-particle-swam-optimization-curve-fitting), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2021a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
태그 태그 추가

Community Treasure Hunt

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

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

Change of title

1.0.1

Gave an example

1.0.0