extracting sub matrix from a cell array

6 次查看(过去 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 ?

采纳的回答

darova
darova 2021-8-1
编辑:darova 2021-8-1
Try
data1 = data{1}(:,3:8)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrices and Arrays 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by