for loop maximize variable system of equations PLS help!!

조회 수: 7 (최근 30일)
savannah Roemer
savannah Roemer 2015년 8월 26일
답변: Torsten 2015년 8월 27일
how do you use a for loop to maximize a variable in a system of equations?
such as 3x + 2y = cos phi
4x - 3y = 2cos phi
find a phi that maximizes x for instance

답변 (2개)

Walter Roberson
Walter Roberson 2015년 8월 26일
I would not use a for loop.
syms x y phi
[solx, soly] = solve(3*x+2*y == cos(phi), 4*x-3*y = 2*cos(phi), x, y);
bestphi = solve(diff(solx(1),phi),phi);

Torsten
Torsten 2015년 8월 27일

카테고리

Help CenterFile Exchange에서 Numeric Solvers에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by