append sections of column by n rows to subsequent column

조회 수: 4 (최근 30일)
Kevin Mikami
Kevin Mikami 2021년 1월 5일
편집: Kevin Mikami 2021년 1월 5일
i have a 1032x1 single column matrix where i need to move every 43 rows to the next column and so on, with the first section to be appended starting at row 44
many thanks,

답변 (1개)

Ameer Hamza
Ameer Hamza 2021년 1월 5일
You can use reshape()
v; % 1032x1 vector
M = reshape(v, 43, [])
  댓글 수: 1
Kevin Mikami
Kevin Mikami 2021년 1월 5일
편집: Kevin Mikami 2021년 1월 5일
ds_ge = tabularTextDatastore(location,'FileExtensions',{'.csv'},'SelectedVariableNames',...
{'Network'});
geData=readall(ds_ge);
rgeData=reshape(geData, 43, [])
Error using tabular/reshape (line 215)
Undefined function 'reshape' for input arguments of type 'table'.
Error in collate_don_test (line 30)
rgeData=reshape(geData, 43, [])

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by