Preallocating array error problem

1 view (last 30 days)
Liew Soon Chian
Liew Soon Chian on 10 May 2021
Commented: KSSV on 10 May 2021
How to deal with this kind of error problem?

Accepted Answer

KSSV
KSSV on 10 May 2021
You need to initialize the variable before the loop. Initialize using:
error_history = zeros([],1) ;
Note: Don't show your code as an image snippet.....you should copy paste it here.
  2 Comments
Liew Soon Chian
Liew Soon Chian on 10 May 2021
Got the error fixed. Many thanks.
KSSV
KSSV on 10 May 2021
It is not an error... it is a warning.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!