Info

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

Help me to solve the question

조회 수: 1 (최근 30일)
N/A
N/A 2024년 10월 30일
Locked: John D'Errico 2024년 10월 30일
Create the following matrix B.
21 12 33 14 51 61
B = 17 18 19 10 11 12
19 14 11 13 15 20
Use the matrix B to:
(a) Create a 2 x 4 matrix C such that its first row includes the first two elements and the last two
elements of the first row of B and the second row of C includes the second through the fifth
elements of the third row of B.
(b) Create a 3 x 3 matrix D such that the first, second, and third rows are the first, fourth, and sixth
columns of matrix B

답변 (1개)

Shivam
Shivam 2024년 10월 30일
Hi Teresa,
Here is the solution of the 2 tasks you mentioned:
% Define the matrix B
B = [21 12 33 14 51 61;
17 18 19 10 11 12;
19 14 11 13 15 20];
% (a) Create matrix C
C = [B(1, [1, 2, 5, 6]);
B(3, 2:5)];
% (b) Create matrix D
D = B(:, [1, 4, 6]);
% Display the results
disp('Matrix C:');
Matrix C:
disp(C);
21 12 51 61 14 11 13 15
disp('Matrix D:');
Matrix D:
disp(D);
21 14 61 17 10 12 19 13 20
  댓글 수: 1
John D'Errico
John D'Errico 2024년 10월 30일
Please don't do student homeworks for them. When no effort has been made, then the student will learn nothing form your efforts, except that there is some sucker willing to do their homework.
You hurt the forum, since now @TERESA has seen that someone will step forwards wnd write their complete assignment for them. And that makes the student keep on doing the same.

This question is locked.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by