Mathematica的常用操作和常用函数
本文介绍了Mathematica的常用操作和常用函数。
常用命令
运行代码
Shift+Enter
中止运行
Alt+.
输入下标
Ctrl+_
输入上标
Ctrl+^
插入根式
Ctrl+2
插入分数
Ctrl+/
输入特殊字符
Esc
语法
1 | (* 使用最近的输出 *) |
常量
1 | I (* 单位虚数 *) |
数学
1 | order = 3 |
矩阵计算
1 | matrix = { {1, 0}, {0, 1} } |
输出
1 | matrix = { {1, 0}, {0, 1} } |
实例
S、Y、Z参数的转换
定义了N端口的S、Y、Z参数转换的几个函数,各端口阻抗要求相同
1 | Y2S[Y_, Zc_] := Module[{E0, G0, Z0}, |
参考
- Wolfram Language - Fast Introduction for Programmers, https://www.wolfram.com/language/fast-introduction-for-programmers/.
- Wolfram Language & System Documentation Center, https://reference.wolfram.com/language/index.html.
- Qucs Technical Papers, http://qucs.sourceforge.net/tech/technical.html.
Related Posts
- Post link: https://triblemany.github.io/archives/bf359c5c/mathematica-tutorial.html
- Copyright Notice: All articles in this blog are licensed under BY-NC-SA unless stating additionally.