Change of marker size and color of a fitted plot

34 views (last 30 days)
x = T.Power_W;
y = T.Pressure_MPa;
f = fit(x,y,'power1')
%% plot
plot(f,x,y)
% annotation
xlabel('Power / W');
ylabel('Pressure / MPa');
set(gca,'fontsize',20)
legend('Raw data', 'Fitted function')
I have created a plot of some scattered data with a fitted power function. However, I cannot change the marker size by using plot(f,x,y,'MarkerSize',12). It shows 'Error using plot. Invalid color, marker, or line style.'. Could anyone please tell me how to change the color and the size of the marker? Thank you.

Accepted Answer

dpb
dpb on 28 May 2022
The specialized version of plot for use with a fit object doesn't know about all the regular data plot function; it has only a set specific to it. <plot> is the specific version.
You'll have to save the line handles and use them;
>> hL=plot(f,x,y)
hL =
2×1 Line array:
Line (data)
Line (fitted curve)
>>
which shows you the first of the two is the data; the second the fitted line/curve which doesn't have any markers set.
hL(1).MarkersSize=12;
will work, but I'm guessing 12 is going to be too large...
  4 Comments

Sign in to comment.

More Answers (0)

Products


Release

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!