Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

exclusion of some rows from text files

2 visualizaciones (últimos 30 días)
prabhanshu gupta
prabhanshu gupta el 3 de Jul. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
i have 200 text files which contains data in 800 rows but some empty cells are there in few rows. I want text files as an ourtput which not contains empty rows kindly help me to code programme in the matlab for this problem.
if it is possible kindly help me to code the programme which execute all files in same time.

Respuestas (1)

Julie
Julie el 4 de Jul. de 2019
Read in the text files using fscanf
Delete the empty rows in matlab, if your data is numbers which have zero rows I usually use
Data(sum(Data.^2,2),:)=[];
Write the files using fprintf

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by