Wolfram Mathematica: 现代科技计算(https://www.wolfram.com/mathematica/index.php.zh?source=footer)
Mathematica最全教程 - 知乎(https://zhuanlan.zhihu.com/p/688613508)
Mathematica安装指南 - 知乎(https://zhuanlan.zhihu.com/p/683910734)
Mathematica 12中文版安装注册激活图文详细教程(附下载)_编程开发_软件教程_脚本之家(https://www.jb51.net/softjc/680136.html)
mathematica(MMA)
Mathematica是一款科学计算软件,很好地结合了数值和符号计算引擎、图形系统、编程语言、文本系统、和与其他应用程序的高级连接。很多功能在相应领域内处于世界领先地位,它也是使用最广泛的数学软件之一。Mathematica的发布标志着现代科技计算的开始。Mathematica是世界上通用计算系统中最强大的系统。自从1988发布以来,它已经对如何在科技和其它领域运用计算机产生了深刻的影响。
Mathematica 和 MATLAB、Maple 并称为三大数学软件。
基础操作
shift
+enter
执行计算
示例函数
Plot[3 - Abs[x^2 - 1], {x, -3, 3}, PlotStyle -> Blue, Axes -> False]
Plot[x Sin[x], {x, -2 Pi, 2 Pi}, PlotStyle -> {Red, Thick}]
# 爱心函数
ContourPlot[(x^2+ y^2 - 1)^3 == x^2 y^3, {x, -(3/2), 3/2}, {y, -(3/2), 3/2}, ContourStyle ->Red, PlotPoints -> 100, Axes -> False, Frame -> False]
ParametricPlot[{54Cos[t] - 25 Cos[(18 t)/5], 54 Sin[t] - 25Sin[(18 t)/5]}, {t, 0, 10 Pi}, PlotStyle -> {Thick, Red}, Axes ->False]
RegionPlot[(x^2+ y^2 - 1)^3 - x^2 y^3 <= 0, {x, -(3/2), 3/2}, {y, -(3/2), 3/2}, PlotStyle-> Red, BoundaryStyle -> None, PlotPoints -> 90, Frame -> False]
RegionPlot[x^2< y^3 + 1 && y^2 < x^3 + 1, {x, -2, 5}, {y, -2, 5}]
也可以在 https://www.wolframalpha.com 中绘图:
regionplot(x^2 + y^2 - 1)^3 - x^2 y^3 <= 0 red
parametricplot{54 Cos[t] - 25 Cos[(18 t)/5], 54 Sin[t] - 25Sin[(18 t)/5]}, {t, 0, 10 Pi}
发表评论