array2str(A,Delimit​er)

This function creates a delimiter-separated list (string) of the rows in the array A.

Ahora está siguiendo esta publicación

Function Description:
This function creates a delimiter-separated list (string) of the rows in the array A.

AUTHOR: Sugato Ray | Created on: 25-APR-2017 | ray.sugato[at]gmail.com

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
PLEASE ACKNOWLEDGE THE AUTHOR IF YOU USE THIS CODE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

INPUT:
A = array
Delimiter = ',' is default. => This creates a CSV String.
The user could choose any characher as the delimiter.

OUTPUT:
S = delimiter separated list (string) of the rows of A.

EXAMPLE:
S = array2str(A,Delimiter);

Citar como

Sugato (2026). array2str(A,Delimiter) (https://es.mathworks.com/matlabcentral/fileexchange/64100-array2str-a-delimiter), MATLAB Central File Exchange. Recuperado .

Categorías

Más información sobre Characters and Strings en Help Center y MATLAB Answers.

Información general

Compatibilidad con la versión de MATLAB

  • Compatible con cualquier versión

Compatibilidad con las plataformas

  • Windows
  • macOS
  • Linux
Versión Publicado Notas de la versión Action
1.0.0.0

Updated description.