フィルターのクリア

make a logical matrix from an available array of numbers.

1 回表示 (過去 30 日間)
Furqan Haider
Furqan Haider 2014 年 10 月 8 日
コメント済み: Guillaume 2014 年 10 月 8 日
i get an array of numbers in which minimum number is 1 and maximum number is 7 , total elements in that array are 6, e.g.
A=[2 5 6 2 7 4]
I want to make a logical matrix of order 7*6 in such a way that there is only one '1' in each column and all other entries of that column are '0'. Now the numbers in array A indicate the row number at which binary '1' is to be placed. e.g. for above provided array, my logical matrix would be:
b =
0 0 0 0 0 0
1 0 0 1 0 0
0 0 0 0 0 0
0 0 0 0 0 1
0 1 0 0 0 0
0 0 1 0 0 0
0 0 0 0 1 0
kindly generalize me this program. for any random array 'A'.
Thank you.

採用された回答

Guillaume
Guillaume 2014 年 10 月 8 日
cols = 1:numel(A);
B = zeros(max(A), numel(A));
B(sub2ind(size(B), A, cols)) = 1
  2 件のコメント
Furqan Haider
Furqan Haider 2014 年 10 月 8 日
if there is no 7 in array A, then your code gives me 6*6 matrix, which I dont want. I need 7*6 matrix at any cost, whether there is 7 in the array or not.
Kindly suggest, and thank you.
Guillaume
Guillaume 2014 年 10 月 8 日
Well, it's trivial to modify my example. Replace 2nd line with:
B = zeros(7,6);
You could have worked that out for yourself.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by