Error- Assignment has more non-singleton rhs dimensions than non-singleton subscripts?
이전 댓글 표시
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
Birdman
2018년 4월 9일
Can you share your data?
KSSV
2018년 4월 9일
Check the size A(k)...it could be a vector and you are trying to save it into a single location
Birdman
2018년 4월 9일
Your code is already shared. Your txt file is needed.
Alexis Diaz
2018년 4월 9일
Birdman
2018년 4월 9일
Find Attach file icon, next to the Help button.
Alexis Diaz
2018년 4월 9일
편집: Alexis Diaz
2018년 4월 9일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!