﻿功能:Mittag-Leffler函数求值

格式:
MittagLeffler(z,Alpha,Beta,n)
MittagLeffler(z,Alpha,Beta)
MittagLeffler(z,Alpha)
MittagLeffler(z)

z:是一个数据或者矩阵变量
Alpha:为数据变量,默认为1.5
Beta:为数据变量,默认为0.5
n:数据位数精度,默认为16

说明:
MittagLeffler(z,Alpha,Beta)=∑z^k/Gamma(Alpha*k+Beta) 其中k=0,1,2,3……,∞

参考:
1、本算法代码翻译自{Matlab代码<http://www.mathworks.com/matlabcentral/fileexchange/8738-mittag-leffler-function/content/mlf.m>}
2、{Mittag-Leffler Function<http://en.wikipedia.org/wiki/Mittag-Leffler_function>}

例子:

MittagLeffler(1.234,2.5,0.86)//回车得到如下的值
ans =
[ 1.35468123338782 ]