Conversion of cell containing numbers into a numerical double?

2 次查看(过去 30 天)
How am I to convert a 101x1 cell (containing numbers) into a 101x1 double?
Thank you! Andie

回答(1 个)

Brendan Hamm
Brendan Hamm 2016-1-15
A = {3;4;5}; % Cell array
B = cell2mat(A) % convert to a double.
B =
3
4
5

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by