필터 지우기
필터 지우기

When I use GA app, how to put the constraints with absolute value

조회 수: 1 (최근 30일)
SeungJu Choi
SeungJu Choi 2021년 10월 28일
답변: Jaynik 2024년 4월 10일
Now I using ga app.
I want to put the constraints in ga app.
That constraints is below.
I can put the first constraint(g1), but my problem is second constraint(g2).
The second constraint(g2) have absolute value, how to apply it?

답변 (1개)

Jaynik
Jaynik 2024년 4월 10일
Hi,
You can use the "abs" function for handling absolute values in the second constraint. Here is a sample code for the same:
g1 = sum(L(1:Ns) .* Ki(1:Ns)) / L - r1;
g2 = sum(abs(K(1:Ns-1) - K(2:Ns))) - r2;
You can read more about the "abs" function here:
Hope this helps!

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by