Could someone please explain how this function works in defining the matrices
For example,
B=zeros(size(A,1),1); C=eye(size(A));

 채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 1월 22일
편집: Azzi Abdelmalek 2014년 1월 22일

0 개 추천

doc size
doc zeros
doc eye
You can also try an example
>> A=[1 2 3;4 5 6]
B=zeros(size(A,1),1)
C=eye(size(A))
A =
1 2 3
4 5 6
B =
0
0
C =
1 0 0
0 1 0

댓글 수: 2

Priya
Priya 2014년 1월 22일
Thank you.
Priya
Priya 2014년 1월 22일
The size of matrix A (in the model) is 14x14 B= 14x2 C= 14x14 D= 14x2
Now I need to how to use the function below to make the size of matrix B as 14x2
B=zeros(size(A,1),1)
Please drop your answers.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

질문:

2014년 1월 22일

댓글:

2014년 1월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by