扒开老师双腿猛进入白浆小说,熟女人妻私密按摩内射,成人A片激情免费视频,亚洲欧洲AV无码区玉蒲区

當(dāng)前位置: > 投稿>正文

definite integral中文翻譯,definite integral是什么意思,definite integral發(fā)音、用法及例句

2025-09-02 投稿

definite integral中文翻譯,definite integral是什么意思,definite integral發(fā)音、用法及例句

1、definite integral

definite integral發(fā)音

英:  美:

definite integral中文意思翻譯

常用釋義:定積分:給定函數(shù)f在自變量x的上限值b和下限值a處積分值的差值。

[數(shù)]定積分

definite integral雙語(yǔ)使用場(chǎng)景

1、The theorem shows how to find the mean value using a definite integral.───這定理就告訴我們?nèi)绾谓柚蠓e分的辦法來找出這個(gè)平均值.

2、In this paper, we obtain several theorem of the definite integral of triangle composite function.───本文給出了計(jì)算三角復(fù)合函數(shù)的定積分的若干方法.

3、In this paper, the application of axisymmetric property on the definite integral operation is studied.───討論了函數(shù)圖象的軸對(duì)稱性及其在定積分中的應(yī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é)的主要內(nèi)容包括: 定積分 、 不定積分等.

6、A definite integral is an indefinite integral evaluated over an interval.───定積分是區(qū)間上的不定積分值.

7、This paper shows the important roles of variable upper limit definite integral derivative through several examples.───通過例題給出變上限定積分求導(dǎo)的幾個(gè)應(yīng)用.

8、Therefore, the computation appears very important to the definite integral.───因此, 對(duì)定積分的計(jì)算就顯得十分重要.

9、The integral calculus basic concept is a circular function indefinite integral and the definite integral.───積分學(xué)的基本概念是一元函數(shù)的不定積分和定積分.

10、Definite integral bounds.───定積分范圍。

definite integral相似詞語(yǔ)短語(yǔ)

1、indefinite integral───[數(shù)]不定積分

2、definite integrals───定積分(definiteintegral的復(fù)數(shù))

3、Lebesgue integral───n.[數(shù)]勒貝格積分

4、indefinite integrals───[數(shù)]不定積分

5、line integrals───[數(shù)]線積分

6、Lebesgue integrals───n.勒貝格積分

7、infinite integrals───[數(shù)]無窮積分

8、line integral───[數(shù)]線積分

9、infinite integral───[數(shù)]無窮積分

2、急求java中求定積分的程序,急啊?。『筇炀鸵荚嚵耍。?/h2>

最普通的定積分程序

public class Calculation { //主類

private static double f(double x) { //被積函數(shù)為f(x)=x*x

return x * x;

}

private static double integral(double a, double b, int n) { // 數(shù)值積分函數(shù)

double dx = (b - a) / n; // dx 為把區(qū)間[a,b]平均分為n份后每一個(gè)小區(qū)間的長(zhǎng)度

double sum = 0.0; // 用于計(jì)算累加值的變量

for (int i = 0; i < n; ++i) {

double x = a + i * dx; //每一個(gè)小區(qū)間的左端點(diǎn)的x坐標(biāo)

double s = f(x) * dx; // 用小區(qū)間左端點(diǎn)為小長(zhǎng)方形的高,dx為底邊長(zhǎng),f(x)*dx就是小長(zhǎng)方形的面積

sum = sum + s; // 累加所有的小長(zhǎng)方形的面積

}

return sum; // 返回累加值

}

public static void main(String[] args) {

double a = 1.0; // a 是積分區(qū)間的左端點(diǎn)

double b = 2.0; // b 是積分區(qū)間的右端點(diǎn)

int n = 10000; // n 是把積分區(qū)間分割的份數(shù)

double integ = integral(a, b, n); // 調(diào)用數(shù)值積分函數(shù)

System.out.printf("The integral is %14.10f\n", integ); // 輸出

}

}

本站其他內(nèi)容推薦

版權(quán)聲明: 本站僅提供信息存儲(chǔ)空間服務(wù),旨在傳遞更多信息,不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任,不代表本網(wǎng)贊同其觀點(diǎn)和對(duì)其真實(shí)性負(fù)責(zé)。如因作品內(nèi)容、版權(quán)和其它問題需要同本網(wǎng)聯(lián)系的,請(qǐng)發(fā)送郵件至 舉報(bào),一經(jīng)查實(shí),本站將立刻刪除。