I, чтобы нарисовать аппроксимированный пункт кривой в двух разделах. но в середине они перекрываются, для того, чтобы соответствовать кривой, я добавил точку с именем x в третью и четвертую точку набора данных, а в первой части кривой использовались [tre (1: 3), x] и вторая часть набора дат использовала [x, tre (4: 6)], поэтому подгоночная кривая перекрывается по x и четвертой, так как я могу нарисовать часть подгоночной кривой [!
[] 1
x=tr1(3)+0.5*(tr1(4)-tr1(3)); %fetch the middle point of third and fourth
y=d(3)+0.41*(d(4)-d(3));
d1=[d(1:3),y]'; %added to the data set
tro=[tr1(1:3),x]';
hold on
Fits2{p}=fit(tro,d1,'poly3'); %fit curve p=1
plot(Fits2{p},S1{p},tro, d1, C1{p});legend('off'); draw the first section
I want to draw the fitted curve from the first to the third points
tre1=[tr1(3),x,tr1(4:6)]'; %add to the second part of the curve of data set
de1=[d(3),y,d(4:6)]';
Fits3{p}=fit(tre1 ,de1,'exp2'); fit corve p=1
plot(Fits3{p},S1{p},tre1, de1,C1{p}); legend('off');
%I want to draw the fitted curve of x to sixth point to get rid of the two section not to overlap
как нарисовать часть линии подобранной кривой