Mathematica入门[3]–Built-in Functions(内置函数)

王 茂南 2017年9月5日12:05:0722 693字阅读2分18秒

原文链接:https://www.wolfram.com/language/fast-introduction-for-programmers/en/built-in-functions/

正文

The Wolfram Language has about 5000 built-in functions. All have names in which each word starts with a capital letter:

在Wolfram语言中包含有大约5000个内置的函数。他们所有的名字中每个单词都是大写字母。

 

Mathematica入门[3]–Built-in Functions(内置函数)

 

python中的内置函数被包含在不同的库中

 

Arguments to functions are always separated by commas.

函数参数通常被逗号分割

 

在wolfram中函数参数使用方括号[...]而不是圆括号(...),圆括号用来分组,改变表达式优先级的时候。但是在python中函数使用圆括号,如下图使用的命令,help(sum),sum([1,2,3])

 

Mathematica入门[3]–Built-in Functions(内置函数)

 

Hover over any built-in function name to see summary or documentation and examples.

悬停在一些内置函数中可以查看到总结,文档和例子

 

一些单词及句子

comma:逗号

hover:悬停

 

  • 微信公众号
  • 关注微信公众号
  • weinxin
  • QQ群
  • 我们的QQ群号
  • weinxin
王 茂南
  • 本文由 发表于 2017年9月5日12:05:07
  • 转载请务必保留本文链接:https://mathpretty.com/8073.html
匿名

发表评论

匿名网友 填写信息

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

评论:2   其中:访客  1   博主  1
    • 低调-为哥
      低调-为哥

      悬停的意思就是把鼠标的光标停留在函数名上,此时会产生一个下拉箭头,点开箭头旁的‘’!‘’可查看函数的具体用法说明。