How to integrate a matrix of a certain dimension?!
古いコメントを表示
Suppose I have a temperature matrix, T = zeros(Nz+1,Nt+1). Nz are number of elements in the z-axis and Nt are number of elements in the time-axis.
What command should I use for calculating the following integral?
E = integral of [A*T(z,:)*exp(-B*z)] with limits z = 0 to L.
Here, the temperature inside the integral is a function of the position z at a certain time.
Any kind of help will be appreciated. Thanks.
6 件のコメント
Walter Roberson
2012 年 12 月 19 日
Is that intended to be a single integral?? Neither your z nor your time are continuous, and you showed limits only for z.
I am wondering if you want is more or less the 2D equivalent of trapz() ?
Shashank
2012 年 12 月 19 日
Shashank
2012 年 12 月 19 日
Walter Roberson
2012 年 12 月 19 日
I don't think I really understand, but as your z is discrete, you should probably use trapz()
Shashank
2012 年 12 月 19 日
Shashank
2012 年 12 月 19 日
回答 (1 件)
Muruganandham Subramanian
2012 年 12 月 19 日
編集済み: Muruganandham Subramanian
2012 年 12 月 19 日
0 投票
>> help syms
>>help int
Refer this link:
or If you have R2012b version, refer this
カテゴリ
ヘルプ センター および File Exchange で Numerical Integration and Differentiation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!