Error using mupadmex " MuPAD "
이전 댓글 표시
I don't know Why I am getting the error "error using mupadmex......." in the following code, please help,
syms z myFun =@(m,n) int(hermiteh(m,z)*hermite(n,z),0,5) myFun(1,2)
답변 (1개)
Steven Lord
2017년 8월 30일
0 개 추천
Were you trying to call the hermiteH function? MATLAB is case sensitive so hermiteh and hermiteH are not the same function. There is no function named hermiteh in any MathWorks product, as far as I can see from a search. Nor is there a function named hermite.
When I changed both "hermiteh" and "hermite" to hermiteH evaluating the anonymous function worked.
카테고리
도움말 센터 및 File Exchange에서 Library Domains에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!