Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Create a 3x3 matrix A in which all the elements are 1, and create a 3x2 matrix B in which all the elements are 5.
Create a 3x3 matrix A in which all the elements are 1, and create a 3x2 matrix B in which all the elements are 5. Then, add elements to the matrix A by appending the matrix B such that A will become: A= [ 1,1,1,0,0 ; 1,1,1,0,0 ; 1,1,1,0,0 ; 0,0,0,5,5 ; 0,0,0,5,5 ; 0,0,0,5,5 ]
Hint: (1) Use ones function. (2) matlab automatically fills the non-referenced elements with zeros, so when adding elements the array becomes rectangular. Non rectangular arrays are not allowed.
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