How to clear this error?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Cell contents assignment to a non-cell array object.
Error in fincode (line 237)
D{i}=[U,zeros(1,vg)];
0 Kommentare
Antworten (1)
Walter Roberson
am 14 Feb. 2018
You had previous initialized D to be something other than a cell array. If you are deliberately changing its use from numeric to cell array, then you should either "clear D" or else explicitly assign something like "D = cell(1,20);"
0 Kommentare
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!