Question: Questions must be answered using MATLAB. Restrictions: The function may not use loops. The function should use the function erase and strtrim. Thank you! Find
Questions must be answered using MATLAB. Restrictions: The function may not use loops. The function should use the function erase and strtrim. Thank you!


Find US state names that start with the letter N Write a function RemoveNStates that will remove all the states that start with the letter N in a given a sentence containing US states. The function should remove remove all consecutive white space charaters from the start and the end of the output character array. The states that start with the letter N present in the sentence should be simply erased (i.e. leave additional spaces between the remaining words in output sentence, if needed they can be removed later). The input and output sentence will be a character array. You can assume the names of the states are spelled exactly as given in US states. Restrictions: The function may not use loops. The function should use the function erase and strtrim. For example, >> s1 = 'Alabama Montana Nebraska Vermont Nevada'; reducedList-RemoveNStates(s1) reducedist = ALabama Montana Vermont' Your Function Save C Reset MATLAB Documentation 1 function s2RemoveNStates (s1) % Your solution goes here % 4 5 end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
