How do I convert a cell into numeric array?
이전 댓글 표시
Good Day everyone.
I have a cell array (1 x 300) which each cell contain 30 x 3 double array as illustrated below.

each of double array contain 30 x 3 data that i wanted to convert to numeric array instead of being saved in a cell array.

Previously, I did convert them manually. Is there anyone having idea how to convert with a code? I have bunch of them that takes longer time by doing it manually.
I have tried a code as below, but useless. can any experts help me on this? Much thanks!
for i = 1:300
for j = 1 : 300
Walk{j} = str2double(W(i));
end
end
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!