Creating table with scalars in one column and vectors in another

3 次查看(过去 30 天)
Hi,
I'd like to create a table that contains scalars in the first column and vectors (arrays) in the second column. For example:
However, MATLAB will only let me add tables or cell arrays into an existing table.
I'd appreciate your help.
Thanks.

采纳的回答

Star Strider
Star Strider 2022-5-1
Try something like this —
theta = [30; -15];
Dm = [1 0 -1; 0 0 -1];
Data = table(theta, Dm)
Data = 2×2 table
theta Dm _____ _____________ 30 1 0 -1 -15 0 0 -1
.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by