Borrar filtros
Borrar filtros

how to separate points into two vectors from structure

1 visualización (últimos 30 días)
Target Position Index
1x1 Line [76,76] 76
1x1 Line [71,71] 71
1x1 Line [67,67] 67
1x1 Line [63,63] 63
1x1 Line [59,59] 59
1x1 Line [55,55] 55
1x1 Line [49,49] 49

Respuesta aceptada

Walter Roberson
Walter Roberson el 28 de Abr. de 2019
P1 = arrayfun(@(S) S.Position(1), YourStructure);
P2 = arrayfun(@(S) S.Position(2), YourStructure);
or
pos = vertcat(YourStructure.Position);
P1 = pos(:,1);
P2 = pos(:,2);

Más respuestas (0)

Categorías

Más información sobre Structures 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!

Translated by