优化双积分函数标定参数

发布于 2025-01-11 18:56:49 字数 454 浏览 0 评论 0原文

我有一个看起来像这样的积分:

在此处输入图像描述

我想要最小化 H 的 ai 值。

我正在尝试从 book(示例 8.1),作者表示他们在 MATLAB 中使用了 GA/fminsearch。

我对 MATLAB 不是很熟悉,但我尝试(没有成功)在那里解决它。我不确定是否应该(或者是否可以)将符号方程传递到 fminsearch 中。

I have an integral that looks like that:

enter image description here

I want to the values of ai that minimize H.

I am trying to replicate the example from a book (example 8.1), where the authors say they used GA/fminsearch in MATLAB.

I am not very familiar with MATLAB, but I tried (with no success) to solve it there. I am not sure if I should (or if I can) pass a symbolic equation into fminsearch.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

各空 2025-01-18 18:56:49

找到解决方案了!

int_term = @(a) integral2(@(u,v) exp(-a(1)*u - a(2)*u.^2  - a(3)*v ...
    - a(4)*v.^2 - a(5)*u.*v),0,1,0,1);

a0 = [1,1,1,1,1]; 

obj_fun = @(a) int_term2(a);
a_sol = fminsearch(obj_fun2, a0)

Solution found!

int_term = @(a) integral2(@(u,v) exp(-a(1)*u - a(2)*u.^2  - a(3)*v ...
    - a(4)*v.^2 - a(5)*u.*v),0,1,0,1);

a0 = [1,1,1,1,1]; 

obj_fun = @(a) int_term2(a);
a_sol = fminsearch(obj_fun2, a0)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文