How to have an eq. with an unknown?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi
I would like to write
x0+a*s1=x1 but keeping a as an unknown so that if I replace with values, I get:
[1; 1]+a*[1; 0]=[1+a; 1]
Is this possible?
댓글 수: 0
답변 (2개)
Walter Roberson
2012년 2월 8일
Symbolic toolbox.
syms x0 x1 a s1
x1 = x0 + a * s1;
subs(x1, {x0, s1}, [1;1], [1;0])
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!