Remove all the vowels in MATLAB
How to remove vowels using matlab ?
Algorithm:
Step 1:
Take input from the user
Step 2:
Convert each characters to integers
Step 3:
Compare with ascii values corresponding to vowels
Step 4:
If not same , then store in one array
Step 5:
Convert the integer array again into character array
Code:
No comments