Help needed rearranging data into a matrix
조회 수: 2 (최근 30일)
이전 댓글 표시
I am importing data from a txt file that has a column list of values. I would like to populate a matrix with these values in a looped way so that the matrix fills each column in a row with consecutive values from the txt list, then moves to the next row to fill each column with the next set of values, and so on. I need this to work with any number of values and matrix size, so that if there are a total of m*n values in the column list, the matrix produced will be of size m x n.
The data is read from a txt file comprising 4 columns of information, of which I am only interested in the 4th. The order of population is critical as two of the list columns give x & y spatial coordinates that are associated with each of the values in the 4th column.
Currently my code looks like this:
W = importdata('307_6_5.txt',' ',8);
hor_el = 6;
ver_el = 5;
MODE = zeros(ver_el+1, hor_el+1);
for k = 1:(hor_el+1)*(ver_el+1)
for i = 1:ver_el + 1;
for j = 1:hor_el + 1;
MODE(i,j) = W.data(k, 4);
end
end
end
I know this will be embarrassingly simple for someone who knows what they are doing but unfortunately my Matlab skills are still very poor. Any help would be much appreciated.
Thankyou.
댓글 수: 2
Babak
2013년 5월 6일
can you give an example of how the .txt file and how the corresponding matrix look like? Did you try textscan()?
채택된 답변
Dr. Seis
2013년 5월 6일
편집: Dr. Seis
2013년 5월 6일
You appear to be overwriting MODE for each k such that, at the end of the for loops, each element in MODE is equal to the last data value. What you may need to do is to create something for determining the row/column indices associated with each k. For example:
W = importdata('307_6_5.txt',' ',8);
hor_el = 6;
ver_el = 5;
rowIDX = 1;
colIDX = 1;
MODE = zeros(ver_el+1, hor_el+1);
for k = 1:(hor_el+1)*(ver_el+1)
MODE(rowIDX,colIDX) = W.data(k, 4);
colIDX = colIDX+1;
if colIDX > (hor_el + 1)
rowIDX = rowIDX+1;
colIDX = 1;
end
end
If you understand the way that works, then you should be able to replace all that with something that has the same effect but with less typing:
W = importdata('307_6_5.txt',' ',8);
hor_el = 6;
ver_el = 5;
MODE = reshape(W.data(:,4),hor_el+1,ver_el+1)';
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Import and Export에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!