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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 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년 초과 전 | 답변 수: 1 | 0
1
답변질문
maximization problem , linprog optimization
Hello, I'm trying to solve this maximization problem with matlab.
거의 3년 전 | 답변 수: 1 | 0