Info

This question is locked. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Help me to solve

조회 수: 40 (최근 30일)
N/A
N/A 2024년 10월 30일 7:33
Locked: John D'Errico 2024년 10월 30일 12:30
Use the eye command to create the array E shown on the left below. Then use the colon to address elements in the arrays and the eye command to change E to match the array shown on the right.
1 0 0 0 0 0
0 1 0 0 0 0
E = 0 0 1 0 0 0
0 0 0 1 0 0
0 0 0 0 1 0
0 0 0 0 0 1
1 0 0 1 0 0
0 1 0 0 1 0
E = 0 0 1 0 0 1
1 0 0 1 0 0
0 1 0 0 1 0
0 0 1 0 0 1

답변 (1개)

Yash
Yash 2024년 10월 30일 10:02
편집: Yash 2024년 10월 30일 10:14
This seems to be an assignment question. Therefore, I won't be providing the exact solution, I will provide you a few resources which will help you in solving it.
The "eye" command is used to get an identity matrix in MATLAB. To see its details, please refer to the following documentation: https://www.mathworks.com/help/matlab/ref/eye.html.
For example, the following command can generate an 5*5 identity matrix:
E = eye(5)
E = 5×5
1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Now you can use colon for indexing/slicing the matrix and assigning a value to it.
For example, the follwing code assigns four 2's in the array E:
E(2:3,1:2) = [2 2;2 2]
E = 5×5
1 0 0 0 0 2 2 0 0 0 2 2 1 0 0 0 0 0 1 0 0 0 0 0 1
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
You can refer to the following documentation for more details on indexing: https://www.mathworks.com/help/matlab/learn_matlab/array-indexing.html.
Please try to use the eye function and the colon operator to get the desired results.
Hope this helps!

This question is locked.

카테고리

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