No legend when plotting fit object

46 次查看(过去 30 天)
When you plot a fit object, it automatically adds a legend. For example, 'plot(myfit)', in which 'myfit' is the output of 'fit' would plot the fit line and a legend showing that line with the name "fitted". If you're plotting fit objects in a loop, the legend really slows it down, and, also, I don't want the legend. I tried removing the legends after the plot is done plotting, but the slow part is making the legends, so that doesn't help. Not sure if it's relevant, but this is in a plot with 42 subplots. I did some searching, but couldn't find this particular question asked before. Anyway to just not make the legend to begin with?

采纳的回答

dpb
dpb 2021-2-22
编辑:dpb 2021-2-23
Doesn't seem to be any way to prevent the builtin fit object plot() routine from adding the legend.
Instead, use
plot(x,myfit(x),'linespec');
for the x that was the input to create myfit object. This will bypass the cfit object plot by evaluating it only and then call the base MATLAB plot() routine.
Does seem worthy of enhancement request to allow for further customization options on creation of fit object plots.
I didn't try to do comparison timings...

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Legend 的更多信息

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by