How to remove many NAN rows

조회 수: 2 (최근 30일)
Raquel Fernández Sánchez
Raquel Fernández Sánchez 2018년 4월 9일
답변: Raquel Fernández Sánchez 2018년 4월 12일
Hello. I´m new to Matlab and I can´t solve the next syntax problem. That is: I have 4 files (.dat). Each one contents a variable number of rows but all of them have 6 columns. What I want is removing 21st rows of each document (which are NAN, by the way) and join them into one file. Can you help me?
Thanks in advance

채택된 답변

Gayatri Menon
Gayatri Menon 2018년 4월 12일
Hi,
Hope the below example helps.
Let the matrix A=[1 2 3;4 5 6;NaN,NaN,NaN].If you want to remove the 3rd row of this matrix, you could use the following command
A(3,:)=[];
In order to concatenate the matrices vertically, 'vertcat' command can be used.
Please refer the below documentation on vertcat:
Thanks

추가 답변 (1개)

Raquel Fernández Sánchez
Raquel Fernández Sánchez 2018년 4월 12일
Thanks a lot Gayatri.Vertcat command successfully solves the concatenate's problem. Im relation to removing rows. Could I write A(1:21,:)=[]; in order to delete a range of rows(from 1 to 21)?

카테고리

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