How to transpose multiple rows into one column?

조회 수: 12 (최근 30일)
Jürgen Duchenne
Jürgen Duchenne 2020년 5월 5일
편집: Surafel 2022년 9월 3일
Dear all,
I have an Excel sheet with a data matrix. It's nummeric data; 18 columns wide, each 200 rows long. I would like Matlab to read the Excel file, and to transpose each of the rows below the previous one, in one single column. The end result should be 1 column with 3600 rows. It would be great if Matlab would save this column in a new txt or csv file.
Matlab info: I am using Matlab R2017b
Thanks for your help,
Jürgen

답변 (2개)

KSSV
KSSV 2020년 5월 5일
num = xlsread(myfile) ;
data = num(:) ;
Read about fprintf, save, dlmwrite, to write the data into your required file.

Surafel
Surafel 2022년 9월 3일
편집: Surafel 2022년 9월 3일
num = xlsread(Your file Location) ;
Transpose = num'
data = Transpose(:) ;

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by