Vector against a single value
古いコメントを表示
I have a data set a which contains 100 structures. All the structure contains two fields timevector(8192x1) and power(1x1).
TimeVector=zeros(length(a(1).timevector*length(a)),1)
Power=zeros(length(a(1).Powerdb),1)
for i=1:length(a)
Time=a(i).timevector;
Power=vertcat(a(i).Powerdb);
end
Now i need to make a data set , which should be as the attached picture format.
I cant seem to concatenate Timevector as i want to...

Thanks,
1 件のコメント
Turlough Hughes
2019 年 10 月 31 日
Probably best to just upload the data set.
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で LaTeX についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!