Question: Please complete this using MATLAB. Thank you. Matlab. Problem 2. Create a function called String_Analyzer that takes a single string input (call it Input String).
Problem 2. Create a function called "String_Analyzer" that takes a single string input (call it Input String). The user will input a phrase that consists of letters, blank spaces, or periods/ellipsis, such as "It is spring time" or below. The function should return the following six outputs: First output (call it Num_Letters) should return the total number of letters in the string. Second output (call it Index_Letters) should return an array with indices of all the letters. Third output (call it Num_Blanks) should return the total number of blanks in the string Fourth output (call it Index Blanks) should return an array with indices of all the blanks. Fifth output (call it Num_Dots) should return the total number of periods in the string. Sixth output (call it Index_Dots) should return an array with indices of all the periods. n." To begin, convert the input string into a character array in order to carry out the tasks Test your function with the input examples above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
