Question: Write a matlab function Write a function, shortest_word, which takes in an array of Words, A, and returns the shortest word in A. If there
Write a matlab function
Write a function, shortest_word, which takes in an array of Words, A, and returns the shortest word in A. If there is more than one shortest word, the function should return the first one. The format of the output is specified in the following examples: >> fruits = char('apple', 'banana', 'orange', 'pear', 'quince'); >> shortest_word(fruits) 'pear' >> shapes = char('square', 'triangle', 'circle', 'line'); >> shortest_word(shapes) 'line
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
