Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how to acquire a value from workspace

3 visualizaciones (últimos 30 días)
danny agus
danny agus el 8 de Jun. de 2011
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
i have a question about matrix value, if there is a point of an image and consist of x and y coordinates.
centroids = [x value, y value]
for example i got centroids = [300,400] %in workspace
nah, could i put the value into 2 different variables ? like x and y ? so x will contain 300 and y will contain 400 ?
i can do that manually,with click on the workspace and rename it, but could i do it with code ?

Respuestas (1)

David Young
David Young el 8 de Jun. de 2011
x = centroids(1);
y = centroids(2);

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by