transform duration into some visible in the table
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello,
i got a cell array which is on the picture shown.
In this array is 'duration' shown and not the value. Why this happend and how can i avoid this problem?
Thank you for help!
댓글 수: 0
채택된 답변
Ollie A
2019년 1월 30일
Duration just refers to the format of the data stored in each cell array.
You could convert your cell to a table, which might handle your data in a format you prefer:
T = cell2table(yourcell);
Or you could try extracting each cell and converting it to the duration in seconds:
for x = 1:length(yourcell)
M(x) = seconds(yourcell{x});
end
I hope this helps!
추가 답변 (1개)
Peter Perkins
2019년 1월 31일
You have a cell array, each cell of which contains a scalar duration. That explains the Variable Editor display you are seeing. You should figure out how you got there, because that's not a good way to store durations. You certainly can create a table out of that, but more fundamentally, you should just create a duration vector. Here's the best way to do that:
>> c = {seconds(1); seconds(2); seconds(3)}
c =
3×1 cell array
{[1 sec]}
{[2 sec]}
{[3 sec]}
>> d = vertcat(c{:})
d =
3×1 duration array
1 sec
2 sec
3 sec
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!