如何在MatLab中集成最佳拟合线?

时间:2015-05-31 18:29:33

标签: matlab plot numerical-integration

我有各种绘制的点列表,并生成如下图:

enter image description here

有没有办法整合最佳拟合线以获得曲线下面积?

1 个答案:

答案 0 :(得分:1)

是的,您可以使用trapz整合一组离散数据:http://www.mathworks.com/help/matlab/math/integration-of-numeric-data.html

假设您的x轴数据已保存到矢量t,并且您的最佳拟合线数据已保存到fx,则该区域很容易计算如下:

area = trapz(t, fx);