フィルターのクリア

converting vector to matrix

3 ビュー (過去 30 日間)
shivakumar
shivakumar 2013 年 5 月 23 日
Am beginner to this please tell me is there any function to convert vector to matrix.
vec=[0:4.80314960629921e-6:.00061]
which gives values from column 1 to column 128. i want to convert it to a matrix of 8 rows 16 columns.

採用された回答

James Tursa
James Tursa 2013 年 5 月 23 日
reshape(vec,16,8)'

その他の回答 (2 件)

David Sanchez
David Sanchez 2013 年 5 月 23 日
vec=[0:4.80314960629921e-6:.00061];
my_matrix=zeros(8,16);
for k=1:8
my_matrix(k,:) = vec(k*16-15:k*16);
end
  1 件のコメント
shivakumar
shivakumar 2013 年 5 月 23 日
tnx it works

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


Brwa
Brwa 2013 年 5 月 23 日
Both of David Sanchez and james tursa have done it well, but in the case of james tursa he miss type i think he should type as
reshape(vec,8,16)
  1 件のコメント
shivakumar
shivakumar 2013 年 5 月 23 日
yeah you are right it produces 16 rows & 8 col.... tnx a lot

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

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by