definite integral中文翻譯,definite integral是什么意思,definite integral發(fā)音、用法及例句
1、definite integral
definite integral發(fā)音
英: 美:
definite integral中文意思翻譯
常用釋義:定積分:給定函數f在自變量x的上限值b和下限值a處積分值的差值。
[數]定積分
definite integral雙語(yǔ)使用場(chǎng)景
1、The theorem shows how to find the mean value using a definite integral.───這定理就告訴我們如何借助求積分的辦法來(lái)找出這個(gè)平均值.
2、In this paper, we obtain several theorem of the definite integral of triangle composite function.───本文給出了計算三角復合函數的定積分的若干方法.
3、In this paper, the application of axisymmetric property on the definite integral operation is studied.───討論了函數圖象的軸對稱(chēng)性及其在定積分中的應用.
4、basic formula of the algorithm of definite integral is Newton-Leibniz formula.───定積分的基本公式是牛頓一菜布尼茲公式。
5、The integral calculus primary coverage includes: Definite integral, indefinite period classification.───積分學(xué)的主要內容包括: 定積分 、 不定積分等.
6、A definite integral is an indefinite integral evaluated over an interval.───定積分是區間上的不定積分值.
7、This paper shows the important roles of variable upper limit definite integral derivative through several examples.───通過(guò)例題給出變上限定積分求導的幾個(gè)應用.
8、Therefore, the computation appears very important to the definite integral.───因此, 對定積分的計算就顯得十分重要.
9、The integral calculus basic concept is a circular function indefinite integral and the definite integral.───積分學(xué)的基本概念是一元函數的不定積分和定積分.
10、Definite integral bounds.───定積分范圍。
definite integral相似詞語(yǔ)短語(yǔ)
1、indefinite integral───[數]不定積分
2、definite integrals───定積分(definiteintegral的復數)
3、Lebesgue integral───n.[數]勒貝格積分
4、indefinite integrals───[數]不定積分
5、line integrals───[數]線(xiàn)積分
6、Lebesgue integrals───n.勒貝格積分
7、infinite integrals───[數]無(wú)窮積分
8、line integral───[數]線(xiàn)積分
9、infinite integral───[數]無(wú)窮積分
2、急求java中求定積分的程序,急?。?!后天就要考試了??!
最普通的定積分程序
public class Calculation { //主類(lèi)
private static double f(double x) { //被積函數為f(x)=x*x
return x * x;
}
private static double integral(double a, double b, int n) { // 數值積分函數
double dx = (b - a) / n; // dx 為把區間[a,b]平均分為n份后每一個(gè)小區間的長(cháng)度
double sum = 0.0; // 用于計算累加值的變量
for (int i = 0; i < n; ++i) {
double x = a + i * dx; //每一個(gè)小區間的左端點(diǎn)的x坐標
double s = f(x) * dx; // 用小區間左端點(diǎn)為小長(cháng)方形的高,dx為底邊長(cháng),f(x)*dx就是小長(cháng)方形的面積
sum = sum + s; // 累加所有的小長(cháng)方形的面積
}
return sum; // 返回累加值
}
public static void main(String[] args) {
double a = 1.0; // a 是積分區間的左端點(diǎn)
double b = 2.0; // b 是積分區間的右端點(diǎn)
int n = 10000; // n 是把積分區間分割的份數
double integ = integral(a, b, n); // 調用數值積分函數
System.out.printf("The integral is %14.10f\n", integ); // 輸出
}
}
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。