2012-07-22 166 views
1

我有一個函數y = f(x),我想在Matlab中繪製直方圖,其中我有[n,n + 1]中x的總和。 在Matlab中是否有一個函數自動執行?累積直方圖

回答

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), '-'); 
+0

等待,說我有0到20之間的真正的X,我如何才能Y的20個積分的向量相對於X? – 2012-07-22 16:29:20