Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
blitzer(blitzer(:,4)<0.5,5)たとえば、MATLAB で変数のリスト (またはワークスペース内のすべての変数) のようなコマンドを実行したいと思います。
blitzer(blitzer(:,4)<0.5,5)
なのでコメットやダッシャーなどでやってみたいと思います…
who関数を使用します。
who
s = who; for i = 1:length(s) temp = eval(s{i}); answer{i} = temp(temp(:,4)<0.5,5); end