Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

How to read *.txt using Matlab?

Status
Not open for further replies.

aboozar.hamidipoor

Full Member level 3
Joined
Dec 21, 2004
Messages
152
Helped
17
Reputation
34
Reaction score
7
Trophy points
1,298
Location
Iran
Activity points
1,623
hi all;
is there any possibility to read *.txt files with MATLAB and then store in it after processing ?
thx.
 

Re: read *.txt by matlab

Your question is not clear.
.txt is a stupid default windows extention. It is used to either to save files
with numbers or text.
If the file has numbers (the same number of fields per line), than rename it
to .dat and just use the load command, e.g.
load your_file.dat

For saving, red the help of "save"
 
Re: read *.txt by matlab

use this code and if u have any problem post it
i=sprintf('%s',x,'.txt'); % read the name of text file (x=text file name).
H=textread(i,'%s','delimiter','\n','whitespace',''); read text file

i think that will help u
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top