How do I add words onto strings? (Original string is blank but words are added if certain numbers from 1-20 are divisible by 2, 3, 5, or neither. At the end, each number is supposed to have a name)

1 view (last 30 days)
Original string is blank but words are added if certain numbers from 1-20 are divisible by 2, 3, 5, or neither. At the end, each number is supposed to have a name)
Here is the original question:
Write a cell that displays the “name” of each number from 1 to 20 according to the rules below:
• If the number is divisible by 2, the syllable is “na”
• If the number is divisible by 3, the syllable is “ba”
• If the number is divisible by 5, the syllable is “mo”
• If the number is not divisible by 2, 3, or 5, the number is called “gano”.
These rules should be checked in order and numbers can have more than one syllable. You can use the command mod to check divisibility. If mod(x,y)is 0, then x is divisible by y. For our problem, as an example, the number 10 would be “namo”. The name must be on a single output line. Hint: You will need to use a for loop to iterate through the numbers 1 to 20. Then you will use if statements to test for each syllable.
I am also supposed to put && in between each condition but I do not know how to do this. Everything that I've read has not been overly helpful. Please help!
  4 Comments
Stephen23
Stephen23 on 8 Jan 2020
Edited: Stephen23 on 8 Jan 2020
"Hint: ...Then you will use if statements to test for each syllable."
Huh. Or you can use MATLAB arrays and anonymous functions:
>> C = {'na','ba','mo','gano'};
>> G = @(x)[x,~any(x)];
>> F = @(n)[C{G(mod(n,[2,3,5])==0)}];
>> F(10)
ans =
namo

Sign in to comment.

Answers (1)

David Hill
David Hill on 8 Jan 2020
name=cell(1,20);
for x=1:20
if mod(x,2)==0
name{x}='na';
end
if mod(x,3)==0
name{x}=[name{x},'ba'];
end
if mod(x,5)==0
name{x}=[name{x},'mo'];
end
if mod(x,2)~=0&&mod(x,3)~=0&&mod(x,5)~=0
name{x}='gamo';
end
end
display(name);
  5 Comments
Kyle Donk
Kyle Donk on 8 Jan 2020
My bad, I mispoke. I ran the code with curly braces and Matlab said that curly braces were not supported in this type of problem. I also ran the code with parentheses and it said that "gamo" was not defined.
Stephen23
Stephen23 on 8 Jan 2020
Edited: Stephen23 on 8 Jan 2020
"I also ran the code with parentheses and it said that "gamo" was not defined. "
Apparently you also removed the leading single quote.
I just tried David Hill's answer and it worked without error.

Sign in to comment.

Categories

Find more on Programmatic Model Editing in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!