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!