フィルターのクリア

how to access individual values form a matrix

1 回表示 (過去 30 日間)
PK
PK 2012 年 9 月 27 日
hello all in my proj am confused how to access each element in a matrix one after the other continuously in a large data for ex A=[1 2 3 4 5] is a matrix so first i want to take 1 next 2 and 3 and 4 and so on for some 1000 values so can some one suggest a path to do this

採用された回答

Wayne King
Wayne King 2012 年 9 月 27 日
You just access them by their index
A(1), A(2), etc
If the matrix is MxN, the linear indices are columnwise, in other words
A = rand(5,5);
A(1:5) % gives you the first column
A(6:10) % gives you the second

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by