zeros of a matrix

조회 수: 2 (최근 30일)
galben
galben 2022년 12월 1일
답변: the cyclist 2022년 12월 1일
I have a matrix and i want to create a column of zeros the size of the matrix.
M=rand(5)
A=zeros(size(M,2))
the error i get is
Index exceeds the number of array elements. Index must not exceed 2.

답변 (2개)

Walter Roberson
Walter Roberson 2022년 12월 1일
You have accidentally created a variable with the name rand or the name size or the name zeros
Also, to create a column of zeros you should be using
A = zeros(1, size(M,2));

the cyclist
the cyclist 2022년 12월 1일
The code you have posted here runs without error.
M=rand(5);
A=zeros(size(M,2));
My best guess here is that you have a variable in your workspace that has the same name as one of these functions: rand, zeros, or size.
I suggest you clear your workspace, rename any variables that have the same name as a MATLAB function, and try again.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by