MATLAB function that is equivalent to Maple's match function?

조회 수: 2 (최근 30일)
Henning Søgaard
Henning Søgaard 2020년 2월 26일
댓글: Henning Søgaard 2020년 2월 26일
I'm looking for at function that is equivalent to Maple's match function:
The match function returns true, because the LHS and the RHS of the equation can be matched for all s. The return variable m contains the values of the unknowns, A and B, that solve the equation for all s.
Does MATLAB offer a function similar to Maple's match function?

답변 (1개)

KSSV
KSSV 2020년 2월 26일
편집: KSSV 2020년 2월 26일
syms s ;
A = 1; B = -1;
LHS = 1/s-1/(s+1) ;
RHS = A/s+B/(s+1) ;
m = isequal(LHS,RHS) ;
  댓글 수: 3
KSSV
KSSV 2020년 2월 26일
Okay,...it is like partial fractions?
Henning Søgaard
Henning Søgaard 2020년 2월 26일
Well, for the example above I could apply partial fractions. However, I would like to be able to match expressions in more general terms. Here is another example where I want to find a particular solution for a differential equation by using the method of undetermined coefficients.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by