标签: matlab find intersection
我在A中有两个函数B=-kA和mesh x=(1:1:100)。我需要找到A和B相交的最后一个网格点,从总共4次十字交叉。
A
B=-kA
mesh x=(1:1:100)
我使用了Matlab find:
find
find(A-B>0,1, 'last')-1;
似乎不起作用。
还有其他办法吗?