Access Read-Only Properties of Class (GeneralizedLinearModel)
3 views (last 30 days)
Show older comments
I want to edit the property of a class. For example:
X=randn(100,1);
Y=X + randn(100,1)
mdl=fitglm(X,Y)
but apparently the properties are read-only
>> mdl.Coefficients.Estimate(2)=2
Error using classreg.regr.CompactFitObject/subsasgn (line 233)
The Coefficients property for class GeneralizedLinearModel is read-only.
Is this possible?
0 Comments
Answers (0)
See Also
Categories
Find more on Get Started with Statistics and Machine Learning Toolbox 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!