Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How can I convert a matrix to all numeric values which contains numeric and characters both?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I have matrix containing both numerics and characters(actually NaNs) values both. How to convert this matrix so that it contains all the numeric values?Because I want to write this matrix to an excel sheet.
Respuestas (1)
Rik
el 9 de Ag. de 2018
If you want to replace the NaNs by 0, you can simply use this:
data(isnan(data))=0;
4 comentarios
Rik
el 12 de Ag. de 2018
If your variable data is a matrix that is not a logical, this code will not return a logical. What exact code are you using? Try to reduce it to a small piece of code I can run to replicate your issue.
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!