フィルターのクリア

Change of marker size and color of a fitted plot

17 ビュー (過去 30 日間)
Cheuk Yin Wong
Cheuk Yin Wong 2022 年 5 月 27 日
コメント済み: Cheuk Yin Wong 2022 年 5 月 31 日
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.

採用された回答

dpb
dpb 2022 年 5 月 28 日
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 件のコメント
dpb
dpb 2022 年 5 月 30 日
Notice in the above where I plotted the fit it says "2x1 Line array" -- as you can see when you do this kind of plot, it puts two lines on the axes; as the above shows, the first is the raw data and the second is the fitted curve to that data.
You want to change the marker size of the data -- hence the first of the two lines on the graph.
Experiment -- try modifying things for the second line -- as I noted above, there are no markers on the fitted line by default so changing their size will have no visible effect -- but color would. Or, you could set a marker there and see how many points they use to calculate a smooth curve to draw.
See the doc for plot to read about line properties and about what the return value of a line handle is...
Cheuk Yin Wong
Cheuk Yin Wong 2022 年 5 月 31 日
Thanks!

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by