after concatenation of matrix of different dimension how to extrat value of particluar row and column

2 ビュー (過去 30 日間)
m1=rand(10,2); m2=rand(10,3); m3=rand(10,6); m={m1,m2,m3}; if i want m2(3,2) i will get value, but using m i want to get m2(3,2), is this possible.

採用された回答

Ameer Hamza
Ameer Hamza 2018 年 5 月 17 日
編集済み: Ameer Hamza 2018 年 5 月 17 日
Acces it like this
m{2}(3,2)
Refer here and here for further details about cell array indexing.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by