cell to a matrix

3 次查看(过去 30 天)
jenifer Ask
jenifer Ask 2019-12-30
回答: Bhaskar R 2019-12-30
I want to convert the cell to a matrix . But it gives error. Why?
A=cell2mat(FV1);

采纳的回答

Bhaskar R
Bhaskar R 2019-12-30
Your FV1 matrix has empty cells this leads to dimension concatenate consistent error so you need to replace those empty cells with nan/0/mean(your requirement) then you can convert to matrix
FV1(cellfun(@isempty, FV1)) = {nan}; % i took nan for empty cell
A=cell2mat(FV1); % this works now

更多回答(0 个)

类别

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