i have to read a text file which contains 50 rows and 2 colums... 1 have to assign the 1st column into one variable and 2nd column to another variable.. what i have to do?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
i have to read a text file consists of numbers which is arranged in 50 rows and two columns ... means in a matrix form 50*2[m*n].. i have to assign the first column to a variable A ... and second column to a variable B... what i have to do???
0 Commenti
Risposta accettata
Rizwana
il 22 Gen 2014
1st you need to import your .txt file from the drop down menu by clicking file on upper corner of your matlab window. Then A = data(:,1); reads 1st coulmn and B=data(:,2); data is the name of .txt file
0 Commenti
Più risposte (1)
Shameer Parmar
il 22 Gen 2014
Data = importdata('<txt filename>');
Column1 = Data(:,1);
Column2 = Data(:,2);
You can also create your own script by putting these command into it OR you can directly use these command by keeping your file into Matlab current directory.
Vedere anche
Categorie
Scopri di più su Low-Level File I/O in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!