transform duration into some visible in the table
Show older comments
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!
Accepted Answer
More Answers (1)
Peter Perkins
on 31 Jan 2019
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
Categories
Find more on Numeric Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!