Question: 6. Write a Matlab program using FOR loop that prints a given row or column vector in reverse. Load Array1.m .mat and use Array2 as
6. Write a Matlab program using FOR loop that prints a given row or column vector in reverse. Load Array1.m .mat and use Array2 as a sample for testing row vector and use Array3 as a sample to test the functionality of reversing a column vector. Use the length command to know the elements in the array. Display matrix using following command disp and mat2str.
x = [8 4 6 2]; disp(['The original array was: ' mat2str(x)]);
Array1 =
71 3 28 5 10 82 69 32 95 3 44 38 77 80 19
Array2 =
7 5 10 3 11 4 1 12 15 2
Array3 =
7 5 10 3 11 4 1 12 15 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
