Laguerre polynomials in MATLAB

时光毁灭记忆、已成空白 提交于 2019-12-20 04:45:07

问题


I tried using the .. command in MATLAB to generate Laguerre polynomials but I keep getting this error every time:

I found this in the help section:

Since I have defined x as symbolic I shouldn't be getting this error.

Also on website I found this which says that the function does not run in MATLAB.

Can anyone help? Thanks in advance


回答1:


Like you say, and the matlab help says this function only works inside mupad, maybe in later versions it works in matlab console.

If you want to use it, write mupad in Matlab Command window and then use it in the mupad, matlab will return you the result as I show in the picture




回答2:


In R2014b+, there is a laguerreL function available directly from within Matlab. However, a version of this function was introduced to MuPAD in R2009a. You can call the MuPAD version from within Matlab

syms x;
feval(symengine,'laguerreL',2,x)

or

evalin(symengine,'laguerreL(2,x)')

Both return x^2/2 - 2*x + 1.

You can read more about interacting with MuPAD functionality from Matlab here. However, I'd recommend browsing and searching the archived documentation for your specific version or using your built-in HTML documentation (e.g., doc mupad or doc 'calling mupad').



来源:https://stackoverflow.com/questions/30283339/laguerre-polynomials-in-matlab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!