Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Use Matlab For this question Clean-up Your job is to write a function CleanUp to tidy up a sentence. The words are separated by one
Use Matlab For this question
Clean-up Your job is to write a function CleanUp to tidy up a sentence. The words are separated by one or more spaces. Spaces should not appear at the beginning or end of your output sentence. The sentence could be either a string or a character array. The output sentence should be the same datatype as the input. For example: > string-" ours is not to reason why " stringout-CleanUp(string) stringOut "ours is not to reason why" >> charArs' ours is not to reason why . ; charArOut-CleanUp(charAr) charArOut = ours is not to reason why Your Function Save Reset MATLAB Documentation 1 function outputsentence = CleanUp(sentence) % Your code goes here % 4. 5 end Code to call your function C Reset stringout-CleanUp(" ours is not to reason whyStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started