Feeds
提问
Two ways to solve the minimum, the results vary greatly, how to compare which is good?
clear clc % Define the objective function fun = @(x) -x(4); % Define the inequality constraints A = [0.0365, -0.18, 0, -1.3...
2 years 前 | 0 个回答 | 0
0
个回答提问
Optimization not working because fitness function must be a function handle
% Define the objective functions objFun1 = @(x) -0.0365*x(1) + 0.18*x(2) - 0.389; % F(1) objFun2 = @(x) 0.0435*x(1) - 0.266*x(...
2 years 前 | 1 个回答 | 0
1
个回答提问
Solving the Maximum and Minimum Problems of Multivariate Functions
max y and min y y=0.0435*x1-0.266*x2+4.2*x3+0.019*x1*x2-0.3 x1*x3-0.2485 10<x1<20, 0<x2<5, 30<x3<35
2 years 前 | 1 个回答 | 0
1
个回答提问
maximization problem , linprog optimization
Hello, I'm trying to solve this maximization problem with matlab.
3 years 前 | 1 个回答 | 0