How to convert a column vector into an image

4 ビュー (過去 30 日間)
Boni_Pl
Boni_Pl 2019 年 5 月 22 日
コメント済み: Boni_Pl 2019 年 5 月 23 日
Hello sir
I have an vector of size (258x1). Now I want to convert it into a square matrix (101x101) i.e. in 2D image in matlab.
Please help me.
  7 件のコメント
Walter Roberson
Walter Roberson 2019 年 5 月 23 日
What data type is the vector, such that it has two values per entry ?
Boni_Pl
Boni_Pl 2019 年 5 月 23 日
if A=[1;2;3;6;4;8;9] and coordinates are C=[3 4;1 2;5 6;4 5;5 3;1 6;6 6] so if a matrix is B=zeros(6, 6) then how can I replace each elements of A vector with B matrix using the coordinates points

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

採用された回答

Walter Roberson
Walter Roberson 2019 年 5 月 23 日
nrow = 6; ncol = 6;
B = full( sparse(C(:,1), C(:,2), A, nrow, ncol) );
Or
nrow = 6; ncol = 6;
B = accumarray(C, A(:), [nrow ncol]);
  1 件のコメント
Boni_Pl
Boni_Pl 2019 年 5 月 23 日
Thank you sir

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

その他の回答 (0 件)

カテゴリ

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

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by