Borrar filtros
Borrar filtros

How to Import unformatted text data?

7 visualizaciones (últimos 30 días)
Maddila
Maddila el 4 de Oct. de 2012
Below I have attached a text file , how to read and separate the values
[
  4 comentarios
Matt Kindig
Matt Kindig el 4 de Oct. de 2012
CAE is a well-known defense contractor. So, yeah, probably.
Maddila
Maddila el 5 de Oct. de 2012
No ,,This is just reference text file,,i have to program it mr Jan Simon,,

Iniciar sesión para comentar.

Respuesta aceptada

Matt Kindig
Matt Kindig el 4 de Oct. de 2012
Hi Maddila,
This looks like a rather non-uniform format, so your best bet might be to read in the full file, and then separate it out using regexp. It looks like splitting by square brackets might do the trick. Something like this:
str = fileread('your/file/name'); %read in file in full
parts = regexp(str, '\[|\]', 'split'); %split by brackets
%then you can extract information from the individual split out sections.

Más respuestas (0)

Categorías

Más información sobre Contour Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by