필터 지우기
필터 지우기

Matrix manipulation, turning a column vector into a square matrix?

조회 수: 12 (최근 30일)
Kieran
Kieran 2013년 10월 15일
편집: Nishitha Ayyalapu 2013년 10월 15일
say i have a matrix with things in it, and things are each column vectors 10000 in length,
data = [ thing1(:) thing2(:) thing3(:) thing4(:) ]
how can i manipulate data so that i can turn each of these things into separate outputs that are 100*100 in size
thanks

채택된 답변

Image Analyst
Image Analyst 2013년 10월 15일
thing100x100 = rehape(thing1, [100, 100]); % Reshape 10,000 elements into 100x100

추가 답변 (1개)

Nishitha Ayyalapu
Nishitha Ayyalapu 2013년 10월 15일
편집: Nishitha Ayyalapu 2013년 10월 15일
This should do the job if you have four column vectors:
data = [reshape(data(:,1),100,100) reshape(data(:,2),100,100)...
reshape(data(:,3),100,100) reshape(data(:,4),100,100)]
and each of those things would be, for example:
thing1 = reshape(data(:,1),100,100);

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by