필터 지우기
필터 지우기

If I have single column vector from 1 to 54 values as given below and I want to divide this column vector into 6 column vector and store it into a matrix how could I do this?? please try to help me out..

조회 수: 1 (최근 30일)
xi=[1;2;3;......;54]

채택된 답변

Ngonidzashe Nedziwe
Ngonidzashe Nedziwe 2017년 7월 9일
for multicolumn array splitting u can use the reshape command in matlab. xi=[1;2;3;4;...;54]; n=6; split=reshape(xi,n,[]);

추가 답변 (1개)

John D'Errico
John D'Errico 2017년 7월 9일
help reshape
Asking such a basic question implies you probably need to read the getting started tutorials.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by