EXTRACT THE DISPLAYED COLUMN VECTORS INTO TABLE AND .CSV FILE
이전 댓글 표시
Hi everyone, I want to extract all the output numbers into a .csv table.
A = table2array(Output)
A(1,:) = [] %delete first row of the double column
for i = 1:20
B = A(:,i);
x = unique(B);
N = numel(x);
count = zeros(N,1);
for k = 1:N
count(k) = sum(B==x(k));
end
disp([ x(:) count ]);
end
I get 2 errors:
1) For the """"disp([ x(:) count ]);"""" I only get in the output the numbers 1 and 0 of the last column of the tabe A, it doesn't maintain the columns before.


2) How should I write the script line in order to get a table and a .csv at the end for the """count""" column vectors displayed??
Thank you a lot in advance for your help guys!!
댓글 수: 5
Walter Roberson
2020년 1월 2일
It would help if we had some sample content for Output
Walter Roberson
2020년 1월 2일
The output appears to be correct to me. You have
for i = 1:20
%...
count = zeros(N,1);
%...
end
so you create a new count array for every iteration of the loop. The result at the end is going to be just the value you last assigned to it, reflecting the array newly created for i = 20.
Walter Roberson
2020년 1월 2일
for i = 1:20
B = A(:,i);
x = unique(B);
N = numel(x);
for k = 1:N
count(x(k)+1, 1) = x(k);
count(x(k)+1, k+1) = sum(B==x(k));
end
end
disp(count)
This relies on the values in A being non-negative integers.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
