Dizzy Shift Write a function called Shifter that takes a 2D array inArray and i) creates an array circLeft that contains the circular left shift by one position of all the columns of inArray in a 2D array, ii) creates an array called circUp that contains the circular up shift by one position of all the rows of inArray, and iii) creates an array called circ2x that first circularly shifts the columns of inArray by one position, and with the resulting array, shifts all the rows up by one position. The function must operate on a 2D array of any size. Hint: Array indexing, single colon and end should be used. Restrictions: For loops, while loops, circshift, and any other internal functions should not be used. Ex: inArray = [6,7,4; 10,1,5; 2,9,5]; [ circleft, circUp, circ2x ] = Shifter( inArray ) produces circleft = 7 4 6 1 5 10 circup = 10 1 2 5 6 4 circ2x = 1 5 10 9 5 4 Function ® H Save C Reset I MATLAB Documentation function [ circLeft, circUp, circ2x ] = Shifter( inArray ) 1 2 3 % Your code goes here % 4 5 end 6 Code to call your function e C Reset 1 inArray = [6,7,4; 10,1,5; 2,9,5]; 2 [ circleft, circUp, circ2x ] = Shifter( inArray )

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.4: Arrays As Arguments
Problem 6E: (Electrical eng.) Write a program that declares three one-dimensional arrays named volts, current,...
icon
Related questions
Question

Please answer in matlab code.

Dizzy Shift
Write a function called Shifter that takes a 2D array inArray and i) creates an array circLeft that contains the circular left shift by one
position of all the columns of inArray in a 2D array, ii) creates an array called circUp that contains the circular up shift by one position of all
the rows of inArray, and iii) creates an array called circ2x that first circularly shifts the columns of inArray by one position, and with the
resulting array, shifts all the rows up by one position. The function must operate on a 2D array of any size.
Hint: Array indexing, single colon and end should be used.
Restrictions: For loops, while loops, circshift, and any other internal functions should not be used.
Ex:
inArray
[6,7,4;
10,1,5;
2,9,5];
[ circleft, circUp, circ2x ] = Shifter( inArray )
produces
circLeft =
7
4
1
10
5
circup =
10
1
2
9
5
7
4
circ2x =
1
5
10
9.
5
7
4
6
Function
A Save
C Reset
I MATLAB Documentation
1 function [ circLeft, circUp, circ2x]
Shifter( inArray )
3
% Your code goes here %
4
5 end
Code to call your function e
C Reset
1 inArray
[6,7,4; 10,1,5; 2,9,5];
2 [ circleft, circUp, circ2x ] = Shifter( inArray )
Transcribed Image Text:Dizzy Shift Write a function called Shifter that takes a 2D array inArray and i) creates an array circLeft that contains the circular left shift by one position of all the columns of inArray in a 2D array, ii) creates an array called circUp that contains the circular up shift by one position of all the rows of inArray, and iii) creates an array called circ2x that first circularly shifts the columns of inArray by one position, and with the resulting array, shifts all the rows up by one position. The function must operate on a 2D array of any size. Hint: Array indexing, single colon and end should be used. Restrictions: For loops, while loops, circshift, and any other internal functions should not be used. Ex: inArray [6,7,4; 10,1,5; 2,9,5]; [ circleft, circUp, circ2x ] = Shifter( inArray ) produces circLeft = 7 4 1 10 5 circup = 10 1 2 9 5 7 4 circ2x = 1 5 10 9. 5 7 4 6 Function A Save C Reset I MATLAB Documentation 1 function [ circLeft, circUp, circ2x] Shifter( inArray ) 3 % Your code goes here % 4 5 end Code to call your function e C Reset 1 inArray [6,7,4; 10,1,5; 2,9,5]; 2 [ circleft, circUp, circ2x ] = Shifter( inArray )
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning