Info

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

How can I convert the following to a vector

1 visualización (últimos 30 días)
Yaser Khojah
Yaser Khojah el 20 de Jul. de 2018
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
How can I convert the following
G = [20] [15] [4.5000]
to a vector as G = [20 15 4.5]

Respuestas (1)

OCDER
OCDER el 20 de Jul. de 2018
G = {20 15 4.5};
G = [G{:}];

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