How to do manual operation of cross multiplication or substitution?
조회 수: 1 (최근 30일)
이전 댓글 표시
If
syms A B x
y = A*x^2 + B*x;
dy = diff(y)
d2y = diff(dy)
then how to get where d2y is the second derivation; using subs or any other command in MATLAB
댓글 수: 0
답변 (1개)
Chunru
2021년 12월 12일
Is this what you want?
syms A B x z
y = A*x^2 + B*x;
dy = diff(y)
d2y = diff(dy)
z = d2y/x^2
댓글 수: 4
참고 항목
카테고리
Help Center 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!