How can I create a structure array for two files?
7 ビュー (過去 30 日間)
古いコメントを表示
I want to add the following into a structure array
the name of structure array is ECGData as follows
conssists of the following
How can I add the two fields(Data as a matrix array & Labels as cell array) into ECGData
6 件のコメント
Rik
2020 年 5 月 26 日
What is your question? You want a struct with these two fields, and you have a struct with these two fields.
採用された回答
Rik
2020 年 5 月 26 日
You can treat fields of a struct just like any other variable:
ECGData=struct;%create empty struct, this isn't mandatory
ECGData.Data=rand(162,65536);
ECGData.Labels=cell(162,1);
1 件のコメント
Stephen23
2020 年 5 月 27 日
Dhiyaa Al-Shammari's incorrectly posted and accepted "answer" moved here:
Thanks a lot dear brother.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!