フィルターのクリア

How to find the minimum length of a cell array

5 ビュー (過去 30 日間)
Joseph Lee
Joseph Lee 2017 年 12 月 10 日
編集済み: Stephen23 2017 年 12 月 11 日
M= {10x107} {10x108} {10x103} {10x105}
how do i find the minimum length among the cells? eg. 103

採用された回答

Matt J
Matt J 2017 年 12 月 10 日
min( cellfun(@(c) size(c,2), M) )

その他の回答 (1 件)

Stephen23
Stephen23 2017 年 12 月 11 日
編集済み: Stephen23 2017 年 12 月 11 日
Simpler and faster:
min(cellfun('size',M,2))

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by