Reputation: 801
How do I read a text file that contains a delimited part, like in a CSV, from a specific line (that is, where the delimited part begins)? The file looks structurally like this:
[header]
1 2 3
4 5 6
[...]
Upvotes: 1
Views: 807
Reputation: 801
I already found this solution:
A=readdlm("filename", ' ', skipstart=X)
Upvotes: 1