Assigning values in an array (1 array with x coords, 1 array with Y coords.. how to create an array to contain both?)
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Misha Patel
el 3 de Jul. de 2017
Respondida: Guillaume
el 3 de Jul. de 2017
I have X=cell(3,1) and Y=cell(3,1) that contain various values. I have created coordinates=cell(3,2)... how do I assigne the X values into the first column and the Y values into the second column?
0 comentarios
Respuesta aceptada
Guillaume
el 3 de Jul. de 2017
coordinates = [X, Y];
No point in creating the coordinates cell array, the way you've done it as it'll be erased and replaced by the above.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Operators and Elementary Operations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!