dx+fy=k solve for x

댓글 수: 2

bym
bym 2011년 9월 8일
is dx a variable or does it mean d*x? what is fy. You have to provide more information to get a better answer than:
x= (k-fy)/d
Walter Roberson
Walter Roberson 2011년 9월 8일
Is this linear algebra or is it a differential equation ?

댓글을 달려면 로그인하십시오.

답변 (2개)

Walter Roberson
Walter Roberson 2011년 9월 8일

0 개 추천

You will need the Symbolic Toolkit.
solve('d*x+f*y=k','x')
Subarna Parajuli
Subarna Parajuli 2021년 9월 20일

0 개 추천

3X+2Y=24
X+Y=12

댓글 수: 1

eqn = [str2sym('3*X+2*Y==24')
str2sym('X+Y==12')]
eqn = 
solve(eqn)
ans = struct with fields:
X: 0 Y: 12

댓글을 달려면 로그인하십시오.

카테고리

질문:

2011년 9월 8일

댓글:

2021년 11월 7일

Community Treasure Hunt

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

Start Hunting!

Translated by