Generate n-dimensional array: problem with 1D

조회 수: 12 (최근 30일)
Xiaohan Du
Xiaohan Du 2017년 11월 8일
댓글: Star Strider 2017년 11월 8일
Hi all,
Imagine I'd like to generate random dimensional zeros matrix, I can do:
K>> zeros(2, 2)
ans =
0 0
0 0
K>> zeros(2, 2, 2)
ans(:,:,1) =
0 0
0 0
ans(:,:,2) =
0 0
0 0
and so on. However, for 1D case, I'll have to use:
K>> zeros(2, 1)
ans =
0
0
I cannot use zeros(2) directly, meaning I have to deal with 1D case separately. Any idea how to make it smarter?

채택된 답변

Star Strider
Star Strider 2017년 11월 8일
That is as ‘smart’ as it gets, since it cannot read your mind. If you already have a vector and you want a zeros vector to match it, you can use the size of the original vector (or any dimension array) to create it:
x = 1:2;
v = zeros(size(x));
  댓글 수: 2
Xiaohan Du
Xiaohan Du 2017년 11월 8일
For example, I know the dimension of the zeros matrix I'd create, say for 2D, it's
zeros(2, 3)
for 3D, it's
zeros(2, 3, 4)
for 4D, it's
zeros(2, 3, 4, 5)
but for 1D, if I want a 2-by-1 matrix, I cannot write
zeros(2)
because this gives me a 2-by-2 matrix. I'll have to write
zeros(2, 1)
I understand that zeros(2, 1) also exists in 2D, but it does not completely follow the rules for nD.
Star Strider
Star Strider 2017년 11월 8일
That is the default behaviour of the zeros function. You can always write your own single-argument function to create a column vector of zero elements:
myzeros = @(n) zeros(n,1);

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by