Mathematica中的列表总和

时间:2014-07-16 19:49:21

标签: math wolfram-mathematica

在mathematica中,我如何找到插入函数的列表总和,例如

(15*(1-D)) when D=[0,.05,.065,.08,.10,.12,.14,.16,.18,.20]

1 个答案:

答案 0 :(得分:1)

使用此

PP = {0, .05, .065, .08, .10, .12, .14, .16, .18, .20};
Plus @@ 15*(1 - PP)

要记住的事情:DDerivative的保留函数。一般来说,避免使用以大写字母开头的变量名称。接下来,使用Array

定义{}