Excuse me.Now I'm using Labwindows cvi 2013 s2,I want to find the intersection of two curves.The curves come from polyfit .
err = PolyFit (x_values, CurrentValue, number_of_samples,polynomial_order, fitted_values1, coefs, &mse);
err = PolyFit (x_values, VoltageValue, number_of_samples,polynomial_order, fitted_values2, coefs, &mse);
x from 0,1,2,3...500
how can i get the intersection of fitted_values1 and fitted_values2?
Thank you for answer.