Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

How can I convert the following to a vector

1 visualizzazione (ultimi 30 giorni)
Yaser Khojah
Yaser Khojah il 20 Lug 2018
Chiuso: MATLAB Answer Bot il 20 Ago 2021
How can I convert the following
G = [20] [15] [4.5000]
to a vector as G = [20 15 4.5]

Risposte (1)

OCDER
OCDER il 20 Lug 2018
G = {20 15 4.5};
G = [G{:}];

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by