How do I get an Expression to Use the Value of a Variable that was Assigned after the Expression was Defined?

조회 수: 1 (최근 30일)
Suppose I assign to a sym as follows:
syms z f g
Define f in terms of z
f = 2*z
f = 
Now assign a value to z
z = sym(2)*1i;
But f is still expressed in terms of z and it doesn't seem to substitute the value for z
f
f = 
simplify(f)
ans = 
simplify(f - sym(2)*1i)
ans = 
But assigning to a new expression in terms of z works as expected.
g = 2*z
g = 
How do I get the SMT to realize that f = 2i?

채택된 답변

Steven Lord
Steven Lord 2021년 9월 13일
Use subs.
syms z
f = 2*z
f = 
z = 4;
f
f = 
g = subs(f)
g = 
8

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by