It can be done as follows:
1. Perform Linear Fits for two data separately.
Compute the sum of two RSS(Residual Sum of Squares) and df(Degrees of Freedom), and they are denoted by RSS1, df1.
2. Share the two slopes and perform global linear fit for two data in NLFit dialog. RSS and df in the global fit are denoted by RSS2, df2.
3. Determine whether slopes are different. You can run following script in Origin's script window.
F1=(RSS2-RSS1)/(df2-df1)/(RSS1/df1);
p1=1-fcdf(F1,df2-df1,df1);
If p1<0.05, slopes are different.
We will provide a built-in tool to compare parameters in fitting in Origin's next version.
Sam
OriginLab Technical Services