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
cell2file writes a cell array of strings, or number into a file
==This function has been obtained modifyng the file str2file.m I found in the FEX.==
Last Modified: 2008/01/09 (yyyy/mm/dd).
Syntax: cell2file(fid,cell,....) where ... is in the format PARAMETER, VALUE
Possible Parameter are: 'EndOfLine'
to choose how to end lines (ex:\r\n),
default: \n)
'Delimiter' to choose the delimiter beetween two value of the same row,
default: ';'
cell2str can write to a file both sting and numeric format.
You just have to pass the handle to the file
(so that you can choice your opening attribute) and the cellarray.
Ex:
A={'prova',[1],'prova';
[3],'txt',[4]};
fid=fopen('prova.log','a+');
cell2file(fid,A,'EndOfLine','\r\n');
fclose(fid);
Citation pour cette source
Luca Cerone (2026). cell2file (https://fr.mathworks.com/matlabcentral/fileexchange/17954-cell2file), MATLAB Central File Exchange. Extrait(e) le .
Remerciements
Inspiré par : str2file
Informations générales
- Version 1.0.0.0 (1,56 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 | Bug fix:
|
