필터 지우기
필터 지우기

How to add data in a matrice?

조회 수: 1 (최근 30일)
Philipp Mueller
Philipp Mueller 2016년 9월 12일
댓글: Philipp Mueller 2016년 9월 12일
I have just one input parameter: "Number of rows" How can i create such a matrice with 4 columns and this input data "1,2,3,4;5,6,7,8;9,10..... With a for loop?
F = [1,2,3,4;5,6,7,8;9,10,11,12;13,14,15,16;17,18,19,20;21,22,23,24;25,26,27,28;29,30,31,32];
thank you so much

채택된 답변

Andrei Bobrov
Andrei Bobrov 2016년 9월 12일
without loop:
F = reshape(1:32,4,[])';
  댓글 수: 1
Philipp Mueller
Philipp Mueller 2016년 9월 12일
thx exactly that what i want

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2016년 9월 12일
편집: KSSV 2016년 9월 12일
Why you want to use a loop? you can do it in a single stretch.
if rows are known:
rows = 8 ;
data = 1:32 ;
F = reshape(data,[],rows)' ;
If columns are known
col = 4 ;
data = 1:32 ;
F = reshape(data,col,[])' ;
Note that while converting data into a matrix, the number of elements must not change.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by