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 ループが次の場合:
for i=[0.01, 0.02, 0.05] exp(i) end
次のような配列を作成する必要があります
[exp(0.01) exp(0.02) exp(0.03)]
どうやってやるの?ありがとう。
あなたがしたように:-)
V= [0.1 0.2 0.3] R=exp(V)
関数を計算する値のベクトルを作成し、それをパラメーターとして渡します。