フィルターのクリア

HOW can i create a matrix of pixels positions? (x,y) coordinates

1 回表示 (過去 30 日間)
bay rem
bay rem 2015 年 12 月 12 日
コメント済み: bay rem 2015 年 12 月 13 日
i wanna create 3*3 matrix describes pixels positions i defined m as 3*3: m=zeros(3) and then i simply filled the matrix with x,y coordinates but here the matrix's size became 3*6 ...i really need help please

採用された回答

Walter Roberson
Walter Roberson 2015 年 12 月 12 日
3 x 3 = 9, which is an odd number. Pairs of x and y positions take two items per pair, which is even. You cannot store an whole number of even values in an odd number of slots without having a slot left over.
Perhaps you want
m = cell(3,3);
and then store (for example)
m{2,3} = [x,y];
This would result in a 3 x 3 cell array, each member of which holds two values. This would not be a numeric array.

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by