cell2file

cell2files writes cells of a cellarray (both numeric and text ones) to a file

이 제출물을 팔로우합니다

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);

인용 양식

Luca Cerone (2026). cell2file (https://kr.mathworks.com/matlabcentral/fileexchange/17954-cell2file), MATLAB Central File Exchange. 검색 날짜: .

도움

도움 받은 파일: str2file

일반 정보

MATLAB 릴리스 호환 정보

  • 모든 릴리스와 호환

플랫폼 호환성

  • Windows
  • macOS
  • Linux
버전 퍼블리시됨 릴리스 정보 Action
1.0.0.0

Bug fix:
now it doesn't write delimiter after last element and doesnt write an EndOfLine
after last Row.