Error- Assignment has more non-singleton rhs dimensions than non-singleton subscripts?
Mostra commenti meno recenti
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 Commenti
Birdman
il 9 Apr 2018
Can you share your data?
KSSV
il 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
il 9 Apr 2018
Your code is already shared. Your txt file is needed.
Alexis Diaz
il 9 Apr 2018
Birdman
il 9 Apr 2018
Find Attach file icon, next to the Help button.
Alexis Diaz
il 9 Apr 2018
Modificato: Alexis Diaz
il 9 Apr 2018
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!