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.
我正在尝试运行以下 for 循环并使用每次迭代的结果创建一个向量。
for x=0.2:0.1:1, a=quadgk(h,0.2,x) end
我尝试了通常可行的不同方法,但问题是“quadgk”函数中的“x”必须是标量。
谁能帮我这个?
如果我理解正确,您希望将每次迭代的结果放入a. 您可以执行以下操作:
a
count=0; for x=0.2:0.1:1 count=count+1; a(count)=quadgk(h,0.2,x) end