필터 지우기
필터 지우기

creating a matrix of zeros of size of another matrice

조회 수: 83 (최근 30일)
farzad
farzad 2014년 11월 11일
댓글: farzad 2014년 11월 11일
I have code , in which a matrice r as 1*100 matrice.
then It makes make
pp=zeros(1,size(r,2));
I don't know what 2 means , I know that 1 means the number of rows , but only 2 works in this comment
what is it ?
thank you
  댓글 수: 1
per isakson
per isakson 2014년 11월 11일
Answer to the question in the subject line:
B = zeros( size(A) );
and see the documentation on size.

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

채택된 답변

Mikhail
Mikhail 2014년 11월 11일
편집: Mikhail 2014년 11월 11일
So zeros(a1,a2) creates a matrix of zeros with a1 rows and a2 columns, for example:
a=zeros(2,3)
is
a=0 0 0
0 0 0
So code pp=zeros(1,size(r,2)); will create matrix pp with 1 row and size(r,2) columns. As long as size(r,2 ) is the number of columns of matrix r, size of pp will be equal to size of r.
Size(r,1) is number of rows in matrix r
Size(r,2) is number of columns

추가 답변 (0개)

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by