Error- Assignment has more non-singleton rhs dimensions than non-singleton subscripts?
Show older comments
I'm trying to reshape data from a file(A), into a matrix(dcburn) that I made in a certain way using for loops. it keeps giving me this error. I tried doing it multiple ways this is one of them.
A = load('dc.burn.out.txt');
n = length(A);
dcburn = ones(214,223)*-99999;
numrow = 214;
numcol = 223;
k = 1:1:n;
for i = numrow:-1:1;
for j = 1:1:numcol;
dcburn(i,j) = A(k);
end
end
6 Comments
Birdman
on 9 Apr 2018
Can you share your data?
KSSV
on 9 Apr 2018
Check the size A(k)...it could be a vector and you are trying to save it into a single location
Birdman
on 9 Apr 2018
Your code is already shared. Your txt file is needed.
Alexis Diaz
on 9 Apr 2018
Birdman
on 9 Apr 2018
Find Attach file icon, next to the Help button.
Alexis Diaz
on 9 Apr 2018
Edited: Alexis Diaz
on 9 Apr 2018
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements 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!