Easiest way to skip a few lines and then read data from this text file ( x and y) to draw a plot.
25 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Malay Arya
il 22 Gen 2020
Commentato: Star Strider
il 24 Gen 2020
I have attached the file I'm trying to do this for.
Thanks a lot!
0 Commenti
Risposta accettata
Star Strider
il 22 Gen 2020
Modificato: Star Strider
il 22 Gen 2020
filename = '6in_nomass_5.txt';
Data = dlmread(filename, '\t', 6, 0);
There are others, such as readmatrix that are likely even easier, however you did not state the release you are using, so dlmread is a safe option.
EDIT — To draw the plot:
figure
plot(Data(:,1), Data(:,2))
grid
2 Commenti
Più risposte (1)
Jesus Sanchez
il 22 Gen 2020
From yout MATLAB: Home -> Variable -> Import data.
From there you can also create a function that will allow you to import future files.
Vedere anche
Categorie
Scopri di più su Startup and Shutdown 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!