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 )

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education