Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How can I convert the following to a vector

1 vue (au cours des 30 derniers jours)
Yaser Khojah
Yaser Khojah le 20 Juil 2018
Clôturé : MATLAB Answer Bot le 20 Août 2021
How can I convert the following
G = [20] [15] [4.5000]
to a vector as G = [20 15 4.5]

Réponses (1)

OCDER
OCDER le 20 Juil 2018
G = {20 15 4.5};
G = [G{:}];

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by