Community Profile

photo

Lavitania Searjaya


Last seen: mehr als 3 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistiken

Feeds

Anzeigen nach

Frage


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...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


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...

mehr als 3 Jahre vor | 1 Antwort | 0

1

Antwort