1

我有一个函数 y=f(x),我想在 Matlab 中绘制一个直方图,其中我有 x in[n,n+1) 的 ys 总和。Matlab中是否有自动执行此操作的功能?

4

1 回答 1

0

cumtrapz
http://www.mathworks.com/help/techdoc/ref/cumtrapz.html

例子:

x = linspace(0, pi, 30);
y = cos(x);
yint = cumtrapz(x, y);
plot(x, yint, 'x');
hold on;
% exact integral
plot(x, sin(x), '-');
于 2012-07-22T16:26:05.393 回答