How to work with piecewise results that are returned by the solve() function

조회 수: 1 (최근 30일)
Hello,
I have the Student version of Matlab, version R2010a. When I use the solve() function, it sometimes returns a piecewise result, as in the example below. My question is how to parse out the details of that piecewise sym object (i.e. obtain the various parts and assign them to variables). In case it helps, I am not using the solve() function directly, but rather, I am using it via symengine, i.e.
Sol = evalin(symengine,'solve(...)');
Sol = piecewise([s < 1/2, {[a = s, lambda1 = 0, lambda2 = 4 - 8*s]}], [1/2 <= s, {[a = 1/2, lambda1 = 0, lambda2 = 0]}])

채택된 답변

Karan Gill
Karan Gill 2017년 7월 10일
Honestly, the simplest solution is to upgrade to at least R2016b where "piecewise" was introduced in Symbolic Math Toolbox. Otherwise, you can use "MuPAD" directly for these calculations, because working through "evalin" or "feval" is messy.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2017년 7월 10일
In R2012a children() was introduced which can help with this kind of analysis.
However, in your R2010a version, you need to use evalin(symengine) or feval(symengine) to execute 'op' operations to pull part the expression.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by