Expected one output from a curly brace or dot indexing expression, but there were 4 results.

2 views (last 30 days)
Im not sure what im doing wrong. I wanted to assign those arrays to the first row and first column of the 5x5 cell array but i keep getting error

Answers (1)

Bhaskar R
Bhaskar R on 21 Feb 2020
Could you specify, what are you trying to do?
The error because of punneeSquare of size 5x5 and you are trying to assign one value to four locations at a time that too in coma seperated outputs. If you are intended to apply
punneeSquare{1, 2:5} = paren1Genes % first row 2, 3, 4, 5 columns total four locations but you are trying to assigning one value to 4 locations
  5 Comments
Diego Argueta
Diego Argueta on 21 Feb 2020
Thank you. What i am looking to create is a cell array of 5x5. Then i want the 1x4 array from p1Genes to be assigned row 1 in locations 2,3,4,5. and the same for p2Genes but i want that one in column two. So i guess im trying to assign the arrays locations in the cell array
Bhaskar R
Bhaskar R on 21 Feb 2020
punnettSquare = cell(5);
"i want the 1x4 array from p1Genes to be assigned row 1 in locations 2,3,4,5" - it is okay
punnettSquare(1, 2:5) = p1Genes;
"same for p2Genes but i want that one in column two" - ??
punnettSquare(2:5, 2) = p2Genes

Sign in to comment.

Categories

Find more on Resizing and Reshaping Matrices 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!