vars2cell

% PURPOSE: Convert selected variables in matlab workspace to the cell's columns
180 descargas
Actualizado 12 sep 2012

Ver licencia

% PURPOSE: Convert selected variables in matlab workspace to the cell's columns
% -----------------------------------------------------------------------------
% SYNTAX:
% (1) vars2cell(var1, var2)
% (2) vars2cell(var1, var2, newvarnamelist)
% -----------------------------------------------------------------------------
% OUTPUT:
% (1) cellA: NxM --->a cell containing M columns. Each column include
% a head and its body.

% -----------------------------------------------------------------------
% INPUT:
% (1) var1, var2..., the variables (var1, var2, .., varM) in matlab workspace s been transform to columns of the cell
% (2) newvarname: 1xM ---> M string as new head for the column.

% -----------------------------------------------------------------------
% LIBRARY:
% -----------------------------------------------------------------------
% SEE ALSO: cell2vars,
% -----------------------------------------------------------------------
% REFERENCE: assigni, eval
% -----------------------------------------------------------------------
% written by:
% Lin Renwen
% <linrenwen@gmail.com>

% Version 1.0 [2012-9-8 13:47:28]
% Version 1.1 [2012-9-12 20:46:04] Modified the example. Thanks for Simon's suggestion!

%=============================================
% EXAMPLE:
% > name = {'Simon', 'Jimmy', 'Cooper'}';
% > grade = {99, 68, NaN}';
% > vars2cell(name, grade)
% ans =
% 'name' 'grade'
% 'Simon' [ 99]
% 'Jimmy' [ 68]
% 'Cooper' [ NaN]
%
% > vars2cell(name, grade,{'NAME','GRADE'})
% ans =
% 'NAME' 'GRADE'
% 'Simon' [ 99]
% 'Jimmy' [ 68]
% 'Cooper' [ NaN]

% END OF EXAMPLE
%=============================================

Citar como

Renwen Lin (2024). vars2cell (https://www.mathworks.com/matlabcentral/fileexchange/38119-vars2cell), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2012a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre String Parsing en Help Center y MATLAB Answers.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.3.0.0

:)Thank you so much, Simon. I have modified the example and update the zip file.

1.2.0.0

Modify the example. Thank you, Simon!

1.0.0.0