I have two llines say f1 and f2, each having 100 data points. How to find the point of intersection of these two lines or how to find a points in f1 and f2 which have nearly equal values
Kshitij Singh answered .
2025-11-20
t=0:.1:10; y1=sin(t); % say f1 y2=exp(t); %f2 intersection=find(y1==y2);