필터 지우기
필터 지우기

Unexpected output from simplify()

조회 수: 1 (최근 30일)
JingChong Ning
JingChong Ning 2023년 1월 25일
답변: Askic V 2023년 1월 25일
I have this code, looking for the derivative of this equation
syms mp dv vc c
expr2 = (1-((c^2)/(vc^2))*(exp(dv/c)-1))/(exp(dv/c))==mp;
simplify(diff(expr2,c))
I am expecting just a simple expression, but the output contains an extra item
c^2*dv - 2*c^3*exp(dv/c) + dv*vc^2 + 2*c^3 == 0 & vc ~= 0
What does the thing after the & sign mean? Why is it here?

채택된 답변

Askic V
Askic V 2023년 1월 25일
It is probably because you he a division by vc in your expression.
.../(vc^2)...
This means simplified expression is valid only if vc is different than zero.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Formula Manipulation and Simplification에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by