How can I solve each element of an array symbolically?

조회 수: 1 (최근 30일)
Demetri Pananos
Demetri Pananos 2015년 10월 9일
답변: Walter Roberson 2015년 10월 9일
I'm trying to find bifurcation points of a dynamical system.
I calculate the Jacobian of my system (which I call JJ), substitute in fixed points and find the eigenvalues (which I call L).
I would like to then solve each element of L, and find the smallest solution. This will give me the bifurcation value.
The solution may return 0, 1, or many solutions. How can I do this efficiently?

답변 (1개)

Walter Roberson
Walter Roberson 2015년 10월 9일
For loop over length(L), index L, solve, sort through the solutions
minsol = inf;
for K = 1 : length(L)
s = solve(L(K));
mins = min(s);
if mins < minsol; minsol = mins; end
end

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by