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!