How do I convert a cell array with string, double, and NaN values to a double array
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Akul Satish
el 5 de Sept. de 2018
I have a cell with these values = {1, 2, 'None', 1, 2, 3, 5, NaN, 'None'}
I want to convert this into a double with these values = {1, 2, NaN, 1, 2, 3, 5, NaN, NaN}
Is this possible?
0 comentarios
Respuesta aceptada
jonas
el 5 de Sept. de 2018
Editada: jonas
el 5 de Sept. de 2018
My original solution was obviously flawed, so credits to Guillaume for cleaning up redundant functions
A(strcmp(A, 'None')) = {NaN};
cell2mat(A)
A(~cellfun(@isnumeric,A)) = {NaN}
3 comentarios
jonas
el 5 de Sept. de 2018
Thanks guys! I put your solutions in the answer box for future reference, as the answer had already been accepted.
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!