MATLAB: How to extract datadatatransposeMy data consists of 181 rows and 91 columns like (size(gather) 181 91). I want to extract like 181 rows and first 19 columns (column 1 to 19) with new dimensions (size(gather) 181 19). How I can do it? Best AnswerA = rand(181,91) ; iwant = A(:,1:19) ; Related QuestionHow to read from a text filePrinting particular rows and columnsHow to delete rows of the character ” from a column or column vectorHow to reduce rows to columnWhat does this symbols meanHow to export data from matlab to excel as a column
Best Answer