如果我有一个数值向量并且我知道该向量在某些边界中的积分值:如何从积分中提取边界?
例如,我有A=[4 5 6 9 8]
并且B=[1 3 2 5 6 3 5 8 10]
我有这个等式:
int(A)(from x1_1= ? to x1_2= ?)/int(A)(from x1_1=1 to x1_end=7) =
int(B)(from x2_1=2 to x2_2=3)/int(B)(from x2_1=2 to x2_end=9)
我知道积分的右侧 - 如何获得左侧积分的边界?
我使用trapz
函数在matlab中进行积分。