ws2struct

Stores current workspace in a structure array.
1.2K 次下载
更新时间 2007/2/23

查看许可证

% [s] = ws2struct(varargin)
%
% Description : This function returns a structure containing variables
% of the current workspace.
% __________________________________
% Inputs :
% re (string optional) : a regular expression matching the variables to
% be returned.
% Outputs :
% s (structure array) : a structure containing all variables of the
% calling workspace. If re input is specified,
% only variables matching re are returned.
% Examples :
% >> allmyvariables = ws2struct
% allmyvariables =
% a: {4x1 cell}
% ans: [1x1 struct]
% pm: [1x48 struct]
% res: [2x24 struct]
% results: {{1x3 cell} {1x3 cell}}
% stims: {[1x1 struct] [1x1 struct]}
% train_results: [1x48 struct]
%
% >> only_starting_with_res = ws2struct('res.*')
% only_starting_with_res =
% res: [2x24 struct]
% results: {{1x3 cell} {1x3 cell}}
%
% _____________________________________
% See also : struct2ws ; regexp
%
% Maximilien Chaumon v1.0 02/2007

引用格式

Maximilien Chaumon (2024). ws2struct (https://www.mathworks.com/matlabcentral/fileexchange/14067-ws2struct), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R14
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Workspace Variables and MAT-Files 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0