﻿功能: 逆累积分布函数之ShiftedLogLogistic
格式: DataInvCDFByShiftedLogLogistic(p, a, b, c)
p : 数值或者矩阵变量, 存储累积分布值. 即当中的元素值取值范围[0, 1]
a : 函数里的常量参数值, 其范围为 -inf < a < inf.
b : 函数里的常量参数值, 其范围为 0 < b < inf. 
c : 函数里的常量参数值, 其范围为 -inf < c < inf.

说明: 
1. 函数主要是根据概率值反算输入参数.
2. p = {DataCDFByShiftedLogLogistic<矩阵运算\DataCDFByShiftedLogLogistic>}(DataInvCDFByShiftedLogLogistic(p, a, b, c), a, b, c)

例子:
p = [0.1, 0.2, 0.5, 0.8];
x = DataInvCDFByShiftedLogLogistic(p, 1, 2, 1.5)//回车得到如下结果
x =
[-0.28395061728395   -0.16666666666666    1.00000000000000    10.3333333333333 ]

f = {DataCDFByShiftedLogLogistic<矩阵运算\DataCDFByShiftedLogLogistic>}(x, 1, 2, 1.5)//回车得到如下结果, 可以发现f与p一致
f =
[ 0.10000000000000    0.20000000000000    0.50000000000000    0.80000000000000 ]