How to get rid of sign() in diff() results?

조회 수: 5 (최근 30일)
Valeri Aronov
Valeri Aronov 2021년 6월 6일
편집: Paul 2021년 9월 29일
I have a symbolic function. diff() produces the result with sign(). The next derivative has dirac() in it. Is there a way to get rid of sign() in the diff() result?

채택된 답변

Paul
Paul 2021년 6월 6일
If the goal is to get an expression for the amplitude of the frequency response of H(s) and then differentiate ...
syms R1 R2 C1 C2 w real
assume(R1>=0); assume(R2>=0); assume(C1>=0); assume(C2>=0);
syms s
H(s)=1/(C1*C2*R1*R2*s^2 + (C2*R1 + C2*R2)*s + 1);
A = abs(H(1j*w))
A = 
A = rewrite(A,'sqrt')
A = 
A_R1 = diff(A,R1)
A_R1 = 
A_R1_R1 = diff(A,R1,2)
A_R1_R1 = 
  댓글 수: 3
Paul
Paul 2021년 9월 29일
편집: Paul 2021년 9월 29일
Running the code here in 2021b yields the following results where it it looks like the rewrite command doesn't accmomplish anything.
syms s
syms C1 C2 C3 R1 R2 R3 w real
ans = 
syms T3(s, C1, C2, C3, R1, R2, R3)
T3(s, C1, C2, C3, R1, R2, R3) = 1/(C1*C2*C3*R1*R2*R3*s^3 + (C1*C3*R1*R2 + C1*C3*R1*R3 + C2*C3*R1*R3 + C2*C3*R2*R3)*s^2 + (C1*R1 + C3*R1 + C3*R2 + C3*R3)*s + 1);
A = abs(T3(1j*w, C1, C2, C3, R1, R2, R3))
A = 
A = rewrite(A, 'sqrt')
A = 
But running the exact code in 2019a yields
which I guess is the result you're looking for.
I'm not sure if the issue is with rewrite, or the fact that the declaration of T3 removes the assumptions on the C* and R* variables, and then rewrite() can't deal with complex variables.
clear all
syms s
syms C1 C2 C3 R1 R2 R3 w real
assumptions
ans = 
syms T3(s, C1, C2, C3, R1, R2, R3)
assumptions
ans = 
In 2019a, the declaration of T3 does not clear the assumptions on C* and R*. I don't know which is the expected behavior.
But I think the code can run the way you want with a simple modification:
clear all
syms s
syms C1 C2 C3 R1 R2 R3 w real
% syms T3(s, C1, C2, C3, R1, R2, R3) this line not needed
T3(s, C1, C2, C3, R1, R2, R3) = 1/(C1*C2*C3*R1*R2*R3*s^3 + (C1*C3*R1*R2 + C1*C3*R1*R3 + C2*C3*R1*R3 + C2*C3*R2*R3)*s^2 + (C1*R1 + C3*R1 + C3*R2 + C3*R3)*s + 1);
A = abs(T3(1j*w, C1, C2, C3, R1, R2, R3));
A = rewrite(A, 'sqrt')
A = 
Valeri Aronov
Valeri Aronov 2021년 9월 29일
Wow, Paul. May I apologize for unaccepting your original answer - it did answer the original question, after all. I thought that this way I will signal the new turn to you and preserve the context.
2021b result looks logical now.

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

추가 답변 (1개)

Image Analyst
Image Analyst 2021년 6월 6일
Not sure what you mean because you did not give any examples, but if you want the differences to always be positive, you can pass the results of diff() into abs():
d = abs(diff(v));
  댓글 수: 4
Paul
Paul 2021년 6월 6일
I read the post. Sill not clear to me that the intent is to get the derivative of H(s) wrt R1 or if the goal is to get the derivative of abs(H(jw)) wrt R1.
Valeri Aronov
Valeri Aronov 2021년 6월 6일
편집: Valeri Aronov 2021년 6월 27일
The purpose is to get the latter - abs(H(jw)) wrt R1.

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

카테고리

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