
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
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 )](https://content.bartleby.com/qna-images/question/8de9ecd0-3cc9-475b-b184-ad0ee68f5a8e/e0cb8e2f-00c4-4416-968d-feaddee95b8a/m96t3o_thumbnail.png)
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

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 2 images

Knowledge Booster
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
- What are the different symbols that are used in truth tables? What do they represent?arrow_forwardUsing 10’s Compliment , Subtract 73252-3520 Subtract 3520-73252arrow_forwardCryptography: Boolean function table. Find a formula for the function: x1x2x3 h(x1x2x3) 000 1 001 0 010 0 011 1 100 1 101 0 110 0 111 1arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

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)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education