Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个 2×3 的矩阵,第一行由 f(i) 定义,第二行由 g(i) 使用 Table 命令定义。例如
sin[1] sin[2] sin[3] cos[1] cos[2] cos[3]
谢谢。
In[1]:= {Array[Sin, 3], Array[Cos, 3]} Out[1]= {{Sin[1], Sin[2], Sin[3]}, {Cos[1], Cos[2], Cos[3]}}
注意完全正确的大写和完全正确的使用 () 与 [] 与 {} 和 = 与 := 与 == 甚至还有一个 === 并且这些都是不同的。在其中任何一个中犯任何错误,您都会得到不正确的结果或错误消息,您不知道如何解释,甚至什么也没有。