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.
離散和の関数を取得する必要があります。 つまり、配列ではなく、別の関数の離散和です! 私は配列の機能を持っています。カスタム Func 用に変更する方法。
public static double Sum(double[] A1, double t1, double t2) { double s = 0; for(long i = t1; i < t2; i++) { s += A1[i]; } return s; }