Community Profile

photo

Lavitania Searjaya


Last seen: mer än 3 år ago Active since 2020

Statistics

Content Feed

View by

Question


If for example, I have the letter 'a' in table punnettSquare(2,1) and I want to add a letter 'b' to that same cell so that the element of the cell would be 'ab'. What function should I use?
punnettSquare = 5×5 cell array {0×0 double} {0×0 double} {0×0 double} {0×0 double} {0×0 double} {'a...

mer än 3 år ago | 1 answer | 0

1

answer

Question


Hello! I am trying to append an element into a 5x5 empty cell called 'punnettSquare'. How can I append the first element of a1 and the first element b1 into row 2 column 1 of punnettSquare? Thank you!
% For error checking valid_inputA = {'AA';'Aa';'aa'}; valid_inputB = {'BB';'Bb';'bb'}; % Asking the user for input parent...

mer än 3 år ago | 1 answer | 0

1

answer

Question


Hi, I am asking the user for input and the input should be either "AA" "Aa" or "aa". How can I validate the input using a while loop? I don't think my code works.Thanks!
parentOneA = input("Enter Parent 1's A Trait: ") % Error checking input while parentOneA ~= "AA" || parentOneA ~= "Aa" || pare...

mer än 3 år ago | 1 answer | 0

1

answer