Select specific values inside a cell
    4 ビュー (過去 30 日間)
  
       古いコメントを表示
    
採用された回答
  OCDER
      
 2018 年 9 月 12 日
        %Just making a demo cell array
A = cell(4,6);
for j = 1:numel(A)
    A{j} = randi(100, 1, 31);
end
%Use for small sizes like 4x6 cell array
C = cellfun(@(x) x(end), A);
%Use for large sizes like 100x600 cell array
B = zeros(size(A));
for j = 1:numel(A)
    B(j) = A{j}(end);
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
				Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

