When the array has only a few elements, the dlmread command works but in the case of a non-high-order array. I would like to have access to the array columns.
When the array has only a few elements, the dlmread command works but in the case of a non-high-order array. I would like to have access to the array columns.
Try to use tblread
instead of dlmread
!
You could read files with this structure:
Latitude » Longitude » City
42.3584 » -71.0598 » Boston
40.4167 » -3.7003 » Madrid
41.8955 » 12.4823 » Rome
And you can still use delimiters to find the right positions!
Source for research and understanding of the command quoted!