How can I make an array using for loop?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all!
I am trying to prepare a big array by adding all the cells from Time (18x1 cell array) like this -
TimeSeries = [Time{1,1};Time{2,1};Time{3,1};Time{4,1};Time{5,1};...
Time{6,1};Time{7,1};Time{8,1};Time{9,1};Time{10,1};...
Time{11,1};Time{12,1};Time{13,1};Time{14,1};Time{15,1};...
Time{16,1};Time{17,1};Time{18,1}];
But how can I prepare the TimeSeries array without being too manual about it?
The solution doesn't necessarily have to be a for loop approach. Any other approach is welcome! :)
댓글 수: 0
채택된 답변
Sulaymon Eshkabilov
2023년 2월 15일
It is advised to use timetable instead of timeseries(). Therefore, it is straightforward to create timetable using array2timetable(), e.g.:
A =(1:18)';
AS = seconds(rand(size(A))); % Duration
TT = array2timetable(A, 'RowTimes',AS) % TimeTable() with 18 rows and two columns
T = removevars(TT, 'A') % 18 by 1 empty TIMETABLE
% Alt. way to create timeseries is:
B =(1:18)';
TS = timeseries(B)
댓글 수: 5
Sulaymon Eshkabilov
2023년 2월 15일
As now you question is a bit different from the initial one. if the latter one what you want, this is how one can create a cell array with some values:
M=(1:18).';
T= cell(size(M)); % EMpty cell 18-by-1
for ii = 1:length(M)
T{ii}=M(ii); % Cell with elements from M matrix array
end
T
T{:}
Stephen23
2023년 2월 15일
"I was trying to communicate with him because I thought I needed to explain my question a bit more. "
The only thing that accepting an answer communicates is that you are happy with the information given in that answer. Yet in your very first comment you wrote "Thank you for your response but unfortunately, it did not answer my question". Very confusing.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!