Subs Command & Conversion into Matlab Function (multivariable)

조회 수: 1 (최근 30일)
Alex Santizo
Alex Santizo 2020년 2월 7일
답변: Jyothis Gireesh 2020년 2월 10일
syms t g f
g=t*sin*(1/2*t)+ln(t-1)
f=diff(g,t)
subs (f,t,4/3)
%Also need to solve by conversion into a matlab function
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 2월 7일
You need to pass a value to sin instead of multiply sin itself by something
t*sin(t/2)
For example.

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

답변 (1개)

Jyothis Gireesh
Jyothis Gireesh 2020년 2월 10일
Here are a few pointers which may be able to help you:
  • As explained by Mr. Walter Roberson above, you need to pass an input argument to the “sin()” function. Or else it will be flagged as an error at run-time.
  • I am assuming here that you want to convert the symbolic expression in “f” to a MATLAB function. You may use the “matlabFunction()”to achieve this result.
Please refer to the following documentation link on “matlabFunction()” for any clarifications
Hope this helps!!

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by