Question
I have to create a code in matlab that does the following: Define more variables named a, b and c a. Variable a is a
I have to create a code in matlab that does the following:
Define more variables named a, b and c
a. Variable a is a submatrix of the matrix m which includes all the elements from second row and second column until the forth row and forth column.
b. Variable b contains only the element in the first row and second column in the matrix a.
c. Variable c contains the last two elements in the last column in the matrix a.
Thois is matrix m
1 2 3 4 5
2 3 4 5 1
3 4 5 1 2
4 5 1 2 3
5 1 2 3 4
Can you please give me the syntax with explanations on why they do what they do?
a is supposed to look like this:
3 4 5
4 5 1
5 1 2
b is supposed to show the value 4
c is supposed to show
1
2
Thank you
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started