Function Name: deleteCol Inputs (2): 1. (cell) a cell array where the first row is headers in no particular order 2. (char) a string of a header name Outputs (1): 1. (cell) an updated cell array Function Description: Given a cell array where the first row contains headers, delete the entire column that has the header name specific by the 2nd input. It is not guaranteed that the header will exist, and in this case your function should not delete anything. Examples: ca = {'Name', 'Test1', 'Test2', 'Test3', 'Final'; 'A', 70, 80, 100, 99; 'B', 30 90, 95, 90; 'C', 100, 70, 85, 90} " newCal deleteCol(ca, 'Name') => {'Test1' 'Test2' 'Test3' 'Final'; 70 80 100 99; 30 90 95 90; 100 70 85 90} newCa2 deleteCol(ca, 'Final') => {'Name' 'Test1' 'Test2' 'Test3'; 'A' 70 80 100; 'B' 30 90 95; 'C' 100 70 85} newCa3 deleteCol(ca, 'Movie Title') {'Name' 'Test1' 'Test2' 'Test3' 'Final'; 'A' 70 80 100 99; 'B' 30 90 95 90; 'C' 100 70 85 90}

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 1TF: Mark the following statements as true or false. A double type is an example of a simple data type....
icon
Related questions
Question

ON MATLAB PLS

Function Name: deleteCol
Inputs (2):
1. (cell) a cell array where the first row is headers in no particular order
2. (char) a string of a header name
Outputs (1):
1. (cell) an updated cell array
Function Description:
Given a cell array where the first row contains headers, delete the entire column that has the header name specific by the 2nd input. It is not guaranteed that the header will
exist, and in this case your function should not delete anything.
Examples:
ca =
{ 'Name', 'Test1', 'Test2', 'Test3', 'Final';
'A', 70, 80, 100, 99;
'B', 30, 90, 95, 90;
'C', 100, 70, 85, 90}
newCal = deleteCol(ca, 'Name') =>
{'Test1' 'Test2' 'Test3' 'Final';
70 80 100 99;
30 90 95 90;
100 70 85 90}
newCa2 =
deleteCol(ca, 'Final') =>
{'Name' 'Test1' 'Test2' 'Test3';
'A' 70 80 100;
'B' 30 90 95;
'C' 100 70 85}
newCa3 deleteCol(ca, 'Movie Title')
{'Name' 'Test1' 'Test2' 'Test3' 'Final';
'A' 70 80 100 99;
'B' 30 90 95 90;
'C' 100 70
85 90}
Transcribed Image Text:Function Name: deleteCol Inputs (2): 1. (cell) a cell array where the first row is headers in no particular order 2. (char) a string of a header name Outputs (1): 1. (cell) an updated cell array Function Description: Given a cell array where the first row contains headers, delete the entire column that has the header name specific by the 2nd input. It is not guaranteed that the header will exist, and in this case your function should not delete anything. Examples: ca = { 'Name', 'Test1', 'Test2', 'Test3', 'Final'; 'A', 70, 80, 100, 99; 'B', 30, 90, 95, 90; 'C', 100, 70, 85, 90} newCal = deleteCol(ca, 'Name') => {'Test1' 'Test2' 'Test3' 'Final'; 70 80 100 99; 30 90 95 90; 100 70 85 90} newCa2 = deleteCol(ca, 'Final') => {'Name' 'Test1' 'Test2' 'Test3'; 'A' 70 80 100; 'B' 30 90 95; 'C' 100 70 85} newCa3 deleteCol(ca, 'Movie Title') {'Name' 'Test1' 'Test2' 'Test3' 'Final'; 'A' 70 80 100 99; 'B' 30 90 95 90; 'C' 100 70 85 90}
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

there isn't any code here

Solution
Bartleby Expert
SEE SOLUTION
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++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning