vars2cell

バージョン 1.3.0.0 (2.11 KB) 作成者: Renwen Lin
% PURPOSE: Convert selected variables in matlab workspace to the cell's columns
ダウンロード: 180
更新 2012/9/12

ライセンスの表示

% 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
%=============================================

引用

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

MATLAB リリースの互換性
作成: R2012a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersString Parsing についてさらに検索
タグ タグを追加

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
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