Particle Swam Optimization Curve Fitting

Parameter fitting by Particle Swarm Optimization
ダウンロード: 48
更新 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 (2024). Particle Swam Optimization Curve Fitting (https://www.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