Create an array of empty durations
이전 댓글 표시
Is there a way to create an array of durations similar to the way I can create an array of strings, zeroes etc. i.e.
str = strings(size, 0)
i tried something like
dur = durations(size, 0)
but that does not work.
채택된 답변
추가 답변 (2개)
Jan
2017년 11월 21일
I asssume that https://www.mathworks.com/help/matlab/ref/nat.html: "Not-a-Time" does not help directly. What about:
duration(NaN(size));
댓글 수: 1
Karol Ondrejkovic
2022년 6월 17일
For me duration(strings(size)) works well.
Example:
duration(strings([2,3]))
Another way to create an empty array of duration objects is to use the empty function for the class.
d = duration.empty(5, 0)
댓글 수: 2
Raphaël Nussbaumer
2021년 4월 21일
Nice one! Much better. It would be nice to be able to do:
duration.empty(size(X))
with X another matrix od any size.
Thanks anyway!
As long as X is empty you can.
X = zeros(1, 2, 3, 4, 0);
D = duration.empty(size(X));
size(D)
An empty array in MATLAB must have the size in at least one dimension equal to 0 (as per the documentation for the isempty function) so something like this wouldn't work as the error message clearly states.
X = 1:10;
D = duration.empty(size(X))
카테고리
도움말 센터 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!