Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How can I convert the following to a vector

1 回表示 (過去 30 日間)
Yaser Khojah
Yaser Khojah 2018 年 7 月 20 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
How can I convert the following
G = [20] [15] [4.5000]
to a vector as G = [20 15 4.5]

回答 (1 件)

OCDER
OCDER 2018 年 7 月 20 日
G = {20 15 4.5};
G = [G{:}];

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by