removing a column from an array of char and cell type?

조회 수: 2 (최근 30일)
aditya kumar sahu
aditya kumar sahu 2016년 11월 13일
댓글: Jan 2016년 11월 16일
suppose i have a char matrix 'c' of size (256*8) all are 8 bit binary vaues. i want to remove the first column of the array and store the remaining (256*7) size matrix in another char matrix 'c1'. and how to do same thing for cell array Thank you for your help in advance.
  댓글 수: 1
Jan
Jan 2016년 11월 16일
These are the basics of Matlab and explained exhaustively in the Getting Started chapters of the documentation. Please read this, because it is more efficient than asking the forum for all details of Matlab. Thanks.

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

채택된 답변

the cyclist
the cyclist 2016년 11월 13일
Same, regardless of type:
c1 = c(:,2:end)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by