フィルターのクリア

how to not exceed limits of the matrix column

1 回表示 (過去 30 日間)
minion001
minion001 2017 年 9 月 10 日
編集済み: José-Luis 2017 年 9 月 10 日
for eg, i have matrix A=[4 6 3 8 9 5;1 7 2 4 3 4;7 8 5 6 1 2; 1 8 4 7 10 6;] and i use a for loop to go across the column, for i =1:col .... how do i stop it before getting error of matrix exceeds dimensions

採用された回答

José-Luis
José-Luis 2017 年 9 月 10 日
your_array = rand(10,16)
%looping through all columns
for ii=your_array
%ii now contains all values in column
end
  4 件のコメント
minion001
minion001 2017 年 9 月 10 日
i did that but how do i stop getting error when im at column 6 and its searching for elements next to it, where there isn't any elements present, resulting in matrix exceeds dimensions
José-Luis
José-Luis 2017 年 9 月 10 日
Columns 1-5 of what? You are not indexing into A and that is the array whose columns you are looping on.
Please use the debugger. Place a breakpoint in the line that's giving you grief and look at the arrays you are indexing into.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by