using matlab The test suite workspace has two variables A and B described as fol
ID: 3810774 • Letter: U
Question
using matlab
Explanation / Answer
Here is the code for you:
% The variable A is a 6-element row vector of random integers between
% 0 and 20.
A = randi(21, 1, 6) - 1
% The variable B is a 10-element column vector of random integers between
% 0 and 50.
B = randi(51, 10, 1) - 1
% Generate a vector named ABrow that is a 16-element row vector
% consisting of the elements of A followed by the elements of B.
ABrow = [A transpose(B)]
% Generate a second vector named BAcol that is a 16-element column vector
% consisting of the elements of ABrow in reverse order.
BAcol = fliplr(ABrow)
% Generate a third vector named FirstHalfA_LastHalfB that is an 8-element
% row vector consisting of first 3 elements of A followed by the last 5
% elements of B.
X = transpose(B);
firstHalfA_LastHalfB = [A(1 : 3) X(6 : 10)]
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.