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.
我对 Mathematica 很陌生,我很好奇如何声明变量并稍后在函数中使用它们。我尝试执行以下操作,但我在 Graph 中得到空结果
在这里,我声明了两个变量 1 和 2 并尝试稍后使用它们,但它没有输出结果。
提前致谢。
试试这个
one:=3*x^2/2; two:=x; Show[Plot[one/two,{x,0,15}],ListPlot[{1,3,7,9,10,11,14}]]