Insert blank cells in a matrix
42 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Emilio Pulli
il 30 Nov 2021
Commentato: Walter Roberson
il 2 Dic 2021
How can I replace all the NaN values of a matrix with a blank space?
0 Commenti
Risposta accettata
Walter Roberson
il 30 Nov 2021
You cannot do that. Numeric matrices cannot have spaces in them.
You can convert the matrix into a cell array and put spaces into the cell array... but it is not clear why you would do that.
myCell = num2cell(MyMatrix);
myCell(isnan(MyMatrix)) = {' '}; %nan -> space
Now what?
12 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!