matlab中极限的使用——Limit variable must be a symbolic variable.

조회 수: 4 (최근 30일)
晨曦
晨曦 2023년 12월 7일
편집: Arka 2023년 12월 27일
syms I1 I2 I3 Q1 Q2 Q3
limit(acos((I2-I1)*(I3-I2)+(Q2-Q1)*(Q3-Q2)/(sqrt((I2-I1)^2+(Q2-Q1)^2)*sqrt((I3-I2)^2+(Q3-Q2)^2)))/(sqrt(I3-I1)^2+(Q3-Q1)^2),(sqrt(I3-I1)^2+(Q3-Q1)^2),inf)
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2023년 12월 7일
You want to find the limit of the expression, but with respect to which variable?

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

답변 (1개)

Arka
Arka 2023년 12월 26일
편집: Arka 2023년 12월 27일
You can go through the standard usage of the "limit" function from the MathWorks documentation link below:
As can be seen from the link above, you need to calculate the limit of a function with respect to a symbolic variable. In your case, it is a symbolic expression, and not a symbolic variable.
Hope this helps!
  댓글 수: 1
Dyuman Joshi
Dyuman Joshi 2023년 12월 26일
편집: Dyuman Joshi 2023년 12월 26일
OP already knows about limit, as they have used it in the code posted above.
Your answer does not add any extra info to this thread.
And it's not a function, but a symbolic expression.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!