Question: Remove the vowels (strings) Write a function RemoveVowels to remove all the vowels in the given phrase. The input phrase will be a character array.
Remove the vowels (strings) Write a function RemoveVowels to remove all the vowels in the given phrase. The input phrase will be a character array. Hint: The function should work with both upper and lower case. Retain the upper and lower case of the remaining characters. Restriction: You may not use loops. The input string could be any length. You should use the function ismember. For example: >> s1= 'Jack and Jill went up the hill'; >> answer=RemoveVowels(s1) answer = 'Jck nd Jll wnt p th hll'
LAB ACTIVITY 23.39.1: Remove the vowels (Strings This tool is provided by a third party. Your activity is always recorded but you may need to refresh the page to fill in the banner 0/5 Remove the vowels (strings) Write a function RemoveVowels to remove all the vowels in the given phrase. The input phrase will be a character array. Hint: The function should work with both upper and lower case. Retain the upper and lower case of the remaining characters. Restriction: You may not use loops. The input string could be any length. You should use the function ismember. For example >S1-Jack and Jill went up the hill'; >> answer-RemoveVowels (s1) answer Jck nd ll wnt p th hll Your Function Save C Reset ' MATLAB Documentation 1 function s2 RemoveVowels(51) % You solution goes here % 4 5 end Code to call your function C Reset 1 S1Jack and Jill went up the hill'; 2 answer-RemoveVowels (s1) Run Function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
