Symbolic math toobox/standard library question
조회 수: 5 (최근 30일)
이전 댓글 표시
I'd like to access this particular function http://www.mathworks.com/help/toolbox/mupad/stdlib/divide.html in the symbolic math toolbox but can't seem to find it- but when I enter the function browser, all I see are these functions http://www.mathworks.com/help/toolbox/symbolic/f3-157665.html
So I guess my question is, how can I access the "Standard Library" for the symbolic math toolbox?
댓글 수: 0
답변 (1개)
Walter Roberson
2012년 8월 9일
evalin(symengine, 'divide(3,5)')
or
feval(symengine, 'divide', 3, 5)
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!