Vous suivez désormais cette soumission
- Les mises à jour seront visibles dans votre flux de contenu suivi
- Selon vos préférences en matière de communication il est possible que vous receviez des e-mails
I have often needed to generate data files to export from Matlab for other programs with headers to explain the contents of the columns. This simple routine extends the function of the MATLAB csvwrite function to add column headers
Please refer the help for csvwrite for a detailed description of all the parameters but this a simple example of how to use the function:
>> headers = {'A','B','C'}
headers =
'A' 'B' 'C'
>> data = [1,2,3;4,5,6]
data =
1 2 3
4 5 6
>> csvwrite_with_headers('test.csv',data,headers)
Citation pour cette source
Keith Brady (2026). CSV with column headers (https://fr.mathworks.com/matlabcentral/fileexchange/29933-csv-with-column-headers), MATLAB Central File Exchange. Extrait(e) le .
Informations générales
- Version 1.0.0.0 (1,75 ko)
Compatibilité avec les versions de MATLAB
- Compatible avec toutes les versions
Plateformes compatibles
- Windows
- macOS
- Linux
| Version | Publié le | Notes de version | Action |
|---|---|---|---|
| 1.0.0.0 |
