Extract numbers from cell array

1 次查看(过去 30 天)
Hi,
I have a cell array with both numbers and 'NA' strings for missing values.
Now I want to convert the cell array to a pure number array to use it for calculations, keeping all numbers and setting the 'NA' to NaN.
What would be the easiest way to achieve that?
Best regards,
Chris

采纳的回答

Walter Roberson
Walter Roberson 2012-4-16
A(cellfun(@ischar,A)) = {NaN};
Amat = cell2mat(A);

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by