Question: Please use Matlab to write the code. An anagram is a word or phrase formed by rearranging the letters of another word or phrase. Examples
Please use Matlab to write the code.

An anagram is a word or phrase formed by rearranging the letters of another word or phrase. Examples include: listen-silent cinema - ice man a telescope - to see place Spaces obviously don't count when determining if two sets of words are anagrams. Case doesn't matter. Write a function called anagram, m that compares two strings and returns 1 (logical true) if they are anagrams, and 0 (logical false) if they are not. You can use any built-in functions you like (and no, there isn't a built-in anagram function.) Examples: >> r = anagram('dormitory', 'dirty room') r= 1 >> r = anagram('yes', 'no') r = anagram ('dog', ' cat') r = anagram('conversation', 'conservation') r
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
