how do correct the error in this line? print is nor recognised

1 view (last 30 days)
X1fit = estimate(modelX, Xest(:,1),'print',false);

Accepted Answer

Adam Danz
Adam Danz on 23 Jan 2021
"Print" is not a name-value option for that function. I think you're looking for,
X1fit = estimate(modelX, Xest(:,1),'Display','off');

More Answers (0)

Categories

Find more on Voronoi Diagram in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!