extracting sub matrix from a cell array
4 ビュー (過去 30 日間)
表示 古いコメント
data: 2 x 1 cell array =
[ 378063 x 12 table]
[ 377840 x 12 table]
I use the following codes to extract sub matrix from data:
array_1=data{1,:};
array_2=array_1{:,3:8};
Is there a way to create the array_2 matrix using only "data" variable without creating array_1 and array_2 ?
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Find more on Matrices and Arrays 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!