フィルターのクリア

How many variables in workspace

74 ビュー (過去 30 日間)
Marco Castelli
Marco Castelli 2012 年 12 月 28 日
コメント済み: Tobias Kern 2021 年 4 月 9 日
Hi, I need a function how return the number of variables in the Workspace. Does Someone knows if this function exists?
thanks Marco
  3 件のコメント
Image Analyst
Image Analyst 2012 年 12 月 28 日
I couldn't think of any reason either. I figured it must be something like fdep, though somewhat different - for variables instead of functions and classes.
Walter Roberson
Walter Roberson 2012 年 12 月 28 日
編集済み: Walter Roberson 2012 年 12 月 28 日
From the title I thought perhaps the question was going to be what the maximum number of variables in a workspace is. The answer to that appears to be 65533.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2012 年 12 月 28 日
編集済み: Image Analyst 2012 年 12 月 28 日
variablesInCurrentWorkspace = who
numVariables = length(variablesInCurrentWorkspace)
  1 件のコメント
Tobias Kern
Tobias Kern 2021 年 4 月 9 日

サインインしてコメントする。

その他の回答 (1 件)

JP  Hadden
JP Hadden 2017 年 3 月 15 日
For the responders, I have a situation where this is useful... we have an RSA which spits out matlab files where there can be a different number of data variables depending on the measurement. It 's useful to know how many there are to be able to analyse them.
  1 件のコメント
Walter Roberson
Walter Roberson 2017 年 3 月 15 日
編集済み: Walter Roberson 2017 年 3 月 15 日
What is an "RSA" in this context?
Does it output MATLAB code? If so then could it be modified to output the variables as structure members instead of independent variables?
If it outputs .mat files then those can be load()'d with an output argument, producing a structure.
With a structure, you can ask about the length of the fieldnames.
If you are working with dynamically generated full variable names, you probably want to avoid that.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by