What is the interpretation of trapz(x,cumtrapz(x,y))?
2 ビュー (過去 30 日間)
古いコメントを表示
x = (-12:12);
y = zeros(1,numel(x));
y(12:14) = 0.33;
z = trapz(x,cumtrapz(x,y));
edit: Alternatively what does the integral of a cumulative integral mean?
採用された回答
Walter Roberson
2017 年 11 月 3 日
It would effectively be a double integration over the same domain
0 件のコメント
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!